mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08:00
No more ItemFragment
This commit is contained in:
parent
6e257bc7cd
commit
bb2aba7da1
@ -659,7 +659,7 @@ EMOTE_OBJECT EQU 7
|
||||
|
||||
const_def
|
||||
const PERSONTYPE_SCRIPT
|
||||
const PERSONTYPE_ITEMFRAGMENT
|
||||
const PERSONTYPE_ITEMBALL
|
||||
const PERSONTYPE_TRAINER
|
||||
const PERSONTYPE_3
|
||||
const PERSONTYPE_4
|
||||
|
@ -641,7 +641,7 @@ TryObjectEvent: ; 969b5
|
||||
|
||||
.pointers
|
||||
dbw PERSONTYPE_SCRIPT, .script
|
||||
dbw PERSONTYPE_ITEMFRAGMENT, .itemfragment
|
||||
dbw PERSONTYPE_ITEMBALL, .itemball
|
||||
dbw PERSONTYPE_TRAINER, .trainer
|
||||
; the remaining four are dummy events
|
||||
dbw PERSONTYPE_3, .three
|
||||
@ -662,7 +662,7 @@ TryObjectEvent: ; 969b5
|
||||
ret
|
||||
; 96a12
|
||||
|
||||
.itemfragment ; 96a12
|
||||
.itemball ; 96a12
|
||||
ld hl, MAPOBJECT_SCRIPT_POINTER
|
||||
add hl, bc
|
||||
ld a, [hli]
|
||||
|
@ -88,7 +88,7 @@ MovementPointers: ; 5075
|
||||
dw Movement_56 ; 56
|
||||
dw Movement_rock_smash ; 57
|
||||
dw Movement_return_dig ; 58
|
||||
dw Movement_59 ; 59
|
||||
dw Movement_run_before_fall ; 59
|
||||
; 5129
|
||||
|
||||
|
||||
@ -113,7 +113,7 @@ Movement_skyfall: ; 5137
|
||||
ret
|
||||
; 513e
|
||||
|
||||
Movement_59: ; 513e
|
||||
Movement_run_before_fall: ; 513e
|
||||
ld hl, OBJECT_STEP_TYPE
|
||||
add hl, bc
|
||||
ld [hl], STEP_TYPE_19
|
||||
|
@ -540,7 +540,7 @@ DisplayHOFMon: ; 86748
|
||||
Function86810: ; 86810
|
||||
call ClearBGPalettes
|
||||
ld hl, VTiles2 tile $63
|
||||
ld de, FontExtra + $d0
|
||||
ld de, FontExtra + 13 tiles
|
||||
lb bc, BANK(FontExtra), 1
|
||||
call Request2bpp
|
||||
hlcoord 0, 0
|
||||
|
@ -517,7 +517,7 @@ ReadMapTriggers:: ; 23ac
|
||||
ld a, l
|
||||
ld [wCurrMapTriggerHeaderPointer], a ; map trigger pointer
|
||||
ld a, h
|
||||
ld [wdc09], a
|
||||
ld [wCurrMapTriggerHeaderPointer + 1], a
|
||||
ld a, c
|
||||
and a
|
||||
ret z
|
||||
|
@ -127,7 +127,8 @@ Timer:: ; 3e93
|
||||
; 3ed7
|
||||
|
||||
Function3ed7:: ; 3ed7
|
||||
ld [$dc02], a
|
||||
; unreferenced
|
||||
ld [wdc02], a
|
||||
ld a, [hROMBank]
|
||||
push af
|
||||
ld a, BANK(Function114243)
|
||||
@ -138,6 +139,6 @@ Function3ed7:: ; 3ed7
|
||||
ld a, b
|
||||
rst Bankswitch
|
||||
|
||||
ld a, [$dc02]
|
||||
ld a, [wdc02]
|
||||
ret
|
||||
; 3eea
|
||||
|
@ -39,7 +39,7 @@ ItemEffects: ; e73c
|
||||
dw Thunderstone
|
||||
dw WaterStone
|
||||
dw Item19
|
||||
dw HpUp
|
||||
dw HPUp
|
||||
dw Protein
|
||||
dw Iron
|
||||
dw Carbos
|
||||
@ -75,7 +75,7 @@ ItemEffects: ; e73c
|
||||
dw GoodRod
|
||||
dw SilverLeaf
|
||||
dw SuperRod
|
||||
dw PpUp
|
||||
dw PPUp
|
||||
dw Ether
|
||||
dw MaxEther
|
||||
dw Elixer
|
||||
@ -1225,7 +1225,7 @@ SunStone: ; ee0f
|
||||
; ee3d
|
||||
|
||||
|
||||
HpUp:
|
||||
HPUp:
|
||||
Protein:
|
||||
Iron:
|
||||
Carbos:
|
||||
@ -2512,7 +2512,7 @@ Itemfinder: ; f5b8
|
||||
|
||||
|
||||
MaxElixer:
|
||||
PpUp:
|
||||
PPUp:
|
||||
Ether:
|
||||
MaxEther:
|
||||
Elixer:
|
||||
|
@ -171,10 +171,16 @@ elevfloor: MACRO
|
||||
map \3
|
||||
ENDM
|
||||
|
||||
itemfragment: MACRO
|
||||
itemball: MACRO
|
||||
if _NARG == 2
|
||||
db \1, \2
|
||||
else
|
||||
db \1, 1
|
||||
endc
|
||||
endm
|
||||
|
||||
stonetable: MACRO
|
||||
db \1, \2
|
||||
dw \3
|
||||
endm
|
||||
|
||||
|
@ -433,3 +433,8 @@ return_dig: macro
|
||||
db movement_return_dig ; $58
|
||||
db \1
|
||||
endm
|
||||
|
||||
enum movement_run_before_fall
|
||||
run_before_fall: macro
|
||||
db movement_run_before_fall ; $59
|
||||
endm
|
||||
|
@ -22,19 +22,19 @@ BattleTowerOutside_MapScriptHeader:
|
||||
clearevent EVENT_BATTLE_TOWER_OUTSIDE_SAILOR
|
||||
return
|
||||
|
||||
StandingYoungsterScript_0x9f85f:
|
||||
jumptextfaceplayer UnknownText_0x9f930
|
||||
BattleTowerOutsideYoungsterScript:
|
||||
jumptextfaceplayer BattleTowerOutsideYoungsterText
|
||||
|
||||
BuenaScript_0x9f862:
|
||||
jumptextfaceplayer UnknownText_0x9f9db
|
||||
BattleTowerOutsideBuenaScript:
|
||||
jumptextfaceplayer BattleTowerOutsideBuenaText
|
||||
|
||||
SailorScript_0x9f865:
|
||||
jumptextfaceplayer UnknownText_0x9fa8c
|
||||
BattleTowerOutsideSailorScript:
|
||||
jumptextfaceplayer BattleTowerOutsideSailorText
|
||||
|
||||
MapBattleTowerOutsideSignpost0Script:
|
||||
jumptext UnknownText_0x9fafc
|
||||
jumptext BattleTowerOutsideText_UltimateChallenge
|
||||
|
||||
UnknownText_0x9f86b:
|
||||
BattleTowerOutsideUnusedText1:
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge! My"
|
||||
|
||||
@ -42,7 +42,7 @@ UnknownText_0x9f86b:
|
||||
line "looking up at it."
|
||||
done
|
||||
|
||||
UnknownText_0x9f8b3:
|
||||
BattleTowerOutsideUnusedText2:
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge!"
|
||||
|
||||
@ -56,7 +56,7 @@ UnknownText_0x9f8b3:
|
||||
line "#MON."
|
||||
done
|
||||
|
||||
UnknownText_0x9f930:
|
||||
BattleTowerOutsideYoungsterText:
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge!"
|
||||
|
||||
@ -65,7 +65,7 @@ UnknownText_0x9f930:
|
||||
cont "in there!"
|
||||
done
|
||||
|
||||
UnknownText_0x9f97b:
|
||||
BattleTowerOutsideUnusedText3:
|
||||
text "What on earth do"
|
||||
line "they do here?"
|
||||
|
||||
@ -76,7 +76,7 @@ UnknownText_0x9f97b:
|
||||
line "#MON battles."
|
||||
done
|
||||
|
||||
UnknownText_0x9f9db:
|
||||
BattleTowerOutsideBuenaText:
|
||||
text "You can use only"
|
||||
line "three #MON."
|
||||
|
||||
@ -87,7 +87,7 @@ UnknownText_0x9f9db:
|
||||
line "battle…"
|
||||
done
|
||||
|
||||
UnknownText_0x9fa32:
|
||||
BattleTowerOutsideUnusedText4:
|
||||
text "Ehehehe…"
|
||||
line "I sneaked out of"
|
||||
cont "work to come here."
|
||||
@ -97,7 +97,7 @@ UnknownText_0x9fa32:
|
||||
cont "a LEADER!"
|
||||
done
|
||||
|
||||
UnknownText_0x9fa8c:
|
||||
BattleTowerOutsideSailorText:
|
||||
text "Hehehe, I snuck"
|
||||
line "out from work."
|
||||
|
||||
@ -108,23 +108,23 @@ UnknownText_0x9fa8c:
|
||||
line "all. That I must!"
|
||||
done
|
||||
|
||||
UnknownText_0x9faee:
|
||||
BattleTowerOutsideText_BattleTower:
|
||||
text "BATTLE TOWER"
|
||||
done
|
||||
|
||||
UnknownText_0x9fafc:
|
||||
BattleTowerOutsideText_UltimateChallenge:
|
||||
text "BATTLE TOWER"
|
||||
|
||||
para "Take the Ultimate"
|
||||
line "Trainer Challenge!"
|
||||
done
|
||||
|
||||
UnknownText_0x9fb2f:
|
||||
BattleTowerOutsideText_DoorsClosed:
|
||||
text "The BATTLE TOWER's"
|
||||
line "doors are closed…"
|
||||
done
|
||||
|
||||
UnknownText_0x9fb54:
|
||||
BattleTowerOutsideText_DoorsOpen:
|
||||
text "It's open!"
|
||||
done
|
||||
|
||||
@ -148,7 +148,7 @@ BattleTowerOutside_MapEventHeader:
|
||||
|
||||
.PersonEvents:
|
||||
db 4
|
||||
person_event SPRITE_STANDING_YOUNGSTER, 12, 6, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, StandingYoungsterScript_0x9f85f, -1
|
||||
person_event SPRITE_BUENA, 11, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, BuenaScript_0x9f862, -1
|
||||
person_event SPRITE_SAILOR, 18, 12, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, SailorScript_0x9f865, EVENT_BATTLE_TOWER_OUTSIDE_SAILOR
|
||||
person_event SPRITE_STANDING_YOUNGSTER, 12, 6, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, BattleTowerOutsideYoungsterScript, -1
|
||||
person_event SPRITE_BUENA, 11, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, BattleTowerOutsideBuenaScript, -1
|
||||
person_event SPRITE_SAILOR, 18, 12, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BattleTowerOutsideSailorScript, EVENT_BATTLE_TOWER_OUTSIDE_SAILOR
|
||||
person_event SPRITE_LASS, 24, 12, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, ObjectEvent, -1
|
||||
|
@ -12,206 +12,206 @@ GrampsScript_0x189538:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_GAVE_KURT_APRICORNS
|
||||
iftrue UnknownScript_0x1896ba
|
||||
iftrue .JustShowedSomething
|
||||
checkevent EVENT_GOT_THUNDERSTONE_FROM_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x1896c0
|
||||
iftrue .GotThunderstone
|
||||
checkevent EVENT_MET_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189553
|
||||
writetext UnknownText_0x1896ce
|
||||
iftrue .MetGrandpa
|
||||
writetext BillsGrandpaIntroText
|
||||
buttonsound
|
||||
setevent EVENT_MET_BILLS_GRANDPA
|
||||
UnknownScript_0x189553:
|
||||
.MetGrandpa:
|
||||
checkevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189697
|
||||
iftrue .ShowedPichu
|
||||
checkevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189680
|
||||
iftrue .ShowedGrowlitheVulpix
|
||||
checkevent EVENT_SHOWED_STARYU_TO_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189669
|
||||
iftrue .ShowedStaryu
|
||||
checkevent EVENT_SHOWED_ODDISH_TO_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189652
|
||||
iftrue .ShowedOddish
|
||||
checkevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x18963b
|
||||
writetext UnknownText_0x1898c0
|
||||
iftrue .ShowedLickitung
|
||||
writetext BillsGrandpaLickitungText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal LICKITUNG, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal LICKITUNG, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x18963b
|
||||
jump .ShowedLickitung
|
||||
|
||||
UnknownScript_0x189592:
|
||||
writetext UnknownText_0x1898ff
|
||||
.GotEverstone:
|
||||
writetext BillsGrandpaOddishText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal ODDISH, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal ODDISH, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_ODDISH_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x189652
|
||||
jump .ShowedOddish
|
||||
|
||||
UnknownScript_0x1895b3:
|
||||
writetext UnknownText_0x189953
|
||||
.GotLeafStone:
|
||||
writetext BillsGrandpaStaryuText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal STARYU, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal STARYU, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_STARYU_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x189669
|
||||
jump .ShowedStaryu
|
||||
|
||||
UnknownScript_0x1895d4:
|
||||
.GotWaterStone:
|
||||
checkver
|
||||
iftrue UnknownScript_0x1895f9
|
||||
writetext UnknownText_0x1899fe
|
||||
iftrue .Crystal11
|
||||
writetext BillsGrandpaGrowlitheText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal GROWLITHE, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal GROWLITHE, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x189680
|
||||
jump .ShowedGrowlitheVulpix
|
||||
|
||||
UnknownScript_0x1895f9:
|
||||
writetext UnknownText_0x189a57
|
||||
.Crystal11:
|
||||
writetext BillsGrandpaVulpixText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal VULPIX, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal VULPIX, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x189680
|
||||
jump .ShowedGrowlitheVulpix
|
||||
|
||||
UnknownScript_0x18961a:
|
||||
writetext UnknownText_0x189ab1
|
||||
.GotFireStone:
|
||||
writetext BillsGrandpaPichuText
|
||||
buttonsound
|
||||
writetext UnknownText_0x189732
|
||||
writetext BillsGrandpaAskToSeeMonText
|
||||
yesorno
|
||||
iffalse UnknownScript_0x1896aa
|
||||
scall UnknownScript_0x1896a5
|
||||
iffalse .SaidNo
|
||||
scall .ExcitedToSee
|
||||
special Special_BillsGrandfather
|
||||
iffalse UnknownScript_0x1896aa
|
||||
if_not_equal PICHU, UnknownScript_0x1896c6
|
||||
scall UnknownScript_0x1896b0
|
||||
iffalse .SaidNo
|
||||
if_not_equal PICHU, .WrongPokemon
|
||||
scall .CorrectPokemon
|
||||
setevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
||||
jump UnknownScript_0x189697
|
||||
jump .ShowedPichu
|
||||
|
||||
UnknownScript_0x18963b:
|
||||
.ShowedLickitung:
|
||||
checkevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x189592
|
||||
scall UnknownScript_0x1896b5
|
||||
iftrue .GotEverstone
|
||||
scall .ReceiveItem
|
||||
verbosegiveitem EVERSTONE
|
||||
iffalse UnknownScript_0x1896cc
|
||||
iffalse .BagFull
|
||||
setevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
||||
setevent EVENT_GAVE_KURT_APRICORNS
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x189652:
|
||||
.ShowedOddish:
|
||||
checkevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x1895b3
|
||||
scall UnknownScript_0x1896b5
|
||||
iftrue .GotLeafStone
|
||||
scall .ReceiveItem
|
||||
verbosegiveitem LEAF_STONE
|
||||
iffalse UnknownScript_0x1896cc
|
||||
iffalse .BagFull
|
||||
setevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
||||
setevent EVENT_GAVE_KURT_APRICORNS
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x189669:
|
||||
.ShowedStaryu:
|
||||
checkevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x1895d4
|
||||
scall UnknownScript_0x1896b5
|
||||
iftrue .GotWaterStone
|
||||
scall .ReceiveItem
|
||||
verbosegiveitem WATER_STONE
|
||||
iffalse UnknownScript_0x1896cc
|
||||
iffalse .BagFull
|
||||
setevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
||||
setevent EVENT_GAVE_KURT_APRICORNS
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x189680:
|
||||
.ShowedGrowlitheVulpix:
|
||||
checkevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
||||
iftrue UnknownScript_0x18961a
|
||||
scall UnknownScript_0x1896b5
|
||||
iftrue .GotFireStone
|
||||
scall .ReceiveItem
|
||||
verbosegiveitem FIRE_STONE
|
||||
iffalse UnknownScript_0x1896cc
|
||||
iffalse .BagFull
|
||||
setevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
||||
setevent EVENT_GAVE_KURT_APRICORNS
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x189697:
|
||||
scall UnknownScript_0x1896b5
|
||||
.ShowedPichu:
|
||||
scall .ReceiveItem
|
||||
verbosegiveitem THUNDERSTONE
|
||||
iffalse UnknownScript_0x1896cc
|
||||
iffalse .BagFull
|
||||
setevent EVENT_GOT_THUNDERSTONE_FROM_BILLS_GRANDPA
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1896a5:
|
||||
writetext UnknownText_0x189760
|
||||
.ExcitedToSee:
|
||||
writetext BillsGrandpaExcitedToSeeText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
UnknownScript_0x1896aa:
|
||||
writetext UnknownText_0x189784
|
||||
.SaidNo:
|
||||
writetext BillsGrandpaYouDontHaveItTextText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1896b0:
|
||||
writetext UnknownText_0x1897a6
|
||||
.CorrectPokemon:
|
||||
writetext BillsGrandpaShownPokemonText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
UnknownScript_0x1896b5:
|
||||
writetext UnknownText_0x1897e1
|
||||
.ReceiveItem:
|
||||
writetext BillsGrandpaTokenOfAppreciationText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
UnknownScript_0x1896ba:
|
||||
writetext UnknownText_0x18980e
|
||||
.JustShowedSomething:
|
||||
writetext BillsGrandpaComeAgainText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1896c0:
|
||||
writetext UnknownText_0x18982a
|
||||
.GotThunderstone:
|
||||
writetext BillsGrandpaShownAllThePokemonText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1896c6:
|
||||
writetext UnknownText_0x189891
|
||||
.WrongPokemon:
|
||||
writetext BillsGrandpaWrongPokemonText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1896cc:
|
||||
.BagFull:
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownText_0x1896ce:
|
||||
BillsGrandpaIntroText:
|
||||
text "Hm? You know BILL?"
|
||||
line "He's my grandson."
|
||||
|
||||
@ -222,23 +222,23 @@ UnknownText_0x1896ce:
|
||||
line "house-sitting."
|
||||
done
|
||||
|
||||
UnknownText_0x189732:
|
||||
BillsGrandpaAskToSeeMonText:
|
||||
text "If you have that"
|
||||
line "#MON, may I see"
|
||||
cont "it, please?"
|
||||
done
|
||||
|
||||
UnknownText_0x189760:
|
||||
BillsGrandpaExcitedToSeeText:
|
||||
text "You will show me?"
|
||||
line "How good of you!"
|
||||
done
|
||||
|
||||
UnknownText_0x189784:
|
||||
BillsGrandpaYouDontHaveItTextText:
|
||||
text "You don't have it?"
|
||||
line "That's too bad…"
|
||||
done
|
||||
|
||||
UnknownText_0x1897a6:
|
||||
BillsGrandpaShownPokemonText:
|
||||
text "Ah, so that is"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
@ -249,19 +249,19 @@ UnknownText_0x1897a6:
|
||||
cont "you."
|
||||
done
|
||||
|
||||
UnknownText_0x1897e1:
|
||||
BillsGrandpaTokenOfAppreciationText:
|
||||
text "Thanks!"
|
||||
|
||||
para "This is a token of"
|
||||
line "my appreciation."
|
||||
done
|
||||
|
||||
UnknownText_0x18980e:
|
||||
BillsGrandpaComeAgainText:
|
||||
text "Come visit again"
|
||||
line "sometime."
|
||||
done
|
||||
|
||||
UnknownText_0x18982a:
|
||||
BillsGrandpaShownAllThePokemonText:
|
||||
text "Thanks for showing"
|
||||
line "me so many cute"
|
||||
cont "#MON."
|
||||
@ -273,7 +273,7 @@ UnknownText_0x18982a:
|
||||
line "long life."
|
||||
done
|
||||
|
||||
UnknownText_0x189891:
|
||||
BillsGrandpaWrongPokemonText:
|
||||
text "Hm?"
|
||||
|
||||
para "That's not the"
|
||||
@ -281,7 +281,7 @@ UnknownText_0x189891:
|
||||
cont "told about."
|
||||
done
|
||||
|
||||
UnknownText_0x1898c0:
|
||||
BillsGrandpaLickitungText:
|
||||
text "My grandson BILL"
|
||||
line "told me about a"
|
||||
|
||||
@ -289,7 +289,7 @@ UnknownText_0x1898c0:
|
||||
line "long tongue."
|
||||
done
|
||||
|
||||
UnknownText_0x1898ff:
|
||||
BillsGrandpaOddishText:
|
||||
text "Ah, my grandson"
|
||||
line "mentioned a round,"
|
||||
|
||||
@ -298,7 +298,7 @@ UnknownText_0x1898ff:
|
||||
cont "on its head."
|
||||
done
|
||||
|
||||
UnknownText_0x189953:
|
||||
BillsGrandpaStaryuText:
|
||||
text "Do you know of a"
|
||||
line "sea #MON that"
|
||||
|
||||
@ -316,7 +316,7 @@ UnknownText_0x189953:
|
||||
line "like to see it."
|
||||
done
|
||||
|
||||
UnknownText_0x1899fe:
|
||||
BillsGrandpaGrowlitheText:
|
||||
text "BILL told me about"
|
||||
line "a #MON that is"
|
||||
|
||||
@ -327,7 +327,7 @@ UnknownText_0x1899fe:
|
||||
line "ROAR well."
|
||||
done
|
||||
|
||||
UnknownText_0x189a57:
|
||||
BillsGrandpaVulpixText:
|
||||
text "I heard about a"
|
||||
line "cute #MON that"
|
||||
cont "has six tails."
|
||||
@ -337,7 +337,7 @@ UnknownText_0x189a57:
|
||||
cont "like that."
|
||||
done
|
||||
|
||||
UnknownText_0x189ab1:
|
||||
BillsGrandpaPichuText:
|
||||
text "Do you know that"
|
||||
line "hugely popular"
|
||||
cont "#MON?"
|
||||
|
@ -34,68 +34,68 @@ BlackthornCity_MapScriptHeader:
|
||||
appear BLACKTHORNCITY_YOUNGSTER2
|
||||
return
|
||||
|
||||
SuperNerdScript_0x1a46e8:
|
||||
BlackthornSuperNerdScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_BEAT_CLAIR
|
||||
iftrue UnknownScript_0x1a4702
|
||||
iftrue .BeatClair
|
||||
checkevent EVENT_CLEARED_RADIO_TOWER
|
||||
iftrue UnknownScript_0x1a46fc
|
||||
writetext UnknownText_0x1a477a
|
||||
iftrue .ClearedRadioTower
|
||||
writetext Text_ClairIsOut
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1a46fc:
|
||||
writetext UnknownText_0x1a47f3
|
||||
.ClearedRadioTower:
|
||||
writetext Text_ClairIsIn
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1a4702:
|
||||
writetext UnknownText_0x1a4865
|
||||
.BeatClair:
|
||||
writetext Text_ClairIsBeaten
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
GrampsScript_0x1a4708:
|
||||
jumptextfaceplayer UnknownText_0x1a48c3
|
||||
BlackthornGramps1Script:
|
||||
jumptextfaceplayer BlackthornGrampsRefusesEntryText
|
||||
|
||||
GrampsScript_0x1a470b:
|
||||
jumptextfaceplayer UnknownText_0x1a48fb
|
||||
BlackthornGramps2Script:
|
||||
jumptextfaceplayer BlackthornGrampsGrantsEntryText
|
||||
|
||||
BlackBeltScript_0x1a470e:
|
||||
BlackthornBlackBeltScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_CLEARED_RADIO_TOWER
|
||||
iftrue UnknownScript_0x1a471c
|
||||
writetext UnknownText_0x1a494a
|
||||
iftrue .ClearedRadioTower
|
||||
writetext BlackBeltText_WeirdRadio
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x1a471c:
|
||||
writetext UnknownText_0x1a4983
|
||||
.ClearedRadioTower:
|
||||
writetext BlackBeltText_VoicesInMyHead
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
CooltrainerFScript_0x1a4722:
|
||||
jumptextfaceplayer UnknownText_0x1a49bd
|
||||
BlackthornCooltrainerF1Script:
|
||||
jumptextfaceplayer BlackthornCooltrainerF1Text
|
||||
|
||||
YoungsterScript_0x1a4725:
|
||||
jumptextfaceplayer UnknownText_0x1a49f1
|
||||
BlackthornYoungsterScript:
|
||||
jumptextfaceplayer BlackthornYoungsterText
|
||||
|
||||
CooltrainerFScript_0x1a4728:
|
||||
jumptextfaceplayer UnknownText_0x1a4b1e
|
||||
BlackthornCooltrainerF2Script:
|
||||
jumptextfaceplayer BlackthornCooltrainerF2Text
|
||||
|
||||
SantosScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
||||
iftrue SantosSaturdayScript
|
||||
iftrue .Saturday
|
||||
checkcode VAR_WEEKDAY
|
||||
if_not_equal SATURDAY, SantosNotSaturdayScript
|
||||
if_not_equal SATURDAY, .NotSaturday
|
||||
checkevent EVENT_MET_SANTOS_OF_SATURDAY
|
||||
iftrue .MetSantos
|
||||
writetext MeetSantosText
|
||||
@ -105,21 +105,21 @@ SantosScript:
|
||||
writetext SantosGivesGiftText
|
||||
buttonsound
|
||||
verbosegiveitem SPELL_TAG
|
||||
iffalse SantosDoneScript
|
||||
iffalse .Done
|
||||
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
||||
writetext SantosGaveGiftText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
SantosSaturdayScript:
|
||||
.Saturday
|
||||
writetext SantosSaturdayText
|
||||
waitbutton
|
||||
SantosDoneScript:
|
||||
.Done
|
||||
closetext
|
||||
end
|
||||
|
||||
SantosNotSaturdayScript:
|
||||
.NotSaturday
|
||||
writetext SantosNotSaturdayText
|
||||
waitbutton
|
||||
closetext
|
||||
@ -146,7 +146,7 @@ BlackthornCityPokeCenterSign:
|
||||
BlackthornCityMartSign:
|
||||
jumpstd martsign
|
||||
|
||||
UnknownText_0x1a477a:
|
||||
Text_ClairIsOut:
|
||||
text "I am sorry."
|
||||
|
||||
para "CLAIR, our GYM"
|
||||
@ -160,7 +160,7 @@ UnknownText_0x1a477a:
|
||||
cont "will return."
|
||||
done
|
||||
|
||||
UnknownText_0x1a47f3:
|
||||
Text_ClairIsIn:
|
||||
text "CLAIR, our GYM"
|
||||
line "LEADER, is waiting"
|
||||
cont "for you."
|
||||
@ -172,7 +172,7 @@ UnknownText_0x1a47f3:
|
||||
line "trainer to win."
|
||||
done
|
||||
|
||||
UnknownText_0x1a4865:
|
||||
Text_ClairIsBeaten:
|
||||
text "You defeated"
|
||||
line "CLAIR?"
|
||||
|
||||
@ -185,7 +185,7 @@ UnknownText_0x1a4865:
|
||||
line "LANCE."
|
||||
done
|
||||
|
||||
UnknownText_0x1a48c3:
|
||||
BlackthornGrampsRefusesEntryText:
|
||||
text "No. Only chosen"
|
||||
line "trainers may train"
|
||||
|
||||
@ -193,7 +193,7 @@ UnknownText_0x1a48c3:
|
||||
line "Please leave."
|
||||
done
|
||||
|
||||
UnknownText_0x1a48fb:
|
||||
BlackthornGrampsGrantsEntryText:
|
||||
text "If CLAIR allows"
|
||||
line "it, her grand-"
|
||||
cont "father--our MASTER"
|
||||
@ -202,13 +202,13 @@ UnknownText_0x1a48fb:
|
||||
para "You may enter."
|
||||
done
|
||||
|
||||
UnknownText_0x1a494a:
|
||||
BlackBeltText_WeirdRadio:
|
||||
text "My radio's busted?"
|
||||
line "Lately, I only get"
|
||||
cont "this weird signal."
|
||||
done
|
||||
|
||||
UnknownText_0x1a4983:
|
||||
BlackBeltText_VoicesInMyHead:
|
||||
text "Arooo! Voices in"
|
||||
line "my head!"
|
||||
|
||||
@ -216,13 +216,13 @@ UnknownText_0x1a4983:
|
||||
line "to my radio!"
|
||||
done
|
||||
|
||||
UnknownText_0x1a49bd:
|
||||
BlackthornCooltrainerF1Text:
|
||||
text "Are you going to"
|
||||
line "make your #MON"
|
||||
cont "forget some moves?"
|
||||
done
|
||||
|
||||
UnknownText_0x1a49f1:
|
||||
BlackthornYoungsterText:
|
||||
text "Dragon masters all"
|
||||
line "come from the city"
|
||||
cont "of BLACKTHORN."
|
||||
@ -268,7 +268,7 @@ SantosNotSaturdayText:
|
||||
line "not Saturday…"
|
||||
done
|
||||
|
||||
UnknownText_0x1a4b1e:
|
||||
BlackthornCooltrainerF2Text:
|
||||
text "Wow, you came"
|
||||
line "through the ICE"
|
||||
cont "PATH?"
|
||||
@ -344,12 +344,12 @@ BlackthornCity_MapEventHeader:
|
||||
|
||||
.PersonEvents:
|
||||
db 9
|
||||
person_event SPRITE_SUPER_NERD, 12, 18, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x1a46e8, EVENT_BLACKTHORN_CITY_SUPER_NERD_BLOCKS_GYM
|
||||
person_event SPRITE_SUPER_NERD, 12, 19, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x1a46e8, EVENT_BLACKTHORN_CITY_SUPER_NERD_DOES_NOT_BLOCK_GYM
|
||||
person_event SPRITE_GRAMPS, 2, 20, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GrampsScript_0x1a4708, EVENT_BLACKTHORN_CITY_GRAMPS_BLOCKS_DRAGONS_DEN
|
||||
person_event SPRITE_GRAMPS, 2, 21, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, GrampsScript_0x1a470b, EVENT_BLACKTHORN_CITY_GRAMPS_NOT_BLOCKING_DRAGONS_DEN
|
||||
person_event SPRITE_BLACK_BELT, 31, 24, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, BlackBeltScript_0x1a470e, -1
|
||||
person_event SPRITE_COOLTRAINER_F, 25, 9, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x1a4722, -1
|
||||
person_event SPRITE_YOUNGSTER, 15, 13, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x1a4725, -1
|
||||
person_event SPRITE_SUPER_NERD, 12, 18, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, BlackthornSuperNerdScript, EVENT_BLACKTHORN_CITY_SUPER_NERD_BLOCKS_GYM
|
||||
person_event SPRITE_SUPER_NERD, 12, 19, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, BlackthornSuperNerdScript, EVENT_BLACKTHORN_CITY_SUPER_NERD_DOES_NOT_BLOCK_GYM
|
||||
person_event SPRITE_GRAMPS, 2, 20, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornGramps1Script, EVENT_BLACKTHORN_CITY_GRAMPS_BLOCKS_DRAGONS_DEN
|
||||
person_event SPRITE_GRAMPS, 2, 21, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornGramps2Script, EVENT_BLACKTHORN_CITY_GRAMPS_NOT_BLOCKING_DRAGONS_DEN
|
||||
person_event SPRITE_BLACK_BELT, 31, 24, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, BlackthornBlackBeltScript, -1
|
||||
person_event SPRITE_COOLTRAINER_F, 25, 9, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, BlackthornCooltrainerF1Script, -1
|
||||
person_event SPRITE_YOUNGSTER, 15, 13, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, PERSONTYPE_SCRIPT, 0, BlackthornYoungsterScript, -1
|
||||
person_event SPRITE_YOUNGSTER, 20, 22, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, SantosScript, EVENT_BLACKTHORN_CITY_SANTOS_OF_SATURDAY
|
||||
person_event SPRITE_COOLTRAINER_F, 19, 35, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, CooltrainerFScript_0x1a4728, -1
|
||||
person_event SPRITE_COOLTRAINER_F, 19, 35, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, BlackthornCooltrainerF2Script, -1
|
||||
|
@ -30,23 +30,23 @@ BlackthornGym1F_MapScriptHeader:
|
||||
.skip3
|
||||
return
|
||||
|
||||
ClairScript_0x194e24:
|
||||
BlackthornGymClairScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkflag ENGINE_RISINGBADGE
|
||||
iftrue UnknownScript_0x194e69
|
||||
iftrue .AlreadyGotBadge
|
||||
checkevent EVENT_BEAT_CLAIR
|
||||
iftrue .FightDone
|
||||
writetext UnknownText_0x194efa
|
||||
writetext ClairIntroText
|
||||
waitbutton
|
||||
closetext
|
||||
winlosstext UnknownText_0x194fd6, 0
|
||||
winlosstext ClairWinText, 0
|
||||
loadtrainer CLAIR, 1
|
||||
startbattle
|
||||
returnafterbattle
|
||||
setevent EVENT_BEAT_CLAIR
|
||||
opentext
|
||||
writetext UnknownText_0x19500e
|
||||
writetext ClairText_GoToDragonsDen
|
||||
waitbutton
|
||||
closetext
|
||||
setevent EVENT_BEAT_COOLTRAINERM_PAUL
|
||||
@ -58,37 +58,38 @@ ClairScript_0x194e24:
|
||||
setevent EVENT_BLACKTHORN_CITY_GRAMPS_BLOCKS_DRAGONS_DEN
|
||||
clearevent EVENT_BLACKTHORN_CITY_GRAMPS_NOT_BLOCKING_DRAGONS_DEN
|
||||
end
|
||||
|
||||
.FightDone
|
||||
writetext UnknownText_0x195162
|
||||
writetext ClairText_TooMuchToExpect
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x194e69:
|
||||
.AlreadyGotBadge
|
||||
checkevent EVENT_GOT_TM24_DRAGONBREATH
|
||||
iftrue UnknownScript_0x194e94
|
||||
writetext UnknownText_0x195196
|
||||
iftrue .GotTM24
|
||||
writetext BlackthornGymClairText_YouKeptMeWaiting
|
||||
buttonsound
|
||||
giveitem TM_DRAGONBREATH
|
||||
iffalse UnknownScript_0x194e8e
|
||||
iffalse .BagFull
|
||||
itemtotext TM_DRAGONBREATH, $0
|
||||
writetext UnknownText_0x1951bf
|
||||
writetext BlackthornGymText_ReceivedTM24
|
||||
playsound SFX_ITEM
|
||||
waitsfx
|
||||
itemnotify
|
||||
setevent EVENT_GOT_TM24_DRAGONBREATH
|
||||
writetext UnknownText_0x1951d1
|
||||
writetext BlackthornGymClairText_DescribeTM24
|
||||
buttonsound
|
||||
jump UnknownScript_0x194e94
|
||||
jump .GotTM24
|
||||
|
||||
UnknownScript_0x194e8e:
|
||||
writetext UnknownText_0x19524f
|
||||
.BagFull:
|
||||
writetext BlackthornGymClairText_BagFull
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x194e94:
|
||||
writetext UnknownText_0x195272
|
||||
.GotTM24:
|
||||
writetext BlackthornGymClairText_League
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -99,7 +100,7 @@ TrainerCooltrainermPaul:
|
||||
CooltrainermPaulScript:
|
||||
end_if_just_battled
|
||||
opentext
|
||||
writetext UnknownText_0x1953f1
|
||||
writetext CooltrainermPaulAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -110,7 +111,7 @@ TrainerCooltrainermMike:
|
||||
CooltrainermMikeScript:
|
||||
end_if_just_battled
|
||||
opentext
|
||||
writetext UnknownText_0x195467
|
||||
writetext CooltrainermMikeAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -121,7 +122,7 @@ TrainerCooltrainerfLola:
|
||||
CooltrainerfLolaScript:
|
||||
end_if_just_battled
|
||||
opentext
|
||||
writetext UnknownText_0x195516
|
||||
writetext CooltrainerfLolaAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -150,7 +151,7 @@ BlackthornGymStatue:
|
||||
trainertotext CLAIR, 1, $1
|
||||
jumpstd gymstatue2
|
||||
|
||||
UnknownText_0x194efa:
|
||||
ClairIntroText:
|
||||
text "I am CLAIR."
|
||||
|
||||
para "The world's best"
|
||||
@ -175,7 +176,7 @@ UnknownText_0x194efa:
|
||||
line "opponent!"
|
||||
done
|
||||
|
||||
UnknownText_0x194fd6:
|
||||
ClairWinText:
|
||||
text "I lost?"
|
||||
|
||||
para "I don't believe"
|
||||
@ -183,7 +184,7 @@ UnknownText_0x194fd6:
|
||||
cont "some mistake…"
|
||||
done
|
||||
|
||||
UnknownText_0x19500e:
|
||||
ClairText_GoToDragonsDen:
|
||||
text "I won't admit"
|
||||
line "this."
|
||||
|
||||
@ -218,26 +219,26 @@ UnknownText_0x19500e:
|
||||
cont "BADGE!"
|
||||
done
|
||||
|
||||
UnknownText_0x195162:
|
||||
ClairText_TooMuchToExpect:
|
||||
text "What's the matter?"
|
||||
|
||||
para "Is it too much to"
|
||||
line "expect of you?"
|
||||
done
|
||||
|
||||
UnknownText_0x195196:
|
||||
BlackthornGymClairText_YouKeptMeWaiting:
|
||||
text "You've kept me"
|
||||
line "waiting!"
|
||||
|
||||
para "Here! Take this!"
|
||||
done
|
||||
|
||||
UnknownText_0x1951bf:
|
||||
BlackthornGymText_ReceivedTM24:
|
||||
text "<PLAYER> received"
|
||||
line "TM24."
|
||||
done
|
||||
|
||||
UnknownText_0x1951d1:
|
||||
BlackthornGymClairText_DescribeTM24:
|
||||
text "That contains"
|
||||
line "DRAGONBREATH."
|
||||
|
||||
@ -250,12 +251,12 @@ UnknownText_0x1951d1:
|
||||
cont "to take it."
|
||||
done
|
||||
|
||||
UnknownText_0x19524f:
|
||||
BlackthornGymClairText_BagFull:
|
||||
text "What is this? You"
|
||||
line "don't have room?"
|
||||
done
|
||||
|
||||
UnknownText_0x195272:
|
||||
BlackthornGymClairText_League:
|
||||
text "What's the matter?"
|
||||
|
||||
para "Aren't you headed"
|
||||
@ -299,7 +300,7 @@ CooltrainermPaulBeatenText:
|
||||
line "lost?"
|
||||
done
|
||||
|
||||
UnknownText_0x1953f1:
|
||||
CooltrainermPaulAfterText:
|
||||
text "LANCE told you"
|
||||
line "that he'd like to"
|
||||
|
||||
@ -317,7 +318,7 @@ CooltrainermMikeBeatenText:
|
||||
text "That's odd."
|
||||
done
|
||||
|
||||
UnknownText_0x195467:
|
||||
CooltrainermMikeAfterText:
|
||||
text "I know my short-"
|
||||
line "comings now."
|
||||
|
||||
@ -343,7 +344,7 @@ CooltrainerfLolaBeatenText:
|
||||
text "Way to go!"
|
||||
done
|
||||
|
||||
UnknownText_0x195516:
|
||||
CooltrainerfLolaAfterText:
|
||||
text "Dragons are weak"
|
||||
line "against dragon-"
|
||||
cont "type moves."
|
||||
@ -411,7 +412,7 @@ BlackthornGym1F_MapEventHeader:
|
||||
|
||||
.PersonEvents:
|
||||
db 5
|
||||
person_event SPRITE_CLAIR, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, ClairScript_0x194e24, -1
|
||||
person_event SPRITE_CLAIR, 3, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, BlackthornGymClairScript, -1
|
||||
person_event SPRITE_COOLTRAINER_M, 6, 6, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 3, TrainerCooltrainermMike, -1
|
||||
person_event SPRITE_COOLTRAINER_M, 14, 1, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 3, TrainerCooltrainermPaul, -1
|
||||
person_event SPRITE_COOLTRAINER_F, 2, 9, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 1, TrainerCooltrainerfLola, -1
|
||||
|
@ -27,16 +27,10 @@ BlackthornGym2F_MapScriptHeader:
|
||||
db 0, 0 ; filler
|
||||
|
||||
.BoulderTable
|
||||
db 5, 4 ; warp, person
|
||||
dw .Disappear4
|
||||
|
||||
db 3, 5 ; warp, person
|
||||
dw .Disappear5
|
||||
|
||||
db 4, 6 ; warp, person
|
||||
dw .Disappear6
|
||||
|
||||
db $ff ; end
|
||||
stonetable 5, BLACKTHORNGYM2F_BOULDER1, .Disappear4
|
||||
stonetable 3, BLACKTHORNGYM2F_BOULDER2, .Disappear5
|
||||
stonetable 4, BLACKTHORNGYM2F_BOULDER3, .Disappear6
|
||||
db -1 ; end
|
||||
|
||||
.Disappear4
|
||||
disappear BLACKTHORNGYM2F_BOULDER1
|
||||
@ -74,7 +68,7 @@ TrainerCooltrainermCody:
|
||||
CooltrainermCodyScript:
|
||||
end_if_just_battled
|
||||
opentext
|
||||
writetext UnknownText_0x1957d5
|
||||
writetext CooltrainermCodyAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -85,7 +79,7 @@ TrainerCooltrainerfFran:
|
||||
CooltrainerfFranScript:
|
||||
end_if_just_battled
|
||||
opentext
|
||||
writetext UnknownText_0x195883
|
||||
writetext CooltrainerfFranAfterText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -101,7 +95,7 @@ CooltrainermCodyBeatenText:
|
||||
line "had a dragon!"
|
||||
done
|
||||
|
||||
UnknownText_0x1957d5:
|
||||
CooltrainermCodyAfterText:
|
||||
text "Members of our"
|
||||
line "dragon-user clan"
|
||||
|
||||
@ -125,7 +119,7 @@ CooltrainerfFranBeatenText:
|
||||
text "Awww… I lost…"
|
||||
done
|
||||
|
||||
UnknownText_0x195883:
|
||||
CooltrainerfFranAfterText:
|
||||
text "Uh-oh… CLAIR is"
|
||||
line "going to be mad…"
|
||||
done
|
||||
|
@ -143,8 +143,8 @@ MapBurnedTower1FSignpostItem1:
|
||||
dwb EVENT_BURNED_TOWER_1F_HIDDEN_ULTRA_BALL, ULTRA_BALL
|
||||
|
||||
|
||||
ItemFragment_0x185ccb:
|
||||
itemfragment HP_UP
|
||||
BurnedTower1FHPUp:
|
||||
itemball HP_UP
|
||||
|
||||
MovementData_0x185ccd:
|
||||
step_left
|
||||
@ -155,7 +155,7 @@ MovementData_0x185ccf:
|
||||
step_end
|
||||
|
||||
MovementData_0x185cd1:
|
||||
db $59 ; movement
|
||||
run_before_fall
|
||||
step_end
|
||||
|
||||
MovementData_0x185cd3:
|
||||
@ -292,18 +292,18 @@ BurnedTower1F_MapEventHeader:
|
||||
db 14
|
||||
warp_def $f, $9, 13, ECRUTEAK_CITY
|
||||
warp_def $f, $a, 13, ECRUTEAK_CITY
|
||||
warp_def $9, $a, 1, BURNED_TOWER_B1F
|
||||
warp_def $5, $5, 1, BURNED_TOWER_B1F
|
||||
warp_def $6, $5, 1, BURNED_TOWER_B1F
|
||||
warp_def $6, $4, 1, BURNED_TOWER_B1F
|
||||
warp_def $4, $f, 2, BURNED_TOWER_B1F
|
||||
warp_def $5, $f, 2, BURNED_TOWER_B1F
|
||||
warp_def $7, $a, 3, BURNED_TOWER_B1F
|
||||
warp_def $e, $5, 4, BURNED_TOWER_B1F
|
||||
warp_def $e, $4, 4, BURNED_TOWER_B1F
|
||||
warp_def $e, $e, 5, BURNED_TOWER_B1F
|
||||
warp_def $e, $f, 5, BURNED_TOWER_B1F
|
||||
warp_def $f, $7, 6, BURNED_TOWER_B1F
|
||||
warp_def $9, $a, 1, BURNED_TOWER_B1F
|
||||
warp_def $5, $5, 1, BURNED_TOWER_B1F
|
||||
warp_def $6, $5, 1, BURNED_TOWER_B1F
|
||||
warp_def $6, $4, 1, BURNED_TOWER_B1F
|
||||
warp_def $4, $f, 2, BURNED_TOWER_B1F
|
||||
warp_def $5, $f, 2, BURNED_TOWER_B1F
|
||||
warp_def $7, $a, 3, BURNED_TOWER_B1F
|
||||
warp_def $e, $5, 4, BURNED_TOWER_B1F
|
||||
warp_def $e, $4, 4, BURNED_TOWER_B1F
|
||||
warp_def $e, $e, 5, BURNED_TOWER_B1F
|
||||
warp_def $e, $f, 5, BURNED_TOWER_B1F
|
||||
warp_def $f, $7, 6, BURNED_TOWER_B1F
|
||||
|
||||
.XYTriggers:
|
||||
db 1
|
||||
@ -320,4 +320,4 @@ BurnedTower1F_MapEventHeader:
|
||||
person_event SPRITE_SUPER_NERD, 12, 12, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x185cbc, EVENT_BURNED_TOWER_1F_EUSINE
|
||||
person_event SPRITE_SILVER, 9, 8, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, PERSONTYPE_TRAINER, 3, ObjectEvent, EVENT_RIVAL_BURNED_TOWER
|
||||
person_event SPRITE_MORTY, 14, 14, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_BROWN, PERSONTYPE_SCRIPT, 0, MortyScript_0x185cbf, EVENT_BURNED_TOWER_MORTY
|
||||
person_event SPRITE_POKE_BALL, 2, 14, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x185ccb, EVENT_BURNED_TOWER_1F_HP_UP
|
||||
person_event SPRITE_POKE_BALL, 2, 14, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, BurnedTower1FHPUp, EVENT_BURNED_TOWER_1F_HP_UP
|
||||
|
@ -123,8 +123,8 @@ UnknownScript_0x18622a:
|
||||
waitsfx
|
||||
end
|
||||
|
||||
ItemFragment_0x186231:
|
||||
itemfragment TM_ENDURE
|
||||
BurnedTowerB1FTMEndure:
|
||||
itemball TM_ENDURE
|
||||
|
||||
BurnedTowerB1FBoulder:
|
||||
jumpstd strengthboulder
|
||||
@ -269,5 +269,5 @@ BurnedTowerB1F_MapEventHeader:
|
||||
person_event SPRITE_RAIKOU, 3, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_SILVER, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_BURNED_TOWER_B1F_BEASTS_2
|
||||
person_event SPRITE_ENTEI, 3, 12, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_SILVER, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_BURNED_TOWER_B1F_BEASTS_2
|
||||
person_event SPRITE_SUICUNE, 4, 10, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_SILVER, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_BURNED_TOWER_B1F_BEASTS_2
|
||||
person_event SPRITE_POKE_BALL, 4, 16, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x186231, EVENT_BURNED_TOWER_B1F_TM_ENDURE
|
||||
person_event SPRITE_POKE_BALL, 4, 16, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, BurnedTowerB1FTMEndure, EVENT_BURNED_TOWER_B1F_TM_ENDURE
|
||||
person_event SPRITE_SUPER_NERD, 12, 10, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, SuperNerdScript_0x186212, EVENT_EUSINE_IN_BURNED_TOWER
|
||||
|
@ -42,30 +42,30 @@ CherrygroveCityGuideGent:
|
||||
closetext
|
||||
playmusic MUSIC_SHOW_ME_AROUND
|
||||
follow CHERRYGROVECITY_GRAMPS, PLAYER
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c195
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement1
|
||||
opentext
|
||||
writetext GuideGentPokeCenterText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c19b
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement2
|
||||
spriteface PLAYER, UP
|
||||
opentext
|
||||
writetext GuideGentMartText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c1a3
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement3
|
||||
spriteface PLAYER, UP
|
||||
opentext
|
||||
writetext GuideGentRoute30Text
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c1ac
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement4
|
||||
spriteface PLAYER, LEFT
|
||||
opentext
|
||||
writetext GuideGentSeaText
|
||||
waitbutton
|
||||
closetext
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c1b6
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement5
|
||||
spriteface PLAYER, UP
|
||||
pause 60
|
||||
spriteface CHERRYGROVECITY_GRAMPS, LEFT
|
||||
@ -74,7 +74,7 @@ CherrygroveCityGuideGent:
|
||||
writetext GuideGentGiftText
|
||||
buttonsound
|
||||
stringtotext .mapcardname, $1
|
||||
scall .UnknownScript_0x19c097
|
||||
scall .JumpstdReceiveItem
|
||||
setflag ENGINE_MAP_CARD
|
||||
writetext GotMapCardText
|
||||
buttonsound
|
||||
@ -84,14 +84,14 @@ CherrygroveCityGuideGent:
|
||||
stopfollow
|
||||
special RestartMapMusic
|
||||
spriteface PLAYER, UP
|
||||
applymovement CHERRYGROVECITY_GRAMPS, MovementData_0x19c1cb
|
||||
applymovement CHERRYGROVECITY_GRAMPS, GuideGentMovement6
|
||||
playsound SFX_ENTER_DOOR
|
||||
disappear CHERRYGROVECITY_GRAMPS
|
||||
clearevent EVENT_GUIDE_GENT_VISIBLE_IN_CHERRYGROVE
|
||||
waitsfx
|
||||
end
|
||||
|
||||
.UnknownScript_0x19c097
|
||||
.JumpstdReceiveItem
|
||||
jumpstd receiveitem
|
||||
end
|
||||
|
||||
@ -104,10 +104,9 @@ CherrygroveCityGuideGent:
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x19c0aa:
|
||||
CherrygroveSilverTriggerSouth:
|
||||
moveperson CHERRYGROVECITY_SILVER, $27, $7
|
||||
|
||||
UnknownScript_0x19c0ae:
|
||||
CherrygroveSilverTriggerNorth:
|
||||
spriteface PLAYER, RIGHT
|
||||
showemote EMOTE_SHOCK, PLAYER, 15
|
||||
special Special_FadeOutMusic
|
||||
@ -121,56 +120,56 @@ UnknownScript_0x19c0ae:
|
||||
waitbutton
|
||||
closetext
|
||||
checkevent EVENT_GOT_TOTODILE_FROM_ELM
|
||||
iftrue UnknownScript_0x19c0ee
|
||||
iftrue .Totodile
|
||||
checkevent EVENT_GOT_CHIKORITA_FROM_ELM
|
||||
iftrue UnknownScript_0x19c104
|
||||
winlosstext UnknownText_0x19c57f, UnknownText_0x19c5e6
|
||||
iftrue .Chikorita
|
||||
winlosstext SilverCherrygroveWinText, SilverCherrygroveLossText
|
||||
setlasttalked CHERRYGROVECITY_SILVER
|
||||
loadtrainer RIVAL1, RIVAL1_3
|
||||
writecode VAR_BATTLETYPE, BATTLETYPE_CANLOSE
|
||||
startbattle
|
||||
reloadmapmusic
|
||||
reloadmap
|
||||
iftrue UnknownScript_0x19c11a
|
||||
jump UnknownScript_0x19c126
|
||||
iftrue .AfterVictorious
|
||||
jump .AfterYourDefeat
|
||||
|
||||
UnknownScript_0x19c0ee:
|
||||
winlosstext UnknownText_0x19c57f, UnknownText_0x19c5e6
|
||||
.Totodile:
|
||||
winlosstext SilverCherrygroveWinText, SilverCherrygroveLossText
|
||||
setlasttalked CHERRYGROVECITY_SILVER
|
||||
loadtrainer RIVAL1, RIVAL1_1
|
||||
writecode VAR_BATTLETYPE, BATTLETYPE_CANLOSE
|
||||
startbattle
|
||||
reloadmapmusic
|
||||
reloadmap
|
||||
iftrue UnknownScript_0x19c11a
|
||||
jump UnknownScript_0x19c126
|
||||
iftrue .AfterVictorious
|
||||
jump .AfterYourDefeat
|
||||
|
||||
UnknownScript_0x19c104:
|
||||
winlosstext UnknownText_0x19c57f, UnknownText_0x19c5e6
|
||||
.Chikorita:
|
||||
winlosstext SilverCherrygroveWinText, SilverCherrygroveLossText
|
||||
setlasttalked CHERRYGROVECITY_SILVER
|
||||
loadtrainer RIVAL1, RIVAL1_2
|
||||
writecode VAR_BATTLETYPE, BATTLETYPE_CANLOSE
|
||||
startbattle
|
||||
reloadmapmusic
|
||||
reloadmap
|
||||
iftrue UnknownScript_0x19c11a
|
||||
jump UnknownScript_0x19c126
|
||||
iftrue .AfterVictorious
|
||||
jump .AfterYourDefeat
|
||||
|
||||
UnknownScript_0x19c11a:
|
||||
.AfterVictorious:
|
||||
playmusic MUSIC_RIVAL_AFTER
|
||||
opentext
|
||||
writetext UnknownText_0x19c608
|
||||
writetext CherrygroveRivalText_YouWon
|
||||
waitbutton
|
||||
closetext
|
||||
jump UnknownScript_0x19c12f
|
||||
jump .FinishRival
|
||||
|
||||
UnknownScript_0x19c126:
|
||||
.AfterYourDefeat:
|
||||
playmusic MUSIC_RIVAL_AFTER
|
||||
opentext
|
||||
writetext UnknownText_0x19c59e
|
||||
writetext CherrygroveRivalText_YouLost
|
||||
waitbutton
|
||||
closetext
|
||||
UnknownScript_0x19c12f:
|
||||
.FinishRival:
|
||||
playsound SFX_TACKLE
|
||||
applymovement PLAYER, MovementData_0x19c1d4
|
||||
spriteface PLAYER, LEFT
|
||||
@ -181,34 +180,34 @@ UnknownScript_0x19c12f:
|
||||
playmapmusic
|
||||
end
|
||||
|
||||
TeacherScript_0x19c146:
|
||||
CherrygroveTeacherScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkflag ENGINE_MAP_CARD
|
||||
iftrue UnknownScript_0x19c154
|
||||
writetext UnknownText_0x19c650
|
||||
iftrue .HaveMapCard
|
||||
writetext CherrygroveTeacherText_NoMapCard
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x19c154:
|
||||
writetext UnknownText_0x19c6a8
|
||||
.HaveMapCard:
|
||||
writetext CherrygroveTeacherText_HaveMapCard
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
YoungsterScript_0x19c15a:
|
||||
CherrygroveYoungsterScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkflag ENGINE_POKEDEX
|
||||
iftrue UnknownScript_0x19c168
|
||||
writetext UnknownText_0x19c6d6
|
||||
iftrue .HavePokedex
|
||||
writetext CherrygroveYoungsterText_NoPokedex
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
UnknownScript_0x19c168:
|
||||
writetext UnknownText_0x19c701
|
||||
.HavePokedex:
|
||||
writetext CherrygroveYoungsterText_HavePokedex
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
@ -217,16 +216,16 @@ MysticWaterGuy:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
||||
iftrue UnknownScript_0x19c183
|
||||
writetext UnknownText_0x19c766
|
||||
iftrue .After
|
||||
writetext MysticWaterGuyTextBefore
|
||||
buttonsound
|
||||
verbosegiveitem MYSTIC_WATER
|
||||
iffalse UnknownScript_0x19c187
|
||||
iffalse .Exit
|
||||
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
||||
UnknownScript_0x19c183:
|
||||
writetext UnknownText_0x19c7c1
|
||||
.After:
|
||||
writetext MysticWaterGuyTextAfter
|
||||
waitbutton
|
||||
UnknownScript_0x19c187:
|
||||
.Exit:
|
||||
closetext
|
||||
end
|
||||
|
||||
@ -242,7 +241,7 @@ CherrygroveCityPokeCenterSign:
|
||||
CherrygroveCityMartSign:
|
||||
jumpstd martsign
|
||||
|
||||
MovementData_0x19c195:
|
||||
GuideGentMovement1:
|
||||
step_left
|
||||
step_left
|
||||
step_up
|
||||
@ -250,7 +249,7 @@ MovementData_0x19c195:
|
||||
turn_head_up
|
||||
step_end
|
||||
|
||||
MovementData_0x19c19b:
|
||||
GuideGentMovement2:
|
||||
step_left
|
||||
step_left
|
||||
step_left
|
||||
@ -260,7 +259,7 @@ MovementData_0x19c19b:
|
||||
turn_head_up
|
||||
step_end
|
||||
|
||||
MovementData_0x19c1a3:
|
||||
GuideGentMovement3:
|
||||
step_left
|
||||
step_left
|
||||
step_left
|
||||
@ -271,7 +270,7 @@ MovementData_0x19c1a3:
|
||||
turn_head_up
|
||||
step_end
|
||||
|
||||
MovementData_0x19c1ac:
|
||||
GuideGentMovement4:
|
||||
step_left
|
||||
step_left
|
||||
step_left
|
||||
@ -283,7 +282,7 @@ MovementData_0x19c1ac:
|
||||
turn_head_left
|
||||
step_end
|
||||
|
||||
MovementData_0x19c1b6:
|
||||
GuideGentMovement5:
|
||||
step_down
|
||||
step_down
|
||||
step_right
|
||||
@ -306,7 +305,7 @@ MovementData_0x19c1b6:
|
||||
turn_head_up
|
||||
step_end
|
||||
|
||||
MovementData_0x19c1cb:
|
||||
GuideGentMovement6:
|
||||
step_up
|
||||
step_up
|
||||
step_end
|
||||
@ -458,12 +457,12 @@ UnknownText_0x19c4e2:
|
||||
line "what I mean!"
|
||||
done
|
||||
|
||||
UnknownText_0x19c57f:
|
||||
SilverCherrygroveWinText:
|
||||
text "Humph. Are you"
|
||||
line "happy you won?"
|
||||
done
|
||||
|
||||
UnknownText_0x19c59e:
|
||||
CherrygroveRivalText_YouLost:
|
||||
text "<......> <......> <......>"
|
||||
|
||||
para "My name's ???."
|
||||
@ -474,12 +473,12 @@ UnknownText_0x19c59e:
|
||||
cont "trainer."
|
||||
done
|
||||
|
||||
UnknownText_0x19c5e6:
|
||||
SilverCherrygroveLossText:
|
||||
text "Humph. That was a"
|
||||
line "waste of time."
|
||||
done
|
||||
|
||||
UnknownText_0x19c608:
|
||||
CherrygroveRivalText_YouWon:
|
||||
text "<......> <......> <......>"
|
||||
|
||||
para "My name's ???."
|
||||
@ -490,7 +489,7 @@ UnknownText_0x19c608:
|
||||
cont "trainer."
|
||||
done
|
||||
|
||||
UnknownText_0x19c650:
|
||||
CherrygroveTeacherText_NoMapCard:
|
||||
text "Did you talk to"
|
||||
line "the old man by the"
|
||||
cont "#MON CENTER?"
|
||||
@ -500,19 +499,19 @@ UnknownText_0x19c650:
|
||||
cont "#GEAR."
|
||||
done
|
||||
|
||||
UnknownText_0x19c6a8:
|
||||
CherrygroveTeacherText_HaveMapCard:
|
||||
text "When you're with"
|
||||
line "#MON, going"
|
||||
cont "anywhere is fun."
|
||||
done
|
||||
|
||||
UnknownText_0x19c6d6:
|
||||
CherrygroveYoungsterText_NoPokedex:
|
||||
text "MR.#MON's house"
|
||||
line "is still farther"
|
||||
cont "up ahead."
|
||||
done
|
||||
|
||||
UnknownText_0x19c701:
|
||||
CherrygroveYoungsterText_HavePokedex:
|
||||
text "I battled the"
|
||||
line "trainers on the"
|
||||
cont "road."
|
||||
@ -524,7 +523,7 @@ UnknownText_0x19c701:
|
||||
line "a #MON CENTER."
|
||||
done
|
||||
|
||||
UnknownText_0x19c766:
|
||||
MysticWaterGuyTextBefore:
|
||||
text "A #MON I caught"
|
||||
line "had an item."
|
||||
|
||||
@ -535,7 +534,7 @@ UnknownText_0x19c766:
|
||||
line "so do you want it?"
|
||||
done
|
||||
|
||||
UnknownText_0x19c7c1:
|
||||
MysticWaterGuyTextAfter:
|
||||
text "Back to fishing"
|
||||
line "for me, then."
|
||||
done
|
||||
@ -565,8 +564,8 @@ CherrygroveCity_MapEventHeader:
|
||||
|
||||
.XYTriggers:
|
||||
db 2
|
||||
xy_trigger 1, $6, $21, $0, UnknownScript_0x19c0ae, $0, $0
|
||||
xy_trigger 1, $7, $21, $0, UnknownScript_0x19c0aa, $0, $0
|
||||
xy_trigger 1, $6, $21, $0, CherrygroveSilverTriggerNorth, $0, $0
|
||||
xy_trigger 1, $7, $21, $0, CherrygroveSilverTriggerSouth, $0, $0
|
||||
|
||||
.Signposts:
|
||||
db 4
|
||||
@ -579,6 +578,6 @@ CherrygroveCity_MapEventHeader:
|
||||
db 5
|
||||
person_event SPRITE_GRAMPS, 6, 32, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CherrygroveCityGuideGent, EVENT_GUIDE_GENT_IN_HIS_HOUSE
|
||||
person_event SPRITE_SILVER, 6, 39, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, ObjectEvent, EVENT_RIVAL_CHERRYGROVE_CITY
|
||||
person_event SPRITE_TEACHER, 12, 27, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, TeacherScript_0x19c146, -1
|
||||
person_event SPRITE_YOUNGSTER, 7, 23, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, YoungsterScript_0x19c15a, -1
|
||||
person_event SPRITE_TEACHER, 12, 27, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_BLUE, PERSONTYPE_SCRIPT, 0, CherrygroveTeacherScript, -1
|
||||
person_event SPRITE_YOUNGSTER, 7, 23, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_SCRIPT, 0, CherrygroveYoungsterScript, -1
|
||||
person_event SPRITE_FISHER, 12, 7, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, (1 << 3) | PAL_OW_GREEN, PERSONTYPE_SCRIPT, 0, MysticWaterGuy, -1
|
||||
|
@ -27,11 +27,11 @@ UnknownScript_0x18c739:
|
||||
closetext
|
||||
end
|
||||
|
||||
ItemFragment_0x18c73b:
|
||||
itemfragment REVIVE
|
||||
DarkCaveBlackthornEntranceRevive:
|
||||
itemball REVIVE
|
||||
|
||||
ItemFragment_0x18c73d:
|
||||
itemfragment TM_SNORE
|
||||
DarkCaveBlackthornEntranceTMSnore:
|
||||
itemball TM_SNORE
|
||||
|
||||
UnknownText_0x18c73f:
|
||||
text "Whoa! You startled"
|
||||
@ -79,5 +79,5 @@ DarkCaveBlackthornEntrance_MapEventHeader:
|
||||
.PersonEvents:
|
||||
db 3
|
||||
person_event SPRITE_PHARMACIST, 3, 7, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, PharmacistScript_0x18c720, -1
|
||||
person_event SPRITE_POKE_BALL, 24, 21, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c73b, EVENT_DARK_CAVE_BLACKTHORN_ENTRANCE_REVIVE
|
||||
person_event SPRITE_POKE_BALL, 22, 7, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c73d, EVENT_DARK_CAVE_BLACKTHORN_ENTRANCE_TM_SNORE
|
||||
person_event SPRITE_POKE_BALL, 24, 21, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveBlackthornEntranceRevive, EVENT_DARK_CAVE_BLACKTHORN_ENTRANCE_REVIVE
|
||||
person_event SPRITE_POKE_BALL, 22, 7, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveBlackthornEntranceTMSnore, EVENT_DARK_CAVE_BLACKTHORN_ENTRANCE_TM_SNORE
|
||||
|
@ -15,17 +15,17 @@ DarkCaveVioletEntrance_MapScriptHeader:
|
||||
.MapCallbacks:
|
||||
db 0
|
||||
|
||||
ItemFragment_0x18c68e:
|
||||
itemfragment POTION
|
||||
DarkCaveVioletEntrancePotion:
|
||||
itemball POTION
|
||||
|
||||
ItemFragment_0x18c690:
|
||||
itemfragment FULL_HEAL
|
||||
DarkCaveVioletEntranceFullHeal:
|
||||
itemball FULL_HEAL
|
||||
|
||||
ItemFragment_0x18c692:
|
||||
itemfragment HYPER_POTION
|
||||
DarkCaveVioletEntranceHyperPotion:
|
||||
itemball HYPER_POTION
|
||||
|
||||
ItemFragment_0x18c694:
|
||||
itemfragment DIRE_HIT
|
||||
DarkCaveVioletEntranceDireHit:
|
||||
itemball DIRE_HIT
|
||||
|
||||
DarkCaveVioletEntranceRock:
|
||||
jumpstd smashrock
|
||||
@ -53,11 +53,11 @@ DarkCaveVioletEntrance_MapEventHeader:
|
||||
|
||||
.PersonEvents:
|
||||
db 8
|
||||
person_event SPRITE_POKE_BALL, 8, 6, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c68e, EVENT_DARK_CAVE_VIOLET_ENTRANCE_POTION
|
||||
person_event SPRITE_POKE_BALL, 8, 6, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveVioletEntrancePotion, EVENT_DARK_CAVE_VIOLET_ENTRANCE_POTION
|
||||
person_event SPRITE_ROCK, 14, 16, SPRITEMOVEDATA_SMASHABLE_ROCK, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DarkCaveVioletEntranceRock, -1
|
||||
person_event SPRITE_ROCK, 6, 27, SPRITEMOVEDATA_SMASHABLE_ROCK, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DarkCaveVioletEntranceRock, -1
|
||||
person_event SPRITE_ROCK, 14, 7, SPRITEMOVEDATA_SMASHABLE_ROCK, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DarkCaveVioletEntranceRock, -1
|
||||
person_event SPRITE_ROCK, 31, 36, SPRITEMOVEDATA_SMASHABLE_ROCK, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, DarkCaveVioletEntranceRock, -1
|
||||
person_event SPRITE_POKE_BALL, 22, 36, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c690, EVENT_DARK_CAVE_VIOLET_ENTRANCE_FULL_HEAL
|
||||
person_event SPRITE_POKE_BALL, 9, 35, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c692, EVENT_DARK_CAVE_VIOLET_ENTRANCE_HYPER_POTION
|
||||
person_event SPRITE_POKE_BALL, 28, 30, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c694, EVENT_DARK_CAVE_VIOLET_ENTRANCE_DIRE_HIT
|
||||
person_event SPRITE_POKE_BALL, 22, 36, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveVioletEntranceFullHeal, EVENT_DARK_CAVE_VIOLET_ENTRANCE_FULL_HEAL
|
||||
person_event SPRITE_POKE_BALL, 9, 35, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveVioletEntranceHyperPotion, EVENT_DARK_CAVE_VIOLET_ENTRANCE_HYPER_POTION
|
||||
person_event SPRITE_POKE_BALL, 28, 30, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DarkCaveVioletEntranceDireHit, EVENT_DARK_CAVE_VIOLET_ENTRANCE_DIRE_HIT
|
||||
|
@ -181,11 +181,11 @@ SilverScript_0x18c97e:
|
||||
MapDragonsDenB1FSignpost0Script:
|
||||
jumptext DragonShrineSignpostText
|
||||
|
||||
ItemFragment_0x18c9a1:
|
||||
itemfragment CALCIUM
|
||||
DragonsDenB1FCalcium:
|
||||
itemball CALCIUM
|
||||
|
||||
ItemFragment_0x18c9a3:
|
||||
itemfragment MAX_ELIXER
|
||||
DragonsDenB1FMaxElixer:
|
||||
itemball MAX_ELIXER
|
||||
|
||||
MapDragonsDenB1FSignpostItem1:
|
||||
dwb EVENT_DRAGONS_DEN_B1F_HIDDEN_REVIVE, REVIVE
|
||||
@ -440,5 +440,5 @@ DragonsDenB1F_MapEventHeader:
|
||||
person_event SPRITE_COOLTRAINER_F, 8, 8, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 3, TrainerCooltrainerfCara, -1
|
||||
person_event SPRITE_TWIN, 17, 4, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 1, TrainerTwinsLeaandpia1, -1
|
||||
person_event SPRITE_TWIN, 18, 4, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, (1 << 3) | PAL_OW_RED, PERSONTYPE_TRAINER, 1, TrainerTwinsLeaandpia2, -1
|
||||
person_event SPRITE_POKE_BALL, 4, 30, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c9a1, EVENT_DRAGONS_DEN_B1F_CALCIUM
|
||||
person_event SPRITE_POKE_BALL, 20, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMFRAGMENT, 0, ItemFragment_0x18c9a3, EVENT_DRAGONS_DEN_B1F_MAX_ELIXER
|
||||
person_event SPRITE_POKE_BALL, 4, 30, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DragonsDenB1FCalcium, EVENT_DRAGONS_DEN_B1F_CALCIUM
|
||||
person_event SPRITE_POKE_BALL, 20, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, DragonsDenB1FMaxElixer, EVENT_DRAGONS_DEN_B1F_MAX_ELIXER
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user