mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-06 16:15:24 +13:00
The Road To Violet City!
This commit is contained in:
parent
b60dbd5afb
commit
e85c0ac4d6
127 changed files with 1034 additions and 127 deletions
|
|
@ -282,6 +282,7 @@ BattleAnimations::
|
|||
dw BattleAnim_RockHead
|
||||
dw BattleAnim_RockSlash
|
||||
dw BattleAnim_CrossCutter
|
||||
dw BattleAnim_Megaphone
|
||||
assert_table_length NUM_ATTACKS + 1
|
||||
dw BattleAnim_SweetScent2
|
||||
|
||||
|
|
@ -4634,6 +4635,28 @@ BattleAnim_CrossCutter: ;uses the Cross Chop animation
|
|||
anim_bgeffect ANIM_BG_FLASH_INVERTED, $0, $8, $10
|
||||
anim_wait 16
|
||||
anim_ret
|
||||
|
||||
BattleAnim_Megaphone: ;uses the Growl animation
|
||||
anim_1gfx ANIM_GFX_NOISE
|
||||
anim_battlergfx_2row
|
||||
anim_bgeffect ANIM_BG_CYCLE_OBPALS_GRAY_AND_YELLOW, $0, $2, $0
|
||||
anim_cry $0
|
||||
.loop
|
||||
anim_call BattleAnimSub_Sound
|
||||
anim_wait 16
|
||||
anim_loop 3, .loop
|
||||
anim_wait 9
|
||||
anim_bgeffect ANIM_BG_BATTLEROBJ_1ROW, $0, BG_EFFECT_USER, $0
|
||||
anim_wait 8
|
||||
anim_bgeffect ANIM_BG_FADE_MON_TO_BLACK_REPEATING, $0, BG_EFFECT_TARGET, $40
|
||||
anim_wait 64
|
||||
anim_incbgeffect ANIM_BG_FADE_MON_TO_BLACK_REPEATING
|
||||
anim_wait 1
|
||||
anim_bgeffect ANIM_BG_SHOW_MON, $0, BG_EFFECT_USER, $0
|
||||
anim_wait 5
|
||||
anim_incobj 10
|
||||
anim_wait 8
|
||||
anim_ret
|
||||
|
||||
BattleAnimSub_Drain:
|
||||
anim_obj ANIM_OBJ_DRAIN, 132, 44, $0
|
||||
|
|
|
|||
|
|
@ -259,6 +259,7 @@ MoveDescriptions1:
|
|||
dw RockHeadDescription
|
||||
dw RockSlashDescription
|
||||
dw CrossCutterDescription
|
||||
dw MegaphoneDescription
|
||||
.IndirectEnd::
|
||||
|
||||
InvalidMoveDescription:
|
||||
|
|
@ -1279,3 +1280,7 @@ RockSlashDescription:
|
|||
CrossCutterDescription:
|
||||
db "Has a high criti-"
|
||||
next "cal hit ratio.@"
|
||||
|
||||
MegaphoneDescription:
|
||||
db "Reduces the foe's"
|
||||
next "SPCL.ATK.@"
|
||||
|
|
|
|||
|
|
@ -272,4 +272,5 @@ Moves1:
|
|||
move EFFECT_FLINCH_HIT, 80, ROCK, 100, 15, 30 ;ROCK_HEAD
|
||||
move EFFECT_NORMAL_HIT, 140, ROCK, 70, 5, 0 ;ROCK_SLASH
|
||||
move EFFECT_NORMAL_HIT, 50, BUG, 100, 15, 0 ;CROSS_CUTTER
|
||||
move EFFECT_SP_ATK_DOWN, 0, NORMAL, 100, 40, 0 ;MEGAPHONE
|
||||
.IndirectEnd::
|
||||
|
|
|
|||
|
|
@ -254,4 +254,5 @@ MoveNames::
|
|||
li "ROCK HEAD"
|
||||
li "ROCK SLASH"
|
||||
li "CROSS CUTTER"
|
||||
li "MEGAPHONE"
|
||||
assert_list_length NUM_ATTACKS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue