mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
ef9b9bb437
Co-authored-by: Rangi <remy.oukaour+rangi42@gmail.com>
14 lines
324 B
NASM
14 lines
324 B
NASM
; AI_SMART prefers these moves during harsh sunlight.
|
|
|
|
SunnyDayMoves:
|
|
; BUG: "Smart" AI does not encourage Solar Beam, Flame Wheel, or Moonlight during Sunny Day (see docs/bugs_and_glitches.md)
|
|
db FIRE_PUNCH
|
|
db EMBER
|
|
db FLAMETHROWER
|
|
db FIRE_SPIN
|
|
db FIRE_BLAST
|
|
db SACRED_FIRE
|
|
db MORNING_SUN
|
|
db SYNTHESIS
|
|
db -1 ; end
|