mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Unown Puzzles
This commit is contained in:
parent
f198dfd862
commit
15a03a2577
File diff suppressed because it is too large
Load Diff
@ -380,8 +380,8 @@ MapRadio: ; c355
|
||||
|
||||
Special_UnownPuzzle: ; c360
|
||||
call FadeToMenu
|
||||
callba Functione1190
|
||||
ld a, [wd0ec]
|
||||
callba UnownPuzzle
|
||||
ld a, [wSolvedUnownPuzzle]
|
||||
ld [ScriptVar], a
|
||||
call ExitAllMenus
|
||||
ret
|
||||
|
895
engine/unown_puzzle.asm
Executable file
895
engine/unown_puzzle.asm
Executable file
File diff suppressed because it is too large
Load Diff
1
main.asm
1
main.asm
@ -19902,6 +19902,7 @@ ret_e00ed: ; e00ed (38:40ed)
|
||||
; e00ee (38:40ee)
|
||||
|
||||
INCLUDE "engine/card_flip.asm"
|
||||
INCLUDE "engine/unown_puzzle.asm"
|
||||
INCLUDE "engine/dummy_game.asm"
|
||||
INCLUDE "engine/billspc.asm"
|
||||
|
||||
|
15
wram.asm
15
wram.asm
@ -809,12 +809,23 @@ wSlotsEnd::
|
||||
ds wSlots - @
|
||||
|
||||
; Card Flip
|
||||
; c6d0
|
||||
wCardFlip::
|
||||
wDeck:: ds 24
|
||||
wDeckEnd::
|
||||
; c6e8
|
||||
wCardFlipNumCardsPlayed:: ds 1
|
||||
wCardFlipEnd::
|
||||
ds wCardFlip - @
|
||||
|
||||
; Unown Puzzle
|
||||
wUnownPuzzle::
|
||||
wPuzzlePieces::
|
||||
ds 6 * 6
|
||||
wUnownPuzzleEnd::
|
||||
ds wUnownPuzzle - @
|
||||
|
||||
; Battle RAM
|
||||
wc6d0::
|
||||
PlayerSDefLevel:: ; c6d0
|
||||
ds 1
|
||||
@ -1423,13 +1434,16 @@ wcf63:: ds 1
|
||||
wNrOfBeatenBattleTowerTrainers::
|
||||
wMomBankDigitCursorPosition::
|
||||
wIntroSceneFrameCounter::
|
||||
wHoldingUnownPuzzlePiece::
|
||||
wcf64:: ds 1
|
||||
IF !DEF(CRYSTAL11)
|
||||
wPokedexStatus::
|
||||
ENDC
|
||||
wTitleScreenTimerLo::
|
||||
wUnownPuzzleCursorPosition::
|
||||
wcf65:: ds 1
|
||||
wTitleScreenTimerHi::
|
||||
wUnownPuzzleHeldPiece::
|
||||
wcf66:: ds 1
|
||||
|
||||
Requested2bpp:: ; cf67
|
||||
@ -1842,6 +1856,7 @@ wPlayerAction::
|
||||
; 0 - use move
|
||||
; 1 - use item
|
||||
; 2 - switch
|
||||
wSolvedUnownPuzzle::
|
||||
wd0ec:: ds 1
|
||||
|
||||
VramState:: ; d0ed
|
||||
|
Loading…
x
Reference in New Issue
Block a user