Auto-label more map scripts

This commit is contained in:
Remy Oukaour
2017-12-17 19:48:04 -05:00
parent 25a3960646
commit 3ed016f9e0
139 changed files with 1176 additions and 1174 deletions

View File

@@ -25,7 +25,7 @@
- [Love Ball boosts catch rate for the wrong gender](#love-ball-boosts-catch-rate-for-the-wrong-gender) - [Love Ball boosts catch rate for the wrong gender](#love-ball-boosts-catch-rate-for-the-wrong-gender)
- [Fast Ball only boosts catch rate for three Pokémon](#fast-ball-only-boosts-catch-rate-for-three-pokémon) - [Fast Ball only boosts catch rate for three Pokémon](#fast-ball-only-boosts-catch-rate-for-three-pokémon)
- [Dragon Scale, not Dragon Fang, boosts Dragon-type moves](#dragon-scale-not-dragon-fang-boosts-dragon-type-moves) - [Dragon Scale, not Dragon Fang, boosts Dragon-type moves](#dragon-scale-not-dragon-fang-boosts-dragon-type-moves)
- [Daisy's massages don't always increase happiness](#daisys-massages-dont-always-increase-happiness) - [Daisy's grooming doesn't always increase happiness](#daisys-grooming-doesnt-always-increase-happiness)
- [Magikarp in Lake of Rage are shorter, not longer](#magikarp-in-lake-of-rage-are-shorter-not-longer) - [Magikarp in Lake of Rage are shorter, not longer](#magikarp-in-lake-of-rage-are-shorter-not-longer)
- [Magikarp lengths can be miscalculated](#magikarp-lengths-can-be-miscalculated) - [Magikarp lengths can be miscalculated](#magikarp-lengths-can-be-miscalculated)
- [Battle transitions fail to account for the enemy's level](#battle-transitions-fail-to-account-for-the-enemys-level) - [Battle transitions fail to account for the enemy's level](#battle-transitions-fail-to-account-for-the-enemys-level)
@@ -662,7 +662,7 @@ This is a bug with `ItemAttributes` in [items/item_attributes.asm](/items/item_a
**Fix:** Move `HELD_DRAGON_BOOST` to the `DRAGON FANG` attributes and `0` to `DRAGON SCALE`. **Fix:** Move `HELD_DRAGON_BOOST` to the `DRAGON FANG` attributes and `0` to `DRAGON SCALE`.
## Daisy's massages don't always increase happiness ## Daisy's grooming doesn't always increase happiness
This is a bug with `MassageOrHaircut` in [event/special.asm](/event/special.asm): This is a bug with `MassageOrHaircut` in [event/special.asm](/event/special.asm):

View File

@@ -9,24 +9,26 @@ BlackthornDragonSpeechHouse_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
GrannyScript_0x195949: BlackthornDragonSpeechHouseGrannyScript:
jumptextfaceplayer UnknownText_0x19595c jumptextfaceplayer BlackthornDragonSpeechHouseGrannyText
Dratini: BlackthornDragonSpeechHouseDratiniScript:
opentext opentext
writetext DratiniText writetext BlackthornDragonSpeechHouseDratiniText
cry DRATINI cry DRATINI
waitbutton waitbutton
closetext closetext
end end
; unused ; unused
BlackthornDragonSpeechHousePictureBookshelf:
jumpstd picturebookshelf jumpstd picturebookshelf
; unused ; unused
BlackthornDragonSpeechHouseMagazineBookshelf:
jumpstd magazinebookshelf jumpstd magazinebookshelf
UnknownText_0x19595c: BlackthornDragonSpeechHouseGrannyText:
text "A clan of trainers" text "A clan of trainers"
line "who can freely" line "who can freely"
@@ -41,7 +43,7 @@ UnknownText_0x19595c:
line "this town." line "this town."
done done
DratiniText: BlackthornDragonSpeechHouseDratiniText:
text "DRATINI: Draa!" text "DRATINI: Draa!"
done done
@@ -62,5 +64,5 @@ BlackthornDragonSpeechHouse_MapEventHeader:
.PersonEvents: .PersonEvents:
db 2 db 2
person_event SPRITE_GRANNY, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GrannyScript_0x195949, -1 person_event SPRITE_GRANNY, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornDragonSpeechHouseGrannyScript, -1
person_event SPRITE_EKANS, 5, 5, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, Dratini, -1 person_event SPRITE_EKANS, 5, 5, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, BlackthornDragonSpeechHouseDratiniScript, -1

View File

@@ -10,19 +10,19 @@ BlackthornMart_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
ClerkScript_0x195a5d: BlackthornMartClerkScript:
opentext opentext
pokemart MARTTYPE_STANDARD, MART_BLACKTHORN pokemart MARTTYPE_STANDARD, MART_BLACKTHORN
closetext closetext
end end
CooltrainerMScript_0x195a64: BlackthornMartCooltrainerMScript:
jumptextfaceplayer UnknownText_0x195a6a jumptextfaceplayer BlackthornMartCooltrainerMText
BlackBeltScript_0x195a67: BlackthornMartBlackBeltScript:
jumptextfaceplayer UnknownText_0x195ae9 jumptextfaceplayer BlackthornMartBlackBeltText
UnknownText_0x195a6a: BlackthornMartCooltrainerMText:
text "You can't buy MAX" text "You can't buy MAX"
line "REVIVE, but it" line "REVIVE, but it"
@@ -36,7 +36,7 @@ UnknownText_0x195a6a:
line "needed for moves." line "needed for moves."
done done
UnknownText_0x195ae9: BlackthornMartBlackBeltText:
text "MAX REPEL keeps" text "MAX REPEL keeps"
line "weak #MON away" line "weak #MON away"
cont "from you." cont "from you."
@@ -63,6 +63,6 @@ BlackthornMart_MapEventHeader:
.PersonEvents: .PersonEvents:
db 3 db 3
person_event SPRITE_CLERK, 3, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, ClerkScript_0x195a5d, -1 person_event SPRITE_CLERK, 3, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornMartClerkScript, -1
person_event SPRITE_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x195a64, -1 person_event SPRITE_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornMartCooltrainerMScript, -1
person_event SPRITE_BLACK_BELT, 2, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, BlackBeltScript_0x195a67, -1 person_event SPRITE_BLACK_BELT, 2, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, BlackthornMartBlackBeltScript, -1

View File

@@ -11,19 +11,19 @@ BlackthornPokecenter1F_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
NurseScript_0x195b79: BlackthornPokecenter1FNurseScript:
jumpstd pokecenternurse jumpstd pokecenternurse
GentlemanScript_0x195b7c: BlackthornPokecenter1FGentlemanScript:
jumptextfaceplayer UnknownText_0x195b85 jumptextfaceplayer BlackthornPokecenter1FGentlemanText
TwinScript_0x195b7f: BlackthornPokecenter1FTwinScript:
jumptextfaceplayer UnknownText_0x195bfd jumptextfaceplayer BlackthornPokecenter1FTwinText
CooltrainerMScript_0x195b82: BlackthornPokecenter1FCooltrainerMScript:
jumpstd happinesschecknpc jumpstd happinesschecknpc
UnknownText_0x195b85: BlackthornPokecenter1FGentlemanText:
text "Deep inside far-" text "Deep inside far-"
line "off INDIGO PLATEAU" line "off INDIGO PLATEAU"
@@ -37,7 +37,7 @@ UnknownText_0x195b85:
line "the country." line "the country."
done done
UnknownText_0x195bfd: BlackthornPokecenter1FTwinText:
text "There was this" text "There was this"
line "move I just had" line "move I just had"
@@ -67,7 +67,7 @@ BlackthornPokecenter1F_MapEventHeader:
.PersonEvents: .PersonEvents:
db 4 db 4
person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x195b79, -1 person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FNurseScript, -1
person_event SPRITE_GENTLEMAN, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x195b7c, -1 person_event SPRITE_GENTLEMAN, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FGentlemanScript, -1
person_event SPRITE_TWIN, 4, 1, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, TwinScript_0x195b7f, -1 person_event SPRITE_TWIN, 4, 1, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FTwinScript, -1
person_event SPRITE_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x195b82, -1 person_event SPRITE_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, BlackthornPokecenter1FCooltrainerMScript, -1

View File

@@ -8,29 +8,29 @@ BluesHouse_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
DaisyScript_0x19b0d0: DaisyScript:
faceplayer faceplayer
opentext opentext
checkcode VAR_HOUR checkcode VAR_HOUR
if_equal $f, UnknownScript_0x19b0de if_equal 15, .ThreePM
writetext UnknownText_0x19b130 writetext DaisyHelloText
waitbutton waitbutton
closetext closetext
end end
UnknownScript_0x19b0de: .ThreePM:
checkflag ENGINE_TEA_IN_BLUES_HOUSE checkflag ENGINE_TEA_IN_BLUES_HOUSE
iftrue UnknownScript_0x19b11e iftrue .AlreadyGroomedMon
writetext UnknownText_0x19b1b6 writetext DaisyOfferGroomingText
yesorno yesorno
iffalse UnknownScript_0x19b124 iffalse .Refused
writetext UnknownText_0x19b244 writetext DaisyWhichMonText
waitbutton waitbutton
special Special_DaisyMassage special Special_DaisyMassage
if_equal 0, UnknownScript_0x19b124 if_equal 0, .Refused
if_equal 1, UnknownScript_0x19b12a if_equal 1, .CantGroomEgg
setflag ENGINE_TEA_IN_BLUES_HOUSE setflag ENGINE_TEA_IN_BLUES_HOUSE
writetext UnknownText_0x19b266 writetext DaisyAlrightText
waitbutton waitbutton
closetext closetext
special FadeOutPalettes special FadeOutPalettes
@@ -39,33 +39,33 @@ UnknownScript_0x19b0de:
special FadeInPalettes special FadeInPalettes
special RestartMapMusic special RestartMapMusic
opentext opentext
writetext UnknownText_0x19b296 writetext GroomedMonLooksContentText
special PlayCurMonCry special PlayCurMonCry
buttonsound buttonsound
writetext UnknownText_0x19b2aa writetext DaisyAllDoneText
waitbutton waitbutton
closetext closetext
end end
UnknownScript_0x19b11e: .AlreadyGroomedMon:
writetext UnknownText_0x19b2fa writetext DaisyAlreadyGroomedText
waitbutton waitbutton
closetext closetext
end end
UnknownScript_0x19b124: .Refused:
writetext UnknownText_0x19b334 writetext DaisyRefusedText
waitbutton waitbutton
closetext closetext
end end
UnknownScript_0x19b12a: .CantGroomEgg:
writetext UnknownText_0x19b377 writetext DaisyCantGroomEggText
waitbutton waitbutton
closetext closetext
end end
UnknownText_0x19b130: DaisyHelloText:
text "DAISY: Hi! My kid" text "DAISY: Hi! My kid"
line "brother is the GYM" line "brother is the GYM"
@@ -79,7 +79,7 @@ UnknownText_0x19b130:
line "for the trainers." line "for the trainers."
done done
UnknownText_0x19b1b6: DaisyOfferGroomingText:
text "DAISY: Hi! Good" text "DAISY: Hi! Good"
line "timing. I'm about" line "timing. I'm about"
cont "to have some tea." cont "to have some tea."
@@ -94,24 +94,24 @@ UnknownText_0x19b1b6:
line "to groom one?" line "to groom one?"
done done
UnknownText_0x19b244: DaisyWhichMonText:
text "DAISY: Which one" text "DAISY: Which one"
line "should I groom?" line "should I groom?"
done done
UnknownText_0x19b266: DaisyAlrightText:
text "DAISY: OK, I'll" text "DAISY: OK, I'll"
line "get it looking" line "get it looking"
cont "nice in no time." cont "nice in no time."
done done
UnknownText_0x19b296: GroomedMonLooksContentText:
text_from_ram StringBuffer3 text_from_ram StringBuffer3
text " looks" text " looks"
line "content." line "content."
done done
UnknownText_0x19b2aa: DaisyAllDoneText:
text "DAISY: There you" text "DAISY: There you"
line "go! All done." line "go! All done."
@@ -122,7 +122,7 @@ UnknownText_0x19b2aa:
line "#MON." line "#MON."
done done
UnknownText_0x19b2fa: DaisyAlreadyGroomedText:
text "DAISY: I always" text "DAISY: I always"
line "have tea around" line "have tea around"
@@ -130,7 +130,7 @@ UnknownText_0x19b2fa:
line "join me." line "join me."
done done
UnknownText_0x19b334: DaisyRefusedText:
text "DAISY: You don't" text "DAISY: You don't"
line "want to have one" line "want to have one"
@@ -138,7 +138,7 @@ UnknownText_0x19b334:
line "just have tea." line "just have tea."
done done
UnknownText_0x19b377: DaisyCantGroomEggText:
text "DAISY: Oh, sorry." text "DAISY: Oh, sorry."
line "I honestly can't" line "I honestly can't"
cont "groom an EGG." cont "groom an EGG."
@@ -161,4 +161,4 @@ BluesHouse_MapEventHeader:
.PersonEvents: .PersonEvents:
db 1 db 1
person_event SPRITE_DAISY, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DaisyScript_0x19b0d0, -1 person_event SPRITE_DAISY, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DaisyScript, -1

View File

@@ -21,8 +21,8 @@ CeladonCity_MapScriptHeader:
setflag ENGINE_FLYPOINT_CELADON setflag ENGINE_FLYPOINT_CELADON
return return
FisherScript_0x1a9f43: CeladonCityFisherScript:
jumptextfaceplayer UnknownText_0x1a9f7d jumptextfaceplayer CeladonCityFisherText
CeladonCityPoliwrath: CeladonCityPoliwrath:
opentext opentext
@@ -32,26 +32,26 @@ CeladonCityPoliwrath:
closetext closetext
end end
TeacherScript_0x1a9f50: CeladonCityTeacher1Script:
jumptextfaceplayer UnknownText_0x1a9fde jumptextfaceplayer CeladonCityTeacher1Text
GrampsScript_0x1a9f53: CeladonCityGramps1Script:
jumptextfaceplayer UnknownText_0x1aa043 jumptextfaceplayer CeladonCityGramps1Text
GrampsScript_0x1a9f56: CeladonCityGramps2Script:
jumptextfaceplayer UnknownText_0x1aa0dc jumptextfaceplayer CeladonCityGramps2Text
YoungsterScript_0x1a9f59: CeladonCityYoungster1Script:
jumptextfaceplayer UnknownText_0x1aa115 jumptextfaceplayer CeladonCityYoungster1Text
YoungsterScript_0x1a9f5c: CeladonCityYoungster2Script:
jumptextfaceplayer UnknownText_0x1aa155 jumptextfaceplayer CeladonCityYoungster2Text
TeacherScript_0x1a9f5f: CeladonCityTeacher2Script:
jumptextfaceplayer UnknownText_0x1aa1bd jumptextfaceplayer CeladonCityTeacher2Text
LassScript_0x1a9f62: CeladonCityLassScript:
jumptextfaceplayer UnknownText_0x1aa306 jumptextfaceplayer CeladonCityLassText
CeladonCitySign: CeladonCitySign:
jumptext CeladonCitySignText jumptext CeladonCitySignText
@@ -77,7 +77,7 @@ CeladonCityPokecenterSign:
CeladonCityHiddenPpUp: CeladonCityHiddenPpUp:
dwb EVENT_CELADON_CITY_HIDDEN_PP_UP, PP_UP dwb EVENT_CELADON_CITY_HIDDEN_PP_UP, PP_UP
UnknownText_0x1a9f7d: CeladonCityFisherText:
text "This POLIWRATH is" text "This POLIWRATH is"
line "my partner." line "my partner."
@@ -90,7 +90,7 @@ CeladonCityPoliwrathText:
text "POLIWRATH: Croak!" text "POLIWRATH: Croak!"
done done
UnknownText_0x1a9fde: CeladonCityTeacher1Text:
text "I lost at the slot" text "I lost at the slot"
line "machines again…" line "machines again…"
@@ -101,7 +101,7 @@ UnknownText_0x1a9fde:
line "them out too." line "them out too."
done done
UnknownText_0x1aa043: CeladonCityGramps1Text:
text "GRIMER have been" text "GRIMER have been"
line "appearing lately." line "appearing lately."
@@ -116,7 +116,7 @@ UnknownText_0x1aa043:
cont "a serious problem…" cont "a serious problem…"
done done
UnknownText_0x1aa0dc: CeladonCityGramps2Text:
text "Nihihi! This GYM" text "Nihihi! This GYM"
line "is great! Only" line "is great! Only"
@@ -124,7 +124,7 @@ UnknownText_0x1aa0dc:
line "here!" line "here!"
done done
UnknownText_0x1aa115: CeladonCityYoungster1Text:
text "Want to know a" text "Want to know a"
line "secret?" line "secret?"
@@ -133,7 +133,7 @@ UnknownText_0x1aa115:
cont "door." cont "door."
done done
UnknownText_0x1aa155: CeladonCityYoungster2Text:
text "They're holding an" text "They're holding an"
line "eating contest at" line "eating contest at"
cont "the restaurant." cont "the restaurant."
@@ -143,7 +143,7 @@ UnknownText_0x1aa155:
cont "feel bloated…" cont "feel bloated…"
done done
UnknownText_0x1aa1bd: CeladonCityTeacher2Text:
text "CELADON DEPT.STORE" text "CELADON DEPT.STORE"
line "has the biggest" line "has the biggest"
@@ -179,7 +179,7 @@ UnknownText_0x1aa25b:
line "KANTO…" line "KANTO…"
done done
UnknownText_0x1aa306: CeladonCityLassText:
text "Looking at the" text "Looking at the"
line "ground while I was" line "ground while I was"
@@ -266,12 +266,12 @@ CeladonCity_MapEventHeader:
.PersonEvents: .PersonEvents:
db 9 db 9
person_event SPRITE_FISHER, 11, 26, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, FisherScript_0x1a9f43, -1 person_event SPRITE_FISHER, 11, 26, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonCityFisherScript, -1
person_event SPRITE_POLIWAG, 11, 27, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonCityPoliwrath, -1 person_event SPRITE_POLIWAG, 11, 27, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonCityPoliwrath, -1
person_event SPRITE_TEACHER, 24, 20, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, TeacherScript_0x1a9f50, -1 person_event SPRITE_TEACHER, 24, 20, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonCityTeacher1Script, -1
person_event SPRITE_GRAMPS, 16, 14, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, PERSONTYPE_SCRIPT, 0, GrampsScript_0x1a9f53, -1 person_event SPRITE_GRAMPS, 16, 14, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, PERSONTYPE_SCRIPT, 0, CeladonCityGramps1Script, -1
person_event SPRITE_GRAMPS, 31, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GrampsScript_0x1a9f56, -1 person_event SPRITE_GRAMPS, 31, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonCityGramps2Script, -1
person_event SPRITE_YOUNGSTER, 13, 18, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x1a9f59, -1 person_event SPRITE_YOUNGSTER, 13, 18, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonCityYoungster1Script, -1
person_event SPRITE_YOUNGSTER, 33, 24, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x1a9f5c, -1 person_event SPRITE_YOUNGSTER, 33, 24, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonCityYoungster2Script, -1
person_event SPRITE_TEACHER, 14, 6, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, TeacherScript_0x1a9f5f, -1 person_event SPRITE_TEACHER, 14, 6, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonCityTeacher2Script, -1
person_event SPRITE_LASS, 22, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 2, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, LassScript_0x1a9f62, -1 person_event SPRITE_LASS, 22, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 2, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonCityLassScript, -1

View File

@@ -10,14 +10,14 @@ CeladonDeptStore1F_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
ReceptionistScript_0x709e0: CeladonDeptStore1FReceptionistScript:
jumptextfaceplayer UnknownText_0x709ef jumptextfaceplayer CeladonDeptStore1FReceptionistText
GentlemanScript_0x709e3: CeladonDeptStore1FGentlemanScript:
jumptextfaceplayer UnknownText_0x70a35 jumptextfaceplayer CeladonDeptStore1FGentlemanText
TeacherScript_0x709e6: CeladonDeptStore1FTeacherScript:
jumptextfaceplayer UnknownText_0x70aa9 jumptextfaceplayer CeladonDeptStore1FTeacherText
CeladonDeptStore1FDirectory: CeladonDeptStore1FDirectory:
jumptext CeladonDeptStore1FDirectoryText jumptext CeladonDeptStore1FDirectoryText
@@ -25,7 +25,7 @@ CeladonDeptStore1FDirectory:
CeladonDeptStore1FElevatorButton: CeladonDeptStore1FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
UnknownText_0x709ef: CeladonDeptStore1FReceptionistText:
text "Hello! Welcome to" text "Hello! Welcome to"
line "CELADON DEPT." line "CELADON DEPT."
cont "STORE!" cont "STORE!"
@@ -34,7 +34,7 @@ UnknownText_0x709ef:
line "on the wall." line "on the wall."
done done
UnknownText_0x70a35: CeladonDeptStore1FGentlemanText:
text "This DEPT.STORE is" text "This DEPT.STORE is"
line "part of the same" line "part of the same"
@@ -46,7 +46,7 @@ UnknownText_0x70a35:
cont "same time." cont "same time."
done done
UnknownText_0x70aa9: CeladonDeptStore1FTeacherText:
text "This is my first" text "This is my first"
line "time here." line "time here."
@@ -94,6 +94,6 @@ CeladonDeptStore1F_MapEventHeader:
.PersonEvents: .PersonEvents:
db 3 db 3
person_event SPRITE_RECEPTIONIST, 1, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, ReceptionistScript_0x709e0, -1 person_event SPRITE_RECEPTIONIST, 1, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore1FReceptionistScript, -1
person_event SPRITE_GENTLEMAN, 4, 11, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x709e3, -1 person_event SPRITE_GENTLEMAN, 4, 11, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeladonDeptStore1FGentlemanScript, -1
person_event SPRITE_TEACHER, 3, 5, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, TeacherScript_0x709e6, -1 person_event SPRITE_TEACHER, 3, 5, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore1FTeacherScript, -1

View File

@@ -25,11 +25,11 @@ ClerkScript_0x70bb5:
closetext closetext
end end
PokefanMScript_0x70bbd: CeladonDeptStore2FPokefanMScript:
jumptextfaceplayer UnknownText_0x70bc9 jumptextfaceplayer CeladonDeptStore2FPokefanMText
YoungsterScript_0x70bc0: CeladonDeptStore2FYoungsterScript:
jumptextfaceplayer UnknownText_0x70c3e jumptextfaceplayer CeladonDeptStore2FYoungsterText
CeladonDeptStore2FDirectory: CeladonDeptStore2FDirectory:
jumptext CeladonDeptStore2FDirectoryText jumptext CeladonDeptStore2FDirectoryText
@@ -37,7 +37,7 @@ CeladonDeptStore2FDirectory:
CeladonDeptStore2FElevatorButton: CeladonDeptStore2FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
UnknownText_0x70bc9: CeladonDeptStore2FPokefanMText:
text "I just recently" text "I just recently"
line "became a trainer." line "became a trainer."
@@ -49,7 +49,7 @@ UnknownText_0x70bc9:
cont "convenient items." cont "convenient items."
done done
UnknownText_0x70c3e: CeladonDeptStore2FYoungsterText:
text "My dad's having a" text "My dad's having a"
line "hard time learning" line "hard time learning"
@@ -90,5 +90,5 @@ CeladonDeptStore2F_MapEventHeader:
db 4 db 4
person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bad, -1 person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bad, -1
person_event SPRITE_CLERK, 5, 14, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bb5, -1 person_event SPRITE_CLERK, 5, 14, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70bb5, -1
person_event SPRITE_POKEFAN_M, 2, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, PokefanMScript_0x70bbd, -1 person_event SPRITE_POKEFAN_M, 2, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore2FPokefanMScript, -1
person_event SPRITE_YOUNGSTER, 2, 6, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70bc0, -1 person_event SPRITE_YOUNGSTER, 2, 6, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore2FYoungsterScript, -1

View File

@@ -19,8 +19,8 @@ ClerkScript_0x70d29:
closetext closetext
end end
YoungsterScript_0x70d31: CeladonDeptStore3FYoungsterScript:
jumptextfaceplayer UnknownText_0x70d53 jumptextfaceplayer CeladonDeptStore3FYoungsterText
GameboyKidScript_0x70d34: GameboyKidScript_0x70d34:
faceplayer faceplayer
@@ -40,8 +40,8 @@ GameboyKidScript_0x70d3f:
spriteface CELADONDEPTSTORE3F_GAMEBOY_KID2, DOWN spriteface CELADONDEPTSTORE3F_GAMEBOY_KID2, DOWN
end end
SuperNerdScript_0x70d4a: CeladonDeptStore3FSuperNerdScript:
jumptextfaceplayer UnknownText_0x70e61 jumptextfaceplayer CeladonDeptStore3FSuperNerdText
CeladonDeptStore3FElevatorButton: CeladonDeptStore3FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
@@ -49,7 +49,7 @@ CeladonDeptStore3FElevatorButton:
CeladonDeptStore3FDirectory: CeladonDeptStore3FDirectory:
jumptext CeladonDeptStore3FDirectoryText jumptext CeladonDeptStore3FDirectoryText
UnknownText_0x70d53: CeladonDeptStore3FYoungsterText:
text "I can't decide" text "I can't decide"
line "which #MON I" line "which #MON I"
@@ -82,7 +82,7 @@ UnknownText_0x70dc7:
cont "ferent #MON!" cont "ferent #MON!"
done done
UnknownText_0x70e61: CeladonDeptStore3FSuperNerdText:
text "The TM SHOP sells" text "The TM SHOP sells"
line "some rare moves." line "some rare moves."
done done
@@ -115,7 +115,7 @@ CeladonDeptStore3F_MapEventHeader:
.PersonEvents: .PersonEvents:
db 5 db 5
person_event SPRITE_CLERK, 1, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70d29, -1 person_event SPRITE_CLERK, 1, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70d29, -1
person_event SPRITE_YOUNGSTER, 4, 6, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70d31, -1 person_event SPRITE_YOUNGSTER, 4, 6, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore3FYoungsterScript, -1
person_event SPRITE_GAMEBOY_KID, 1, 9, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d34, -1 person_event SPRITE_GAMEBOY_KID, 1, 9, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d34, -1
person_event SPRITE_GAMEBOY_KID, 1, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d3f, -1 person_event SPRITE_GAMEBOY_KID, 1, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, GameboyKidScript_0x70d3f, -1
person_event SPRITE_SUPER_NERD, 4, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x70d4a, -1 person_event SPRITE_SUPER_NERD, 4, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore3FSuperNerdScript, -1

View File

@@ -17,11 +17,11 @@ ClerkScript_0x70f0d:
closetext closetext
end end
SuperNerdScript_0x70f15: CeladonDeptStore4FSuperNerdScript:
jumptextfaceplayer UnknownText_0x70f21 jumptextfaceplayer CeladonDeptStore4FSuperNerdText
YoungsterScript_0x70f18: CeladonDeptStore4FYoungsterScript:
jumptextfaceplayer UnknownText_0x70f55 jumptextfaceplayer CeladonDeptStore4FYoungsterText
CeladonDeptStore4FDirectory: CeladonDeptStore4FDirectory:
jumptext CeladonDeptStore4FDirectoryText jumptext CeladonDeptStore4FDirectoryText
@@ -29,13 +29,13 @@ CeladonDeptStore4FDirectory:
CeladonDeptStore4FElevatorButton: CeladonDeptStore4FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
UnknownText_0x70f21: CeladonDeptStore4FSuperNerdText:
text "I'm here to buy" text "I'm here to buy"
line "SURF MAIL to send" line "SURF MAIL to send"
cont "to my girlfriend." cont "to my girlfriend."
done done
UnknownText_0x70f55: CeladonDeptStore4FYoungsterText:
text "This is the only" text "This is the only"
line "place where you" line "place where you"
@@ -71,5 +71,5 @@ CeladonDeptStore4F_MapEventHeader:
.PersonEvents: .PersonEvents:
db 3 db 3
person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70f0d, -1 person_event SPRITE_CLERK, 5, 13, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x70f0d, -1
person_event SPRITE_SUPER_NERD, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x70f15, -1 person_event SPRITE_SUPER_NERD, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore4FSuperNerdScript, -1
person_event SPRITE_YOUNGSTER, 2, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70f18, -1 person_event SPRITE_YOUNGSTER, 2, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeladonDeptStore4FYoungsterScript, -1

View File

@@ -26,14 +26,14 @@ ClerkScript_0x7100c:
closetext closetext
end end
GentlemanScript_0x71014: CeladonDeptStore5FGentlemanScript:
jumptextfaceplayer UnknownText_0x71023 jumptextfaceplayer CeladonDeptStore5FGentlemanText
SailorScript_0x71017: CeladonDeptStore5FSailorScript:
jumptextfaceplayer UnknownText_0x71072 jumptextfaceplayer CeladonDeptStore5FSailorText
TeacherScript_0x7101a: CeladonDeptStore5FTeacherScript:
jumptextfaceplayer UnknownText_0x710b6 jumptextfaceplayer CeladonDeptStore5FTeacherText
CeladonDeptStore5FDirectory: CeladonDeptStore5FDirectory:
jumptext CeladonDeptStore5FDirectoryText jumptext CeladonDeptStore5FDirectoryText
@@ -41,7 +41,7 @@ CeladonDeptStore5FDirectory:
CeladonDeptStore5FElevatorButton: CeladonDeptStore5FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
UnknownText_0x71023: CeladonDeptStore5FGentlemanText:
text "I want to buy some" text "I want to buy some"
line "items that raise" line "items that raise"
@@ -50,7 +50,7 @@ UnknownText_0x71023:
cont "enough money…" cont "enough money…"
done done
UnknownText_0x71072: CeladonDeptStore5FSailorText:
text "I want PP UP, so I" text "I want PP UP, so I"
line "can raise the PP" line "can raise the PP"
@@ -58,7 +58,7 @@ UnknownText_0x71072:
line "can't buy it…" line "can't buy it…"
done done
UnknownText_0x710b6: CeladonDeptStore5FTeacherText:
text "Using items on" text "Using items on"
line "them makes #-" line "them makes #-"
cont "MON happy." cont "MON happy."
@@ -93,6 +93,6 @@ CeladonDeptStore5F_MapEventHeader:
db 5 db 5
person_event SPRITE_CLERK, 5, 7, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x71004, -1 person_event SPRITE_CLERK, 5, 7, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x71004, -1
person_event SPRITE_CLERK, 5, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x7100c, -1 person_event SPRITE_CLERK, 5, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, ClerkScript_0x7100c, -1
person_event SPRITE_GENTLEMAN, 5, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x71014, -1 person_event SPRITE_GENTLEMAN, 5, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FGentlemanScript, -1
person_event SPRITE_SAILOR, 4, 3, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, SailorScript_0x71017, -1 person_event SPRITE_SAILOR, 4, 3, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FSailorScript, -1
person_event SPRITE_TEACHER, 7, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, TeacherScript_0x7101a, -1 person_event SPRITE_TEACHER, 7, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonDeptStore5FTeacherScript, -1

View File

@@ -14,11 +14,11 @@ CeladonDeptStore6F_MapScriptHeader:
changeblock $c, $0, $3 changeblock $c, $0, $3
return return
SuperNerdScript_0x7117a: CeladonDeptStore6FSuperNerdScript:
jumptextfaceplayer UnknownText_0x712c7 jumptextfaceplayer CeladonDeptStore6FSuperNerdText
YoungsterScript_0x7117d: CeladonDeptStore6FYoungsterScript:
jumptextfaceplayer UnknownText_0x71310 jumptextfaceplayer CeladonDeptStore6FYoungsterText
CeladonVendingMachine: CeladonVendingMachine:
opentext opentext
@@ -125,7 +125,7 @@ CeladonVendingNoSpaceText:
line "room for stuff…" line "room for stuff…"
done done
UnknownText_0x712c7: CeladonDeptStore6FSuperNerdText:
text "A vending machine" text "A vending machine"
line "with a prize rou-" line "with a prize rou-"
cont "lette…" cont "lette…"
@@ -134,7 +134,7 @@ UnknownText_0x712c7:
line "those anymore." line "those anymore."
done done
UnknownText_0x71310: CeladonDeptStore6FYoungsterText:
text "Aww! There's no" text "Aww! There's no"
line "games here!" line "games here!"
@@ -169,5 +169,5 @@ CeladonDeptStore6F_MapEventHeader:
.PersonEvents: .PersonEvents:
db 2 db 2
person_event SPRITE_SUPER_NERD, 2, 9, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x7117a, -1 person_event SPRITE_SUPER_NERD, 2, 9, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeladonDeptStore6FSuperNerdScript, -1
person_event SPRITE_YOUNGSTER, 5, 12, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x7117d, -1 person_event SPRITE_YOUNGSTER, 5, 12, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonDeptStore6FYoungsterScript, -1

View File

@@ -19,8 +19,8 @@ CeladonGameCorner_MapScriptHeader:
ClerkScript_0x7211d: ClerkScript_0x7211d:
jumpstd gamecornercoinvendor jumpstd gamecornercoinvendor
ReceptionistScript_0x72120: CeladonGameCornerReceptionistScript:
jumptextfaceplayer UnknownText_0x721d0 jumptextfaceplayer CeladonGameCornerReceptionistText
PokefanMScript_0x72123: PokefanMScript_0x72123:
faceplayer faceplayer
@@ -149,7 +149,7 @@ MovementData_0x721cd:
turn_head LEFT turn_head LEFT
step_end step_end
UnknownText_0x721d0: CeladonGameCornerReceptionistText:
text "Welcome!" text "Welcome!"
para "You may exchange" para "You may exchange"
@@ -337,7 +337,7 @@ CeladonGameCorner_MapEventHeader:
.PersonEvents: .PersonEvents:
db 9 db 9
person_event SPRITE_CLERK, 2, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, ClerkScript_0x7211d, -1 person_event SPRITE_CLERK, 2, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, ClerkScript_0x7211d, -1
person_event SPRITE_RECEPTIONIST, 2, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, ReceptionistScript_0x72120, -1 person_event SPRITE_RECEPTIONIST, 2, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonGameCornerReceptionistScript, -1
person_event SPRITE_POKEFAN_M, 10, 14, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, PokefanMScript_0x72123, -1 person_event SPRITE_POKEFAN_M, 10, 14, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, PokefanMScript_0x72123, -1
person_event SPRITE_TEACHER, 7, 17, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, TeacherScript_0x7212e, -1 person_event SPRITE_TEACHER, 7, 17, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, TeacherScript_0x7212e, -1
person_event SPRITE_FISHING_GURU, 7, 11, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, FishingGuruScript_0x72139, -1 person_event SPRITE_FISHING_GURU, 7, 11, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, FishingGuruScript_0x72139, -1

View File

@@ -65,11 +65,11 @@ UnknownScript_0x716b6:
closetext closetext
end end
SuperNerdScript_0x716bc: CeladonMansion3FSuperNerdScript:
jumptextfaceplayer UnknownText_0x71895 jumptextfaceplayer CeladonMansion3FSuperNerdText
FisherScript_0x716bf: CeladonMansion3FFisherScript:
jumptextfaceplayer UnknownText_0x718ca jumptextfaceplayer CeladonMansion3FFisherText
MapCeladonMansion3FSignpost0Script: MapCeladonMansion3FSignpost0Script:
jumptext UnknownText_0x7190b jumptext UnknownText_0x7190b
@@ -145,7 +145,7 @@ UnknownText_0x71863:
cont "cel printing." cont "cel printing."
done done
UnknownText_0x71895: CeladonMansion3FSuperNerdText:
text "Who, me? I'm the" text "Who, me? I'm the"
line "PROGRAMMER." line "PROGRAMMER."
@@ -153,7 +153,7 @@ UnknownText_0x71895:
line "machines!" line "machines!"
done done
UnknownText_0x718ca: CeladonMansion3FFisherText:
text "Aren't the TWINS" text "Aren't the TWINS"
line "adorable?" line "adorable?"
@@ -214,5 +214,5 @@ CeladonMansion3F_MapEventHeader:
db 4 db 4
person_event SPRITE_COOLTRAINER_M, 6, 3, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x71670, -1 person_event SPRITE_COOLTRAINER_M, 6, 3, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x71670, -1
person_event SPRITE_GYM_GUY, 4, 3, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, GymGuyScript_0x71696, -1 person_event SPRITE_GYM_GUY, 4, 3, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, GymGuyScript_0x71696, -1
person_event SPRITE_SUPER_NERD, 7, 0, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x716bc, -1 person_event SPRITE_SUPER_NERD, 7, 0, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonMansion3FSuperNerdScript, -1
person_event SPRITE_FISHER, 4, 0, SPRITEMOVEDATA_STANDING_UP, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, FisherScript_0x716bf, -1 person_event SPRITE_FISHER, 4, 0, SPRITEMOVEDATA_STANDING_UP, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonMansion3FFisherScript, -1

View File

@@ -8,13 +8,13 @@ CeladonMansionRoof_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
FisherScript_0x71a39: CeladonMansionRoofFisherScript:
jumptextfaceplayer UnknownText_0x71a3f jumptextfaceplayer CeladonMansionRoofFisherText
MapCeladonMansionRoofSignpost0Script: MapCeladonMansionRoofSignpost0Script:
jumptext UnknownText_0x71aa1 jumptext UnknownText_0x71aa1
UnknownText_0x71a3f: CeladonMansionRoofFisherText:
text "High places--I do" text "High places--I do"
line "love them so!" line "love them so!"
@@ -52,4 +52,4 @@ CeladonMansionRoof_MapEventHeader:
.PersonEvents: .PersonEvents:
db 1 db 1
person_event SPRITE_FISHER, 5, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, FisherScript_0x71a39, -1 person_event SPRITE_FISHER, 5, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonMansionRoofFisherScript, -1

View File

@@ -18,11 +18,11 @@ NurseScript_0x71e22:
GentlemanScript_0x71e25: GentlemanScript_0x71e25:
jumpstd happinesschecknpc jumpstd happinesschecknpc
CooltrainerFScript_0x71e28: CeladonPokecenter1FCooltrainerFScript:
jumptextfaceplayer UnknownText_0x71e70 jumptextfaceplayer CeladonPokecenter1FCooltrainerFText
PharmacistScript_0x71e2b: CeladonPokecenter1FPharmacistScript:
jumptextfaceplayer UnknownText_0x71ec1 jumptextfaceplayer CeladonPokecenter1FPharmacistText
CeladonEusine: CeladonEusine:
faceplayer faceplayer
@@ -72,7 +72,7 @@ CeladonEusine:
step DOWN step DOWN
step_end step_end
UnknownText_0x71e70: CeladonPokecenter1FCooltrainerFText:
text "ERIKA is a master" text "ERIKA is a master"
line "of grass #MON." line "of grass #MON."
@@ -81,7 +81,7 @@ UnknownText_0x71e70:
cont "watch yourself." cont "watch yourself."
done done
UnknownText_0x71ec1: CeladonPokecenter1FPharmacistText:
text "TEAM ROCKET's" text "TEAM ROCKET's"
line "hideout is in the" line "hideout is in the"
@@ -165,6 +165,6 @@ CeladonPokecenter1F_MapEventHeader:
db 5 db 5
person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x71e22, -1 person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x71e22, -1
person_event SPRITE_GENTLEMAN, 5, 1, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x71e25, -1 person_event SPRITE_GENTLEMAN, 5, 1, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x71e25, -1
person_event SPRITE_PHARMACIST, 3, 0, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, PharmacistScript_0x71e2b, -1 person_event SPRITE_PHARMACIST, 3, 0, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CeladonPokecenter1FPharmacistScript, -1
person_event SPRITE_COOLTRAINER_F, 6, 8, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x71e28, -1 person_event SPRITE_COOLTRAINER_F, 6, 8, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeladonPokecenter1FCooltrainerFScript, -1
person_event SPRITE_SUPER_NERD, 3, 4, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonEusine, EVENT_SET_WHEN_FOUGHT_HO_OH person_event SPRITE_SUPER_NERD, 3, 4, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeladonEusine, EVENT_SET_WHEN_FOUGHT_HO_OH

View File

@@ -34,8 +34,8 @@ UnknownScript_0x184017:
closetext closetext
end end
SuperNerdScript_0x18401d: CeruleanCitySuperNerdScript:
jumptextfaceplayer UnknownText_0x1841a8 jumptextfaceplayer CeruleanCitySuperNerdText
CeruleanCitySlowbro: CeruleanCitySlowbro:
opentext opentext
@@ -174,7 +174,7 @@ UnknownText_0x184144:
cont "it sounds fun too." cont "it sounds fun too."
done done
UnknownText_0x1841a8: CeruleanCitySuperNerdText:
text "The CAPE in the" text "The CAPE in the"
line "north is a good" line "north is a good"
@@ -306,7 +306,7 @@ CeruleanCity_MapEventHeader:
.PersonEvents: .PersonEvents:
db 6 db 6
person_event SPRITE_COOLTRAINER_M, 23, 15, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x184009, -1 person_event SPRITE_COOLTRAINER_M, 23, 15, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x184009, -1
person_event SPRITE_SUPER_NERD, 15, 23, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x18401d, -1 person_event SPRITE_SUPER_NERD, 15, 23, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeruleanCitySuperNerdScript, -1
person_event SPRITE_SLOWPOKE, 24, 20, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeruleanCitySlowbro, -1 person_event SPRITE_SLOWPOKE, 24, 20, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeruleanCitySlowbro, -1
person_event SPRITE_COOLTRAINER_F, 24, 21, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x18402a, -1 person_event SPRITE_COOLTRAINER_F, 24, 21, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x18402a, -1
person_event SPRITE_FISHER, 26, 30, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, FisherScript_0x18404a, -1 person_event SPRITE_FISHER, 26, 30, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, FisherScript_0x18404a, -1

View File

@@ -8,10 +8,10 @@ CeruleanGymBadgeSpeechHouse_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
PokefanMScript_0x188002: CeruleanGymBadgeSpeechHousePokefanMScript:
jumptextfaceplayer UnknownText_0x188005 jumptextfaceplayer CeruleanGymBadgeSpeechHousePokefanMText
UnknownText_0x188005: CeruleanGymBadgeSpeechHousePokefanMText:
text "Are you collecting" text "Are you collecting"
line "KANTO GYM BADGES?" line "KANTO GYM BADGES?"
done done
@@ -33,4 +33,4 @@ CeruleanGymBadgeSpeechHouse_MapEventHeader:
.PersonEvents: .PersonEvents:
db 1 db 1
person_event SPRITE_POKEFAN_M, 3, 2, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, PokefanMScript_0x188002, -1 person_event SPRITE_POKEFAN_M, 3, 2, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CeruleanGymBadgeSpeechHousePokefanMScript, -1

View File

@@ -21,8 +21,8 @@ SuperNerdScript_0x188212:
.mobile .mobile
jumptextfaceplayer UnknownText_0x18828c jumptextfaceplayer UnknownText_0x18828c
GymGuyScript_0x18821e: CeruleanPokecenter1FGymGuyScript:
jumptextfaceplayer UnknownText_0x1882ff jumptextfaceplayer CeruleanPokecenter1FGymGuyText
UnknownText_0x188221: UnknownText_0x188221:
text "For battles, I'd" text "For battles, I'd"
@@ -48,7 +48,7 @@ UnknownText_0x18828c:
cont "nerve wracking." cont "nerve wracking."
done done
UnknownText_0x1882ff: CeruleanPokecenter1FGymGuyText:
text "The MAGNET TRAIN" text "The MAGNET TRAIN"
line "travels at over" line "travels at over"
@@ -82,4 +82,4 @@ CeruleanPokecenter1F_MapEventHeader:
db 3 db 3
person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x18820f, -1 person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x18820f, -1
person_event SPRITE_SUPER_NERD, 4, 8, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x188212, -1 person_event SPRITE_SUPER_NERD, 4, 8, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x188212, -1
person_event SPRITE_GYM_GUY, 5, 1, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, GymGuyScript_0x18821e, -1 person_event SPRITE_GYM_GUY, 5, 1, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeruleanPokecenter1FGymGuyScript, -1

View File

@@ -10,11 +10,11 @@ CeruleanPoliceStation_MapScriptHeader:
.MapCallbacks: .MapCallbacks:
db 0 db 0
FishingGuruScript_0x18804a: CeruleanPoliceStationFishingGuruScript:
jumptextfaceplayer UnknownText_0x18805a jumptextfaceplayer CeruleanPoliceStationFishingGuruText
PokefanFScript_0x18804d: CeruleanPoliceStationPokefanFScript:
jumptextfaceplayer UnknownText_0x1880c3 jumptextfaceplayer CeruleanPoliceStationPokefanFText
CeruleanDiglett: CeruleanDiglett:
opentext opentext
@@ -24,7 +24,7 @@ CeruleanDiglett:
closetext closetext
end end
UnknownText_0x18805a: CeruleanPoliceStationFishingGuruText:
text "I heard that some" text "I heard that some"
line "shady character is" line "shady character is"
cont "skulking about." cont "skulking about."
@@ -34,7 +34,7 @@ UnknownText_0x18805a:
cont "to be a thief." cont "to be a thief."
done done
UnknownText_0x1880c3: CeruleanPoliceStationPokefanFText:
text "We were held up by" text "We were held up by"
line "robbers before." line "robbers before."
done done
@@ -60,6 +60,6 @@ CeruleanPoliceStation_MapEventHeader:
.PersonEvents: .PersonEvents:
db 3 db 3
person_event SPRITE_FISHING_GURU, 1, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, FishingGuruScript_0x18804a, -1 person_event SPRITE_FISHING_GURU, 1, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CeruleanPoliceStationFishingGuruScript, -1
person_event SPRITE_POKEFAN_F, 4, 5, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, PokefanFScript_0x18804d, -1 person_event SPRITE_POKEFAN_F, 4, 5, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, CeruleanPoliceStationPokefanFScript, -1
person_event SPRITE_DIGLETT, 5, 3, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BROWN, PERSONTYPE_SCRIPT, 0, CeruleanDiglett, -1 person_event SPRITE_DIGLETT, 5, 3, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BROWN, PERSONTYPE_SCRIPT, 0, CeruleanDiglett, -1

Some files were not shown because too many files have changed in this diff Show More