More syncing with pokegold
This commit is contained in:
@@ -3652,17 +3652,17 @@ BattleCommand_SleepTarget:
|
||||
jr nz, .fail
|
||||
|
||||
call AnimateCurrentMove
|
||||
ld b, $7
|
||||
ld b, SLP
|
||||
ld a, [wInBattleTowerBattle]
|
||||
and a
|
||||
jr z, .random_loop
|
||||
ld b, $3
|
||||
ld b, %011
|
||||
|
||||
.random_loop
|
||||
call BattleRandom
|
||||
and b
|
||||
jr z, .random_loop
|
||||
cp 7
|
||||
cp SLP
|
||||
jr z, .random_loop
|
||||
inc a
|
||||
ld [de], a
|
||||
@@ -5714,7 +5714,8 @@ BattleCommand_Charge:
|
||||
text_far _BattleDugText
|
||||
text_end
|
||||
|
||||
BattleCommand_Unused3C: ; unreferenced
|
||||
BattleCommand_Unused3C:
|
||||
; effect0x3c
|
||||
ret
|
||||
|
||||
BattleCommand_TrapTarget:
|
||||
@@ -6488,7 +6489,8 @@ INCLUDE "engine/battle/move_effects/sandstorm.asm"
|
||||
|
||||
INCLUDE "engine/battle/move_effects/rollout.asm"
|
||||
|
||||
BattleCommand_Unused5D: ; unreferenced
|
||||
BattleCommand_Unused5D:
|
||||
; effect0x5d
|
||||
ret
|
||||
|
||||
INCLUDE "engine/battle/move_effects/fury_cutter.asm"
|
||||
|
@@ -17,7 +17,7 @@ BattleCommand_BellyDrum:
|
||||
pop bc
|
||||
callfar SubtractHPFromUser
|
||||
call UpdateUserInParty
|
||||
ld a, 5
|
||||
ld a, MAX_STAT_LEVEL - BASE_STAT_LEVEL - 1
|
||||
|
||||
.max_attack_loop
|
||||
push af
|
||||
|
@@ -1,5 +1,4 @@
|
||||
DisplayUsedMoveText:
|
||||
; battle command 03
|
||||
ld hl, UsedMoveText
|
||||
call BattleTextbox
|
||||
jp WaitBGMap
|
||||
|
@@ -15,7 +15,7 @@ GiveShuckle:
|
||||
jr nc, .NotGiven
|
||||
|
||||
; Caught data.
|
||||
ld b, 0
|
||||
ld b, CAUGHT_BY_UNKNOWN
|
||||
farcall SetGiftPartyMonCaughtData
|
||||
|
||||
; Holding a Berry.
|
||||
|
@@ -87,13 +87,12 @@ NameRival:
|
||||
ld b, NAME_RIVAL
|
||||
ld de, wRivalName
|
||||
farcall _NamingScreen
|
||||
; default to "SILVER"
|
||||
ld hl, wRivalName
|
||||
ld de, .default
|
||||
ld de, .DefaultName
|
||||
call InitName
|
||||
ret
|
||||
|
||||
.default
|
||||
.DefaultName:
|
||||
db "SILVER@"
|
||||
|
||||
NameRater:
|
||||
|
@@ -206,7 +206,7 @@ SlotsLoop:
|
||||
ld a, [wFirstTwoReelsMatchingSevens]
|
||||
and a
|
||||
jr nz, .matching_sevens
|
||||
ld a, %11100100 ; alternates two palettes
|
||||
ld a, %11100100
|
||||
call DmgToCgbBGPals
|
||||
ret
|
||||
|
||||
@@ -215,7 +215,7 @@ SlotsLoop:
|
||||
and $7
|
||||
ret nz
|
||||
ldh a, [rBGP]
|
||||
xor %00001100
|
||||
xor %00001100 ; alternates two palettes
|
||||
call DmgToCgbBGPals
|
||||
ret
|
||||
|
||||
|
@@ -113,7 +113,7 @@ LoadMartPointer:
|
||||
|
||||
GetMart:
|
||||
ld a, e
|
||||
cp (Marts.End - Marts) / 2
|
||||
cp NUM_MARTS
|
||||
jr c, .IsAMart
|
||||
ld b, BANK(DefaultMart)
|
||||
ld de, DefaultMart
|
||||
|
@@ -3,7 +3,7 @@ LevelUpHappinessMod:
|
||||
ld hl, wPartyMon1CaughtLocation
|
||||
call GetPartyLocation
|
||||
ld a, [hl]
|
||||
and $7f
|
||||
and CAUGHT_LOCATION_MASK
|
||||
ld d, a
|
||||
ld a, [wMapGroup]
|
||||
ld b, a
|
||||
|
Reference in New Issue
Block a user