diff options
| author | entrpntr <entrpntr@gmail.com> | 2020-04-19 15:25:51 -0400 |
|---|---|---|
| committer | entrpntr <entrpntr@gmail.com> | 2020-04-19 15:25:51 -0400 |
| commit | 7b63a9c032a130a08fc554b9b6790fe47d170530 (patch) | |
| tree | c5a5169c8c3946154cf846f0c61d87516bb0c87d /data/moves | |
| parent | e953302d3f81f080fd5d8423000496ce2fad36d3 (diff) | |
Finish disassembling effect commands.
Diffstat (limited to 'data/moves')
| -rw-r--r-- | data/moves/magnitude_power.asm | 9 | ||||
| -rw-r--r-- | data/moves/metronome_exception_moves.asm | 17 | ||||
| -rw-r--r-- | data/moves/present_power.asm | 6 |
3 files changed, 32 insertions, 0 deletions
diff --git a/data/moves/magnitude_power.asm b/data/moves/magnitude_power.asm new file mode 100644 index 00000000..7359bdb1 --- /dev/null +++ b/data/moves/magnitude_power.asm @@ -0,0 +1,9 @@ +MagnitudePower: + ; chance, power, magnitude # + db 13, 10, 4 + db 38, 30, 5 + db 89, 50, 6 + db 166, 70, 7 + db 217, 90, 8 + db 242, 110, 9 + db 255, 150, 10 diff --git a/data/moves/metronome_exception_moves.asm b/data/moves/metronome_exception_moves.asm new file mode 100644 index 00000000..a5aa4413 --- /dev/null +++ b/data/moves/metronome_exception_moves.asm @@ -0,0 +1,17 @@ +; Metronome cannot turn into these moves. + +MetronomeExcepts: + db NO_MOVE + db METRONOME + db STRUGGLE + db SKETCH + db MIMIC + db COUNTER + db MIRROR_COAT + db PROTECT + db DETECT + db ENDURE + db DESTINY_BOND + db SLEEP_TALK + db THIEF + db -1 diff --git a/data/moves/present_power.asm b/data/moves/present_power.asm new file mode 100644 index 00000000..885e9c69 --- /dev/null +++ b/data/moves/present_power.asm @@ -0,0 +1,6 @@ +PresentPower: + ; chance, power + db 40 percent, 40 ; 40% + db 70 percent + 1, 80 ; 30% + db 80 percent, 120 ; 10% + db -1 ; 20% chance to heal instead |
