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)
- [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)
- [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 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)
@@ -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`.
## 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):

View File

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

View File

@@ -10,19 +10,19 @@ BlackthornMart_MapScriptHeader:
.MapCallbacks:
db 0
ClerkScript_0x195a5d:
BlackthornMartClerkScript:
opentext
pokemart MARTTYPE_STANDARD, MART_BLACKTHORN
closetext
end
CooltrainerMScript_0x195a64:
jumptextfaceplayer UnknownText_0x195a6a
BlackthornMartCooltrainerMScript:
jumptextfaceplayer BlackthornMartCooltrainerMText
BlackBeltScript_0x195a67:
jumptextfaceplayer UnknownText_0x195ae9
BlackthornMartBlackBeltScript:
jumptextfaceplayer BlackthornMartBlackBeltText
UnknownText_0x195a6a:
BlackthornMartCooltrainerMText:
text "You can't buy MAX"
line "REVIVE, but it"
@@ -36,7 +36,7 @@ UnknownText_0x195a6a:
line "needed for moves."
done
UnknownText_0x195ae9:
BlackthornMartBlackBeltText:
text "MAX REPEL keeps"
line "weak #MON away"
cont "from you."
@@ -63,6 +63,6 @@ BlackthornMart_MapEventHeader:
.PersonEvents:
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_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x195a64, -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_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, BlackthornMartCooltrainerMScript, -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:
db 0
NurseScript_0x195b79:
BlackthornPokecenter1FNurseScript:
jumpstd pokecenternurse
GentlemanScript_0x195b7c:
jumptextfaceplayer UnknownText_0x195b85
BlackthornPokecenter1FGentlemanScript:
jumptextfaceplayer BlackthornPokecenter1FGentlemanText
TwinScript_0x195b7f:
jumptextfaceplayer UnknownText_0x195bfd
BlackthornPokecenter1FTwinScript:
jumptextfaceplayer BlackthornPokecenter1FTwinText
CooltrainerMScript_0x195b82:
BlackthornPokecenter1FCooltrainerMScript:
jumpstd happinesschecknpc
UnknownText_0x195b85:
BlackthornPokecenter1FGentlemanText:
text "Deep inside far-"
line "off INDIGO PLATEAU"
@@ -37,7 +37,7 @@ UnknownText_0x195b85:
line "the country."
done
UnknownText_0x195bfd:
BlackthornPokecenter1FTwinText:
text "There was this"
line "move I just had"
@@ -67,7 +67,7 @@ BlackthornPokecenter1F_MapEventHeader:
.PersonEvents:
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_GENTLEMAN, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x195b7c, -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_COOLTRAINER_M, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, CooltrainerMScript_0x195b82, -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, BlackthornPokecenter1FGentlemanScript, -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, BlackthornPokecenter1FCooltrainerMScript, -1

View File

@@ -8,29 +8,29 @@ BluesHouse_MapScriptHeader:
.MapCallbacks:
db 0
DaisyScript_0x19b0d0:
DaisyScript:
faceplayer
opentext
checkcode VAR_HOUR
if_equal $f, UnknownScript_0x19b0de
writetext UnknownText_0x19b130
if_equal 15, .ThreePM
writetext DaisyHelloText
waitbutton
closetext
end
UnknownScript_0x19b0de:
.ThreePM:
checkflag ENGINE_TEA_IN_BLUES_HOUSE
iftrue UnknownScript_0x19b11e
writetext UnknownText_0x19b1b6
iftrue .AlreadyGroomedMon
writetext DaisyOfferGroomingText
yesorno
iffalse UnknownScript_0x19b124
writetext UnknownText_0x19b244
iffalse .Refused
writetext DaisyWhichMonText
waitbutton
special Special_DaisyMassage
if_equal 0, UnknownScript_0x19b124
if_equal 1, UnknownScript_0x19b12a
if_equal 0, .Refused
if_equal 1, .CantGroomEgg
setflag ENGINE_TEA_IN_BLUES_HOUSE
writetext UnknownText_0x19b266
writetext DaisyAlrightText
waitbutton
closetext
special FadeOutPalettes
@@ -39,33 +39,33 @@ UnknownScript_0x19b0de:
special FadeInPalettes
special RestartMapMusic
opentext
writetext UnknownText_0x19b296
writetext GroomedMonLooksContentText
special PlayCurMonCry
buttonsound
writetext UnknownText_0x19b2aa
writetext DaisyAllDoneText
waitbutton
closetext
end
UnknownScript_0x19b11e:
writetext UnknownText_0x19b2fa
.AlreadyGroomedMon:
writetext DaisyAlreadyGroomedText
waitbutton
closetext
end
UnknownScript_0x19b124:
writetext UnknownText_0x19b334
.Refused:
writetext DaisyRefusedText
waitbutton
closetext
end
UnknownScript_0x19b12a:
writetext UnknownText_0x19b377
.CantGroomEgg:
writetext DaisyCantGroomEggText
waitbutton
closetext
end
UnknownText_0x19b130:
DaisyHelloText:
text "DAISY: Hi! My kid"
line "brother is the GYM"
@@ -79,7 +79,7 @@ UnknownText_0x19b130:
line "for the trainers."
done
UnknownText_0x19b1b6:
DaisyOfferGroomingText:
text "DAISY: Hi! Good"
line "timing. I'm about"
cont "to have some tea."
@@ -94,24 +94,24 @@ UnknownText_0x19b1b6:
line "to groom one?"
done
UnknownText_0x19b244:
DaisyWhichMonText:
text "DAISY: Which one"
line "should I groom?"
done
UnknownText_0x19b266:
DaisyAlrightText:
text "DAISY: OK, I'll"
line "get it looking"
cont "nice in no time."
done
UnknownText_0x19b296:
GroomedMonLooksContentText:
text_from_ram StringBuffer3
text " looks"
line "content."
done
UnknownText_0x19b2aa:
DaisyAllDoneText:
text "DAISY: There you"
line "go! All done."
@@ -122,7 +122,7 @@ UnknownText_0x19b2aa:
line "#MON."
done
UnknownText_0x19b2fa:
DaisyAlreadyGroomedText:
text "DAISY: I always"
line "have tea around"
@@ -130,7 +130,7 @@ UnknownText_0x19b2fa:
line "join me."
done
UnknownText_0x19b334:
DaisyRefusedText:
text "DAISY: You don't"
line "want to have one"
@@ -138,7 +138,7 @@ UnknownText_0x19b334:
line "just have tea."
done
UnknownText_0x19b377:
DaisyCantGroomEggText:
text "DAISY: Oh, sorry."
line "I honestly can't"
cont "groom an EGG."
@@ -161,4 +161,4 @@ BluesHouse_MapEventHeader:
.PersonEvents:
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
return
FisherScript_0x1a9f43:
jumptextfaceplayer UnknownText_0x1a9f7d
CeladonCityFisherScript:
jumptextfaceplayer CeladonCityFisherText
CeladonCityPoliwrath:
opentext
@@ -32,26 +32,26 @@ CeladonCityPoliwrath:
closetext
end
TeacherScript_0x1a9f50:
jumptextfaceplayer UnknownText_0x1a9fde
CeladonCityTeacher1Script:
jumptextfaceplayer CeladonCityTeacher1Text
GrampsScript_0x1a9f53:
jumptextfaceplayer UnknownText_0x1aa043
CeladonCityGramps1Script:
jumptextfaceplayer CeladonCityGramps1Text
GrampsScript_0x1a9f56:
jumptextfaceplayer UnknownText_0x1aa0dc
CeladonCityGramps2Script:
jumptextfaceplayer CeladonCityGramps2Text
YoungsterScript_0x1a9f59:
jumptextfaceplayer UnknownText_0x1aa115
CeladonCityYoungster1Script:
jumptextfaceplayer CeladonCityYoungster1Text
YoungsterScript_0x1a9f5c:
jumptextfaceplayer UnknownText_0x1aa155
CeladonCityYoungster2Script:
jumptextfaceplayer CeladonCityYoungster2Text
TeacherScript_0x1a9f5f:
jumptextfaceplayer UnknownText_0x1aa1bd
CeladonCityTeacher2Script:
jumptextfaceplayer CeladonCityTeacher2Text
LassScript_0x1a9f62:
jumptextfaceplayer UnknownText_0x1aa306
CeladonCityLassScript:
jumptextfaceplayer CeladonCityLassText
CeladonCitySign:
jumptext CeladonCitySignText
@@ -77,7 +77,7 @@ CeladonCityPokecenterSign:
CeladonCityHiddenPpUp:
dwb EVENT_CELADON_CITY_HIDDEN_PP_UP, PP_UP
UnknownText_0x1a9f7d:
CeladonCityFisherText:
text "This POLIWRATH is"
line "my partner."
@@ -90,7 +90,7 @@ CeladonCityPoliwrathText:
text "POLIWRATH: Croak!"
done
UnknownText_0x1a9fde:
CeladonCityTeacher1Text:
text "I lost at the slot"
line "machines again…"
@@ -101,7 +101,7 @@ UnknownText_0x1a9fde:
line "them out too."
done
UnknownText_0x1aa043:
CeladonCityGramps1Text:
text "GRIMER have been"
line "appearing lately."
@@ -116,7 +116,7 @@ UnknownText_0x1aa043:
cont "a serious problem…"
done
UnknownText_0x1aa0dc:
CeladonCityGramps2Text:
text "Nihihi! This GYM"
line "is great! Only"
@@ -124,7 +124,7 @@ UnknownText_0x1aa0dc:
line "here!"
done
UnknownText_0x1aa115:
CeladonCityYoungster1Text:
text "Want to know a"
line "secret?"
@@ -133,7 +133,7 @@ UnknownText_0x1aa115:
cont "door."
done
UnknownText_0x1aa155:
CeladonCityYoungster2Text:
text "They're holding an"
line "eating contest at"
cont "the restaurant."
@@ -143,7 +143,7 @@ UnknownText_0x1aa155:
cont "feel bloated…"
done
UnknownText_0x1aa1bd:
CeladonCityTeacher2Text:
text "CELADON DEPT.STORE"
line "has the biggest"
@@ -179,7 +179,7 @@ UnknownText_0x1aa25b:
line "KANTO…"
done
UnknownText_0x1aa306:
CeladonCityLassText:
text "Looking at the"
line "ground while I was"
@@ -266,12 +266,12 @@ CeladonCity_MapEventHeader:
.PersonEvents:
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_TEACHER, 24, 20, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, TeacherScript_0x1a9f50, -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, 31, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GrampsScript_0x1a9f56, -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, 33, 24, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x1a9f5c, -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_LASS, 22, 7, SPRITEMOVEDATA_WALK_UP_DOWN, 2, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, LassScript_0x1a9f62, -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, CeladonCityGramps1Script, -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, CeladonCityYoungster1Script, -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, CeladonCityTeacher2Script, -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:
db 0
ReceptionistScript_0x709e0:
jumptextfaceplayer UnknownText_0x709ef
CeladonDeptStore1FReceptionistScript:
jumptextfaceplayer CeladonDeptStore1FReceptionistText
GentlemanScript_0x709e3:
jumptextfaceplayer UnknownText_0x70a35
CeladonDeptStore1FGentlemanScript:
jumptextfaceplayer CeladonDeptStore1FGentlemanText
TeacherScript_0x709e6:
jumptextfaceplayer UnknownText_0x70aa9
CeladonDeptStore1FTeacherScript:
jumptextfaceplayer CeladonDeptStore1FTeacherText
CeladonDeptStore1FDirectory:
jumptext CeladonDeptStore1FDirectoryText
@@ -25,7 +25,7 @@ CeladonDeptStore1FDirectory:
CeladonDeptStore1FElevatorButton:
jumpstd elevatorbutton
UnknownText_0x709ef:
CeladonDeptStore1FReceptionistText:
text "Hello! Welcome to"
line "CELADON DEPT."
cont "STORE!"
@@ -34,7 +34,7 @@ UnknownText_0x709ef:
line "on the wall."
done
UnknownText_0x70a35:
CeladonDeptStore1FGentlemanText:
text "This DEPT.STORE is"
line "part of the same"
@@ -46,7 +46,7 @@ UnknownText_0x70a35:
cont "same time."
done
UnknownText_0x70aa9:
CeladonDeptStore1FTeacherText:
text "This is my first"
line "time here."
@@ -94,6 +94,6 @@ CeladonDeptStore1F_MapEventHeader:
.PersonEvents:
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_GENTLEMAN, 4, 11, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GentlemanScript_0x709e3, -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_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, CeladonDeptStore1FGentlemanScript, -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
end
PokefanMScript_0x70bbd:
jumptextfaceplayer UnknownText_0x70bc9
CeladonDeptStore2FPokefanMScript:
jumptextfaceplayer CeladonDeptStore2FPokefanMText
YoungsterScript_0x70bc0:
jumptextfaceplayer UnknownText_0x70c3e
CeladonDeptStore2FYoungsterScript:
jumptextfaceplayer CeladonDeptStore2FYoungsterText
CeladonDeptStore2FDirectory:
jumptext CeladonDeptStore2FDirectoryText
@@ -37,7 +37,7 @@ CeladonDeptStore2FDirectory:
CeladonDeptStore2FElevatorButton:
jumpstd elevatorbutton
UnknownText_0x70bc9:
CeladonDeptStore2FPokefanMText:
text "I just recently"
line "became a trainer."
@@ -49,7 +49,7 @@ UnknownText_0x70bc9:
cont "convenient items."
done
UnknownText_0x70c3e:
CeladonDeptStore2FYoungsterText:
text "My dad's having a"
line "hard time learning"
@@ -90,5 +90,5 @@ CeladonDeptStore2F_MapEventHeader:
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, 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_YOUNGSTER, 2, 6, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70bc0, -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, CeladonDeptStore2FYoungsterScript, -1

View File

@@ -19,8 +19,8 @@ ClerkScript_0x70d29:
closetext
end
YoungsterScript_0x70d31:
jumptextfaceplayer UnknownText_0x70d53
CeladonDeptStore3FYoungsterScript:
jumptextfaceplayer CeladonDeptStore3FYoungsterText
GameboyKidScript_0x70d34:
faceplayer
@@ -40,8 +40,8 @@ GameboyKidScript_0x70d3f:
spriteface CELADONDEPTSTORE3F_GAMEBOY_KID2, DOWN
end
SuperNerdScript_0x70d4a:
jumptextfaceplayer UnknownText_0x70e61
CeladonDeptStore3FSuperNerdScript:
jumptextfaceplayer CeladonDeptStore3FSuperNerdText
CeladonDeptStore3FElevatorButton:
jumpstd elevatorbutton
@@ -49,7 +49,7 @@ CeladonDeptStore3FElevatorButton:
CeladonDeptStore3FDirectory:
jumptext CeladonDeptStore3FDirectoryText
UnknownText_0x70d53:
CeladonDeptStore3FYoungsterText:
text "I can't decide"
line "which #MON I"
@@ -82,7 +82,7 @@ UnknownText_0x70dc7:
cont "ferent #MON!"
done
UnknownText_0x70e61:
CeladonDeptStore3FSuperNerdText:
text "The TM SHOP sells"
line "some rare moves."
done
@@ -115,7 +115,7 @@ CeladonDeptStore3F_MapEventHeader:
.PersonEvents:
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_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, 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
end
SuperNerdScript_0x70f15:
jumptextfaceplayer UnknownText_0x70f21
CeladonDeptStore4FSuperNerdScript:
jumptextfaceplayer CeladonDeptStore4FSuperNerdText
YoungsterScript_0x70f18:
jumptextfaceplayer UnknownText_0x70f55
CeladonDeptStore4FYoungsterScript:
jumptextfaceplayer CeladonDeptStore4FYoungsterText
CeladonDeptStore4FDirectory:
jumptext CeladonDeptStore4FDirectoryText
@@ -29,13 +29,13 @@ CeladonDeptStore4FDirectory:
CeladonDeptStore4FElevatorButton:
jumpstd elevatorbutton
UnknownText_0x70f21:
CeladonDeptStore4FSuperNerdText:
text "I'm here to buy"
line "SURF MAIL to send"
cont "to my girlfriend."
done
UnknownText_0x70f55:
CeladonDeptStore4FYoungsterText:
text "This is the only"
line "place where you"
@@ -71,5 +71,5 @@ CeladonDeptStore4F_MapEventHeader:
.PersonEvents:
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_SUPER_NERD, 6, 7, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x70f15, -1
person_event SPRITE_YOUNGSTER, 2, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x70f18, -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, CeladonDeptStore4FYoungsterScript, -1

View File

@@ -26,14 +26,14 @@ ClerkScript_0x7100c:
closetext
end
GentlemanScript_0x71014:
jumptextfaceplayer UnknownText_0x71023
CeladonDeptStore5FGentlemanScript:
jumptextfaceplayer CeladonDeptStore5FGentlemanText
SailorScript_0x71017:
jumptextfaceplayer UnknownText_0x71072
CeladonDeptStore5FSailorScript:
jumptextfaceplayer CeladonDeptStore5FSailorText
TeacherScript_0x7101a:
jumptextfaceplayer UnknownText_0x710b6
CeladonDeptStore5FTeacherScript:
jumptextfaceplayer CeladonDeptStore5FTeacherText
CeladonDeptStore5FDirectory:
jumptext CeladonDeptStore5FDirectoryText
@@ -41,7 +41,7 @@ CeladonDeptStore5FDirectory:
CeladonDeptStore5FElevatorButton:
jumpstd elevatorbutton
UnknownText_0x71023:
CeladonDeptStore5FGentlemanText:
text "I want to buy some"
line "items that raise"
@@ -50,7 +50,7 @@ UnknownText_0x71023:
cont "enough money…"
done
UnknownText_0x71072:
CeladonDeptStore5FSailorText:
text "I want PP UP, so I"
line "can raise the PP"
@@ -58,7 +58,7 @@ UnknownText_0x71072:
line "can't buy it…"
done
UnknownText_0x710b6:
CeladonDeptStore5FTeacherText:
text "Using items on"
line "them makes #-"
cont "MON happy."
@@ -93,6 +93,6 @@ CeladonDeptStore5F_MapEventHeader:
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, 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_SAILOR, 4, 3, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, SailorScript_0x71017, -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_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, CeladonDeptStore5FSailorScript, -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
return
SuperNerdScript_0x7117a:
jumptextfaceplayer UnknownText_0x712c7
CeladonDeptStore6FSuperNerdScript:
jumptextfaceplayer CeladonDeptStore6FSuperNerdText
YoungsterScript_0x7117d:
jumptextfaceplayer UnknownText_0x71310
CeladonDeptStore6FYoungsterScript:
jumptextfaceplayer CeladonDeptStore6FYoungsterText
CeladonVendingMachine:
opentext
@@ -125,7 +125,7 @@ CeladonVendingNoSpaceText:
line "room for stuff…"
done
UnknownText_0x712c7:
CeladonDeptStore6FSuperNerdText:
text "A vending machine"
line "with a prize rou-"
cont "lette…"
@@ -134,7 +134,7 @@ UnknownText_0x712c7:
line "those anymore."
done
UnknownText_0x71310:
CeladonDeptStore6FYoungsterText:
text "Aww! There's no"
line "games here!"
@@ -169,5 +169,5 @@ CeladonDeptStore6F_MapEventHeader:
.PersonEvents:
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_YOUNGSTER, 5, 12, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x7117d, -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, CeladonDeptStore6FYoungsterScript, -1

View File

@@ -19,8 +19,8 @@ CeladonGameCorner_MapScriptHeader:
ClerkScript_0x7211d:
jumpstd gamecornercoinvendor
ReceptionistScript_0x72120:
jumptextfaceplayer UnknownText_0x721d0
CeladonGameCornerReceptionistScript:
jumptextfaceplayer CeladonGameCornerReceptionistText
PokefanMScript_0x72123:
faceplayer
@@ -149,7 +149,7 @@ MovementData_0x721cd:
turn_head LEFT
step_end
UnknownText_0x721d0:
CeladonGameCornerReceptionistText:
text "Welcome!"
para "You may exchange"
@@ -337,7 +337,7 @@ CeladonGameCorner_MapEventHeader:
.PersonEvents:
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_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_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

View File

@@ -65,11 +65,11 @@ UnknownScript_0x716b6:
closetext
end
SuperNerdScript_0x716bc:
jumptextfaceplayer UnknownText_0x71895
CeladonMansion3FSuperNerdScript:
jumptextfaceplayer CeladonMansion3FSuperNerdText
FisherScript_0x716bf:
jumptextfaceplayer UnknownText_0x718ca
CeladonMansion3FFisherScript:
jumptextfaceplayer CeladonMansion3FFisherText
MapCeladonMansion3FSignpost0Script:
jumptext UnknownText_0x7190b
@@ -145,7 +145,7 @@ UnknownText_0x71863:
cont "cel printing."
done
UnknownText_0x71895:
CeladonMansion3FSuperNerdText:
text "Who, me? I'm the"
line "PROGRAMMER."
@@ -153,7 +153,7 @@ UnknownText_0x71895:
line "machines!"
done
UnknownText_0x718ca:
CeladonMansion3FFisherText:
text "Aren't the TWINS"
line "adorable?"
@@ -214,5 +214,5 @@ CeladonMansion3F_MapEventHeader:
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_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_FISHER, 4, 0, SPRITEMOVEDATA_STANDING_UP, 0, 2, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, FisherScript_0x716bf, -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, CeladonMansion3FFisherScript, -1

View File

@@ -8,13 +8,13 @@ CeladonMansionRoof_MapScriptHeader:
.MapCallbacks:
db 0
FisherScript_0x71a39:
jumptextfaceplayer UnknownText_0x71a3f
CeladonMansionRoofFisherScript:
jumptextfaceplayer CeladonMansionRoofFisherText
MapCeladonMansionRoofSignpost0Script:
jumptext UnknownText_0x71aa1
UnknownText_0x71a3f:
CeladonMansionRoofFisherText:
text "High places--I do"
line "love them so!"
@@ -52,4 +52,4 @@ CeladonMansionRoof_MapEventHeader:
.PersonEvents:
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:
jumpstd happinesschecknpc
CooltrainerFScript_0x71e28:
jumptextfaceplayer UnknownText_0x71e70
CeladonPokecenter1FCooltrainerFScript:
jumptextfaceplayer CeladonPokecenter1FCooltrainerFText
PharmacistScript_0x71e2b:
jumptextfaceplayer UnknownText_0x71ec1
CeladonPokecenter1FPharmacistScript:
jumptextfaceplayer CeladonPokecenter1FPharmacistText
CeladonEusine:
faceplayer
@@ -72,7 +72,7 @@ CeladonEusine:
step DOWN
step_end
UnknownText_0x71e70:
CeladonPokecenter1FCooltrainerFText:
text "ERIKA is a master"
line "of grass #MON."
@@ -81,7 +81,7 @@ UnknownText_0x71e70:
cont "watch yourself."
done
UnknownText_0x71ec1:
CeladonPokecenter1FPharmacistText:
text "TEAM ROCKET's"
line "hideout is in the"
@@ -165,6 +165,6 @@ CeladonPokecenter1F_MapEventHeader:
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_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_COOLTRAINER_F, 6, 8, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x71e28, -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, 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

View File

@@ -34,8 +34,8 @@ UnknownScript_0x184017:
closetext
end
SuperNerdScript_0x18401d:
jumptextfaceplayer UnknownText_0x1841a8
CeruleanCitySuperNerdScript:
jumptextfaceplayer CeruleanCitySuperNerdText
CeruleanCitySlowbro:
opentext
@@ -174,7 +174,7 @@ UnknownText_0x184144:
cont "it sounds fun too."
done
UnknownText_0x1841a8:
CeruleanCitySuperNerdText:
text "The CAPE in the"
line "north is a good"
@@ -306,7 +306,7 @@ CeruleanCity_MapEventHeader:
.PersonEvents:
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_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_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

View File

@@ -8,10 +8,10 @@ CeruleanGymBadgeSpeechHouse_MapScriptHeader:
.MapCallbacks:
db 0
PokefanMScript_0x188002:
jumptextfaceplayer UnknownText_0x188005
CeruleanGymBadgeSpeechHousePokefanMScript:
jumptextfaceplayer CeruleanGymBadgeSpeechHousePokefanMText
UnknownText_0x188005:
CeruleanGymBadgeSpeechHousePokefanMText:
text "Are you collecting"
line "KANTO GYM BADGES?"
done
@@ -33,4 +33,4 @@ CeruleanGymBadgeSpeechHouse_MapEventHeader:
.PersonEvents:
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
jumptextfaceplayer UnknownText_0x18828c
GymGuyScript_0x18821e:
jumptextfaceplayer UnknownText_0x1882ff
CeruleanPokecenter1FGymGuyScript:
jumptextfaceplayer CeruleanPokecenter1FGymGuyText
UnknownText_0x188221:
text "For battles, I'd"
@@ -48,7 +48,7 @@ UnknownText_0x18828c:
cont "nerve wracking."
done
UnknownText_0x1882ff:
CeruleanPokecenter1FGymGuyText:
text "The MAGNET TRAIN"
line "travels at over"
@@ -82,4 +82,4 @@ CeruleanPokecenter1F_MapEventHeader:
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_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:
db 0
FishingGuruScript_0x18804a:
jumptextfaceplayer UnknownText_0x18805a
CeruleanPoliceStationFishingGuruScript:
jumptextfaceplayer CeruleanPoliceStationFishingGuruText
PokefanFScript_0x18804d:
jumptextfaceplayer UnknownText_0x1880c3
CeruleanPoliceStationPokefanFScript:
jumptextfaceplayer CeruleanPoliceStationPokefanFText
CeruleanDiglett:
opentext
@@ -24,7 +24,7 @@ CeruleanDiglett:
closetext
end
UnknownText_0x18805a:
CeruleanPoliceStationFishingGuruText:
text "I heard that some"
line "shady character is"
cont "skulking about."
@@ -34,7 +34,7 @@ UnknownText_0x18805a:
cont "to be a thief."
done
UnknownText_0x1880c3:
CeruleanPoliceStationPokefanFText:
text "We were held up by"
line "robbers before."
done
@@ -60,6 +60,6 @@ CeruleanPoliceStation_MapEventHeader:
.PersonEvents:
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_POKEFAN_F, 4, 5, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, PokefanFScript_0x18804d, -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, CeruleanPoliceStationPokefanFScript, -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