summaryrefslogtreecommitdiff
path: root/scripts/celadonmansion3.asm
diff options
context:
space:
mode:
authorDaniel Harding <33dannye@gmail.com>2019-01-13 22:38:16 -0600
committerGitHub <noreply@github.com>2019-01-13 22:38:16 -0600
commit725b86ebbec23bd1f53fd60bf0201c904fee951d (patch)
treea37f4d33c5b77635c7ff72b91a73fcd90c4af915 /scripts/celadonmansion3.asm
parent108245cb21abb3abac051b7db84ed6c694192a61 (diff)
parentc7796024590fec48ac79756793c1a6e3b54daf8f (diff)
Merge pull request #196 from Rangi42/polishedmaps
Rename map files, labels, and constants to be consistent and work with Polished Map
Diffstat (limited to 'scripts/celadonmansion3.asm')
-rwxr-xr-xscripts/celadonmansion3.asm71
1 files changed, 0 insertions, 71 deletions
diff --git a/scripts/celadonmansion3.asm b/scripts/celadonmansion3.asm
deleted file mode 100755
index a1fe048b..00000000
--- a/scripts/celadonmansion3.asm
+++ /dev/null
@@ -1,71 +0,0 @@
-CeladonMansion3Script:
- jp EnableAutoTextBoxDrawing
-
-CeladonMansion3TextPointers:
- dw ProgrammerText
- dw GraphicArtistText
- dw WriterText
- dw DirectorText
- dw GameFreakPCText1
- dw GameFreakPCText2
- dw GameFreakPCText3
- dw GameFreakSignText
-
-ProgrammerText:
- TX_FAR _ProgrammerText
- db "@"
-
-GraphicArtistText:
- TX_FAR _GraphicArtistText
- db "@"
-
-WriterText:
- TX_FAR _WriterText
- db "@"
-
-DirectorText:
- TX_ASM
-
- ; check pokédex
- ld hl, wPokedexOwned
- ld b, wPokedexOwnedEnd - wPokedexOwned
- call CountSetBits
- ld a, [wNumSetBits]
- cp 150
- jr nc, .CompletedDex
- ld hl, .GameDesigner
- jr .done
-.CompletedDex
- ld hl, .CompletedDexText
-.done
- call PrintText
- jp TextScriptEnd
-
-.GameDesigner
- TX_FAR _GameDesignerText
- db "@"
-
-.CompletedDexText
- TX_FAR _CompletedDexText
- TX_BLINK
- TX_ASM
- callab DisplayDiploma
- ld a, $1
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- jp TextScriptEnd
-
-GameFreakPCText1:
- TX_FAR _CeladonMansion3Text5
- db "@"
-
-GameFreakPCText2:
- TX_FAR _CeladonMansion3Text6
- db "@"
-
-GameFreakPCText3:
- TX_FAR _CeladonMansion3Text7
- db "@"
-
-GameFreakSignText:
- TX_FAR _CeladonMansion3Text8
- db "@"