Frequently Asked Questions: Difference between revisions
m Link to skysongbuilder |
Add list of moves with hardcoded checks |
||
| Line 128: | Line 128: | ||
* 557: generic move sound effect | * 557: generic move sound effect | ||
* 558: generic move sound effect | * 558: generic move sound effect | ||
Of course, you could also replace existing moves. If you choose to do so, keep in mind that some moves have hardcoded checks that will cause problems if you replace them, so you should probably shouldn't touch those. Here's the list of moves with known hardcoded behavior: | |||
* 031: Weather Ball (has a special type check in <code>GetMoveTypeForMonster</code>) | |||
* 064: Thunder (has a special accuracy check in <code>MoveHitCheck</code>) | |||
* 229: Assist (has a special check to use another move after) | |||
* 270: Blizzard (has a special accuracy check in <code>MoveHitCheck</code>) | |||
* 324: Hidden Power (has a special check in <code>GetMoveTypeForMonster</code>) | |||
* 471: Natural Gift (has a special check in <code>GetMoveTypeForMonster</code>) | |||
* 465: Me First (has a special check to use another move after, has move effect #325 by default) | |||
=== How can I edit the way an item / move effect works? === | === How can I edit the way an item / move effect works? === | ||