Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct some mis-use of positional arguments #62542

Merged
merged 1 commit into from
Dec 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/json/monster_special_attacks/monster_attacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@
"hit_dmg_npc": "%1$s kicks <npcname> and slams them to the ground!",
"no_dmg_msg_u": "%1$s tries to kick %2$s and knock you down, but your armor protects you!",
"no_dmg_msg_npc": "%1$s tries to kick and knock <npcname> down, but their armor protects them!",
"miss_msg_u": "%s tries to kick your %2$s but you dodge!",
"miss_msg_u": "%1$s tries to kick your %2$s but you dodge!",
"miss_msg_npc": "%s tries to kick and knock down <npcname>, but they dodge!",
"effects": [ { "id": "downed", "duration": 3 }, { "id": "stunned", "duration": 100 } ]
},
Expand Down
12 changes: 6 additions & 6 deletions data/mods/DinoMod/monster_attacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"blockable": false,
"dodgeable": true,
"self_effects_always": [ { "id": "grabbing", "duration": 30000 } ],
"hit_dmg_u": "%s catches your %2$s in its long sharp teeth!",
"hit_dmg_u": "%1$s catches your %2$s in its long sharp teeth!",
"hit_dmg_npc": "%s grabs <npcname> in a powerful bite!",
"miss_msg_u": "%s tries to catch your %2$s in its teeth, but you dodge!",
"miss_msg_u": "%1$s tries to catch your %2$s in its teeth, but you dodge!",
"miss_msg_npc": "%s tries to close its teeth around <npcname>, but they dodge!",
"no_dmg_msg_u": "%s grabs your %2$s in its long sharp teeth!",
"no_dmg_msg_u": "%1$s grabs your %2$s in its long sharp teeth!",
"no_dmg_msg_npc": "%s grabs <npcname> in its long sharp teeth!"
},
{
Expand Down Expand Up @@ -57,11 +57,11 @@
"blockable": false,
"dodgeable": true,
"self_effects_always": [ { "id": "grabbing", "duration": 30000 } ],
"hit_dmg_u": "%s punctures your %2$s with its long sharp teeth!",
"hit_dmg_u": "%1$s punctures your %2$s with its long sharp teeth!",
"hit_dmg_npc": "%s punctures <npcname> in a powerful bite!",
"miss_msg_u": "%s tries to catch your %2$s in its teeth, but you dodge!",
"miss_msg_u": "%1$s tries to catch your %2$s in its teeth, but you dodge!",
"miss_msg_npc": "%s tries to close its teeth around <npcname>, but they dodge!",
"no_dmg_msg_u": "%s grabs your %2$s in its long sharp teeth!",
"no_dmg_msg_u": "%1$s grabs your %2$s in its long sharp teeth!",
"no_dmg_msg_npc": "%s grabs <npcname> in its long sharp teeth!"
},
{
Expand Down