You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
SelfDestruct -> Selfdestruct
Just keeping things consistent. Nobody's going to write SELF_DESTRUCT. Kind of subjective, and we could do it the other way around, if anybody really cares.
This commit is contained in:
@@ -26,7 +26,7 @@ BattleCommandPointers: ; 3fd28
|
|||||||
dw BattleCommand_BurnTarget ; 3608c
|
dw BattleCommand_BurnTarget ; 3608c
|
||||||
dw BattleCommand_FreezeTarget ; 36102
|
dw BattleCommand_FreezeTarget ; 36102
|
||||||
dw BattleCommand_ParalyzeTarget ; 36165
|
dw BattleCommand_ParalyzeTarget ; 36165
|
||||||
dw BattleCommand_SelfDestruct ; 37380
|
dw BattleCommand_Selfdestruct ; 37380
|
||||||
dw BattleCommand_MirrorMove ; 373c9
|
dw BattleCommand_MirrorMove ; 373c9
|
||||||
dw BattleCommand_StatUp ; 361e4
|
dw BattleCommand_StatUp ; 361e4
|
||||||
dw BattleCommand_StatDown ; 362e3
|
dw BattleCommand_StatDown ; 362e3
|
||||||
|
@@ -8605,8 +8605,8 @@ CheckSubstituteOpp: ; 37378
|
|||||||
; 37380
|
; 37380
|
||||||
|
|
||||||
|
|
||||||
BattleCommand_SelfDestruct: ; 37380
|
BattleCommand_Selfdestruct: ; 37380
|
||||||
callba TrainerRankings_SelfDestruct
|
callba TrainerRankings_Selfdestruct
|
||||||
ld a, BATTLEANIM_PLAYER_DAMAGE
|
ld a, BATTLEANIM_PLAYER_DAMAGE
|
||||||
ld [wNumHits], a
|
ld [wNumHits], a
|
||||||
ld c, 3
|
ld c, 3
|
||||||
|
@@ -36,7 +36,7 @@ sTrainerRankingUnused3 EQU $a060
|
|||||||
sTrainerRankingColosseumWins EQU $a063
|
sTrainerRankingColosseumWins EQU $a063
|
||||||
sTrainerRankingColosseumLosses EQU $a066
|
sTrainerRankingColosseumLosses EQU $a066
|
||||||
sTrainerRankingColosseumDraws EQU $a069
|
sTrainerRankingColosseumDraws EQU $a069
|
||||||
sTrainerRankingSelfDestruct EQU $a06c
|
sTrainerRankingSelfdestruct EQU $a06c
|
||||||
sTrainerRankingCurrentSlotsStreak EQU $a06f
|
sTrainerRankingCurrentSlotsStreak EQU $a06f
|
||||||
sTrainerRankingLongestSlotsStreak EQU $a071
|
sTrainerRankingLongestSlotsStreak EQU $a071
|
||||||
sTrainerRankingTotalSlotsPayouts EQU $a073
|
sTrainerRankingTotalSlotsPayouts EQU $a073
|
||||||
|
@@ -381,13 +381,13 @@ TrainerRankings_ColosseumDraws: mobile ; draw
|
|||||||
jr TrainerRankings_Increment3Byte
|
jr TrainerRankings_Increment3Byte
|
||||||
; 10610d
|
; 10610d
|
||||||
|
|
||||||
; Counts uses of both SelfDestruct and Explosion.
|
; Counts uses of both Selfdestruct and Explosion.
|
||||||
TrainerRankings_SelfDestruct: mobile ; 10610d
|
TrainerRankings_Selfdestruct: mobile ; 10610d
|
||||||
; Only counts if it’s the player’s turn
|
; Only counts if it’s the player’s turn
|
||||||
ld a, [hBattleTurn]
|
ld a, [hBattleTurn]
|
||||||
and a
|
and a
|
||||||
ret nz
|
ret nz
|
||||||
ld hl, sTrainerRankingSelfDestruct
|
ld hl, sTrainerRankingSelfdestruct
|
||||||
jr TrainerRankings_Increment3Byte
|
jr TrainerRankings_Increment3Byte
|
||||||
; 106117
|
; 106117
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user