pokecrystal-board/engine/pokemon/tempmon.asm

128 lines
1.8 KiB
NASM
Raw Permalink Normal View History

2018-06-24 07:09:41 -07:00
CopyMonToTempMon:
; gets the BaseData of a mon
; and copies the party_struct to wTempMon
2018-01-23 14:39:09 -08:00
ld a, [wCurPartyMon]
ld e, a
call GetMonSpecies
2018-01-23 14:39:09 -08:00
ld a, [wCurPartySpecies]
ld [wCurSpecies], a
call GetBaseData
2018-01-23 14:39:09 -08:00
ld a, [wMonType]
ld hl, wPartyMon1Species
ld bc, PARTYMON_STRUCT_LENGTH
and a
jr z, .copywholestruct
2018-01-23 14:39:09 -08:00
ld hl, wOTPartyMon1Species
ld bc, PARTYMON_STRUCT_LENGTH
cp OTPARTYMON
jr z, .copywholestruct
ld bc, BOXMON_STRUCT_LENGTH
2017-12-24 09:47:30 -08:00
callfar CopyBoxmonToTempMon
jr .done
.copywholestruct
2018-01-23 14:39:09 -08:00
ld a, [wCurPartyMon]
call AddNTimes
2018-01-23 14:39:09 -08:00
ld de, wTempMon
ld bc, PARTYMON_STRUCT_LENGTH
call CopyBytes
.done
ret
2018-06-24 07:09:41 -07:00
CalcBufferMonStats:
ld bc, wBufferMon
jr _TempMonStatsCalculation
2018-06-24 07:09:41 -07:00
CalcTempmonStats:
2018-01-23 14:39:09 -08:00
ld bc, wTempMon
2018-06-24 07:09:41 -07:00
_TempMonStatsCalculation:
ld hl, MON_LEVEL
add hl, bc
ld a, [hl]
2018-01-23 14:39:09 -08:00
ld [wCurPartyLevel], a
ld hl, MON_MAXHP
add hl, bc
ld d, h
ld e, l
ld hl, MON_STAT_EXP - 1
add hl, bc
push bc
ld b, TRUE
predef CalcMonStats
pop bc
ld hl, MON_HP
add hl, bc
ld d, h
ld e, l
2018-01-23 14:39:09 -08:00
ld a, [wCurPartySpecies]
cp EGG
jr nz, .not_egg
xor a
ld [de], a
inc de
ld [de], a
jr .zero_status
.not_egg
push bc
ld hl, MON_MAXHP
add hl, bc
ld bc, 2
call CopyBytes
pop bc
.zero_status
ld hl, MON_STATUS
add hl, bc
xor a
ld [hli], a
ld [hl], a
ret
2018-06-24 07:09:41 -07:00
GetMonSpecies:
; [wMonType] has the type of the mon
; e = Nr. of mon (i.e. [wCurPartyMon])
2018-01-23 14:39:09 -08:00
ld a, [wMonType]
and a ; PARTYMON
jr z, .partymon
cp OTPARTYMON
jr z, .otpartymon
cp BOXMON
jr z, .boxmon
cp TEMPMON
jr z, .breedmon
; WILDMON
.partymon
2018-01-23 14:39:09 -08:00
ld hl, wPartySpecies
jr .done
.otpartymon
2018-01-23 14:39:09 -08:00
ld hl, wOTPartySpecies
jr .done
.boxmon
ld a, BANK(sBoxSpecies)
call OpenSRAM
ld hl, sBoxSpecies
call .done
call CloseSRAM
ret
.breedmon
ld a, [wBreedMon1Species]
jr .done2
.done
ld d, 0
add hl, de
ld a, [hl]
.done2
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
ret