mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
give/takeitem *, 1: the 1 is optional
This commit is contained in:
parent
7fd20e6322
commit
3cadc7b012
@ -39,4 +39,8 @@ const_value SET 1
|
|||||||
const ANIM_GFX_WAVE
|
const ANIM_GFX_WAVE
|
||||||
const ANIM_GFX_AEROBLAST
|
const ANIM_GFX_AEROBLAST
|
||||||
|
|
||||||
|
|
||||||
|
LEN_2BPP_TILE EQU 16
|
||||||
|
LEN_1BPP_TILE EQU 8
|
||||||
|
TILES_PER_FRAME EQU 6
|
||||||
TILESIZE EQU $10
|
TILESIZE EQU $10
|
||||||
|
@ -587,7 +587,10 @@ OW_RIGHT EQU RIGHT << 2
|
|||||||
const EMOTE_BOLT ; 5
|
const EMOTE_BOLT ; 5
|
||||||
const EMOTE_SLEEP ; 6
|
const EMOTE_SLEEP ; 6
|
||||||
const EMOTE_FISH ; 7
|
const EMOTE_FISH ; 7
|
||||||
const EMOTE_ROD ; 8 - add directional constant
|
const EMOTE_08 ; 8
|
||||||
|
const EMOTE_09 ; 9
|
||||||
|
const EMOTE_0A ; 10
|
||||||
|
const EMOTE_0B ; 11
|
||||||
EMOTE_MEM EQU -1
|
EMOTE_MEM EQU -1
|
||||||
|
|
||||||
const_def
|
const_def
|
||||||
|
@ -164,7 +164,3 @@ HMENURETURN_SCRIPT EQU %10000000
|
|||||||
HMENURETURN_ASM EQU %11111111
|
HMENURETURN_ASM EQU %11111111
|
||||||
|
|
||||||
NUM_MON_SUBMENU_ITEMS EQU 8
|
NUM_MON_SUBMENU_ITEMS EQU 8
|
||||||
|
|
||||||
LEN_2BPP_TILE EQU 16
|
|
||||||
LEN_1BPP_TILE EQU 8
|
|
||||||
TILES_PER_FRAME EQU 6
|
|
||||||
|
@ -170,6 +170,16 @@ const_value SET 1
|
|||||||
const STANDING_SPRITE
|
const STANDING_SPRITE
|
||||||
const STILL_SPRITE
|
const STILL_SPRITE
|
||||||
|
|
||||||
|
; sprite header fields
|
||||||
|
const_def
|
||||||
|
const SPRITEHEADER_ADDR_LO
|
||||||
|
const SPRITEHEADER_ADDR_HI
|
||||||
|
const SPRITEHEADER_SIZE
|
||||||
|
const SPRITEHEADER_BANK
|
||||||
|
const SPRITEHEADER_TYPE
|
||||||
|
const SPRITEHEADER_PALETTE
|
||||||
|
NUM_SPRITEHEADER_FIELDS EQU const_value
|
||||||
|
|
||||||
; sprite palettes
|
; sprite palettes
|
||||||
const_def
|
const_def
|
||||||
const PAL_OW_RED
|
const PAL_OW_RED
|
||||||
@ -252,3 +262,5 @@ const_value SET 1
|
|||||||
const SPRITEMOVEFN_19
|
const SPRITEMOVEFN_19
|
||||||
const SPRITEMOVEFN_1A
|
const SPRITEMOVEFN_1A
|
||||||
const SPRITEMOVEFN_1B
|
const SPRITEMOVEFN_1B
|
||||||
|
|
||||||
|
MAX_OUTDOOR_SPRITES EQU 23
|
||||||
|
@ -15,7 +15,7 @@ FruitTreeScript:: ; 44000
|
|||||||
.fruit
|
.fruit
|
||||||
writetext HeyItsFruitText
|
writetext HeyItsFruitText
|
||||||
copybytetovar CurFruit
|
copybytetovar CurFruit
|
||||||
giveitem ITEM_FROM_MEM, 1
|
giveitem ITEM_FROM_MEM
|
||||||
iffalse .packisfull
|
iffalse .packisfull
|
||||||
keeptextopen
|
keeptextopen
|
||||||
writetext ObtainedFruitText
|
writetext ObtainedFruitText
|
||||||
|
@ -1197,9 +1197,9 @@ ApplyPersonFacing: ; 0x9728b
|
|||||||
add hl, bc
|
add hl, bc
|
||||||
ld a, [hl]
|
ld a, [hl]
|
||||||
push bc
|
push bc
|
||||||
call Function1836
|
call DoesSpriteHaveFacings
|
||||||
pop bc
|
pop bc
|
||||||
jr c, .not_visible ; 0x9729c $1b
|
jr c, .not_visible ; STILL_SPRITE
|
||||||
ld hl, OBJECT_FLAGS1
|
ld hl, OBJECT_FLAGS1
|
||||||
add hl, bc
|
add hl, bc
|
||||||
bit 2, [hl]
|
bit 2, [hl]
|
||||||
|
@ -178,7 +178,7 @@ SpecialsPointers:: ; c029
|
|||||||
add_special Function1037eb
|
add_special Function1037eb
|
||||||
add_special Function10383c
|
add_special Function10383c
|
||||||
add_special Mobile_HealParty
|
add_special Mobile_HealParty
|
||||||
add_special Function14168
|
add_special RefreshSprites
|
||||||
add_special Function1037c2
|
add_special Function1037c2
|
||||||
add_special Function10630f
|
add_special Function10630f
|
||||||
add_special Function103780
|
add_special Function103780
|
||||||
|
1480
engine/sprites.asm
Executable file
1480
engine/sprites.asm
Executable file
File diff suppressed because it is too large
Load Diff
@ -328,7 +328,7 @@ BugContestResultsScript:
|
|||||||
farwritetext ContestResults_ConsolationPrizeText
|
farwritetext ContestResults_ConsolationPrizeText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
waitbutton
|
waitbutton
|
||||||
verbosegiveitem BERRY, 1
|
verbosegiveitem BERRY
|
||||||
iffalse BugContestResults_NoRoomForBerry
|
iffalse BugContestResults_NoRoomForBerry
|
||||||
|
|
||||||
BugContestResults_DidNotWin
|
BugContestResults_DidNotWin
|
||||||
@ -387,7 +387,7 @@ BugContestResults_FirstPlace ; 0xbc31e
|
|||||||
itemtotext SUN_STONE, $1
|
itemtotext SUN_STONE, $1
|
||||||
farwritetext ContestResults_PlayerWonAPrizeText
|
farwritetext ContestResults_PlayerWonAPrizeText
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem SUN_STONE, 1
|
verbosegiveitem SUN_STONE
|
||||||
iffalse BugContestResults_NoRoomForSunStone
|
iffalse BugContestResults_NoRoomForSunStone
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc332
|
; 0xbc332
|
||||||
@ -396,7 +396,7 @@ BugContestResults_SecondPlace ; 0xbc332
|
|||||||
itemtotext EVERSTONE, $1
|
itemtotext EVERSTONE, $1
|
||||||
farwritetext ContestResults_PlayerWonAPrizeText
|
farwritetext ContestResults_PlayerWonAPrizeText
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem EVERSTONE, 1
|
verbosegiveitem EVERSTONE
|
||||||
iffalse BugContestResults_NoRoomForEverstone
|
iffalse BugContestResults_NoRoomForEverstone
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc343
|
; 0xbc343
|
||||||
@ -405,7 +405,7 @@ BugContestResults_ThirdPlace ; 0xbc343
|
|||||||
itemtotext GOLD_BERRY, $1
|
itemtotext GOLD_BERRY, $1
|
||||||
farwritetext ContestResults_PlayerWonAPrizeText
|
farwritetext ContestResults_PlayerWonAPrizeText
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem GOLD_BERRY, 1
|
verbosegiveitem GOLD_BERRY
|
||||||
iffalse BugContestResults_NoRoomForGoldBerry
|
iffalse BugContestResults_NoRoomForGoldBerry
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc354
|
; 0xbc354
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
; Type, Palette
|
; Type, Palette
|
||||||
|
|
||||||
sprite_header: MACRO
|
sprite_header: MACRO
|
||||||
|
; pointer, length, type, palette
|
||||||
dw \1
|
dw \1
|
||||||
db \2 * 4 tiles, BANK(\1)
|
db \2 * 4 tiles, BANK(\1)
|
||||||
db \3, \4
|
db \3, \4
|
||||||
|
@ -2021,7 +2021,7 @@ Function2b74:: ; 0x2b74
|
|||||||
Function2bae:: ; 2bae
|
Function2bae:: ; 2bae
|
||||||
call DisableLCD
|
call DisableLCD
|
||||||
call ClearSprites
|
call ClearSprites
|
||||||
callba Function14168
|
callba RefreshSprites
|
||||||
call LoadStandardFont
|
call LoadStandardFont
|
||||||
call LoadFontsExtra
|
call LoadFontsExtra
|
||||||
ld a, [hROMBank]
|
ld a, [hROMBank]
|
||||||
|
@ -52,18 +52,18 @@ endr
|
|||||||
ret
|
ret
|
||||||
; 1836
|
; 1836
|
||||||
|
|
||||||
Function1836:: ; 1836
|
DoesSpriteHaveFacings:: ; 1836
|
||||||
push de
|
push de
|
||||||
push hl
|
push hl
|
||||||
|
|
||||||
ld b, a
|
ld b, a
|
||||||
ld a, [hROMBank]
|
ld a, [hROMBank]
|
||||||
push af
|
push af
|
||||||
ld a, BANK(Function142a7)
|
ld a, BANK(_DoesSpriteHaveFacings)
|
||||||
rst Bankswitch
|
rst Bankswitch
|
||||||
|
|
||||||
ld a, b
|
ld a, b
|
||||||
call Function142a7
|
call _DoesSpriteHaveFacings
|
||||||
ld c, a
|
ld c, a
|
||||||
|
|
||||||
pop de
|
pop de
|
||||||
|
@ -206,14 +206,22 @@ writecode: macro
|
|||||||
giveitem: macro
|
giveitem: macro
|
||||||
db giveitem_command
|
db giveitem_command
|
||||||
db \1 ; item
|
db \1 ; item
|
||||||
|
if _NARG == 2
|
||||||
db \2 ; quantity
|
db \2 ; quantity
|
||||||
|
else
|
||||||
|
db 1
|
||||||
|
endc
|
||||||
endm
|
endm
|
||||||
|
|
||||||
enum takeitem_command
|
enum takeitem_command
|
||||||
takeitem: macro
|
takeitem: macro
|
||||||
db takeitem_command
|
db takeitem_command
|
||||||
db \1 ; item
|
db \1 ; item
|
||||||
|
if _NARG == 2
|
||||||
db \2 ; quantity
|
db \2 ; quantity
|
||||||
|
else
|
||||||
|
db 1
|
||||||
|
endc
|
||||||
endm
|
endm
|
||||||
|
|
||||||
enum checkitem_command
|
enum checkitem_command
|
||||||
@ -986,7 +994,11 @@ checkphonecall: macro
|
|||||||
verbosegiveitem: macro
|
verbosegiveitem: macro
|
||||||
db verbosegiveitem_command
|
db verbosegiveitem_command
|
||||||
db \1 ; item
|
db \1 ; item
|
||||||
|
if _NARG == 2
|
||||||
db \2 ; quantity
|
db \2 ; quantity
|
||||||
|
else
|
||||||
|
db 1
|
||||||
|
endc
|
||||||
endm
|
endm
|
||||||
|
|
||||||
enum verbosegiveitem2_command
|
enum verbosegiveitem2_command
|
||||||
|
@ -34,7 +34,7 @@ BugsyScript:
|
|||||||
setevent EVENT_BEAT_BUG_CATCHER_JOSH
|
setevent EVENT_BEAT_BUG_CATCHER_JOSH
|
||||||
writetext BugsyText_HiveBadgeSpeech
|
writetext BugsyText_HiveBadgeSpeech
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_FURY_CUTTER, 1
|
verbosegiveitem TM_FURY_CUTTER
|
||||||
iffalse .NoRoomForFuryCutter
|
iffalse .NoRoomForFuryCutter
|
||||||
setevent EVENT_GOT_TM49_FURY_CUTTER
|
setevent EVENT_GOT_TM49_FURY_CUTTER
|
||||||
writetext BugsyText_FuryCutterSpeech
|
writetext BugsyText_FuryCutterSpeech
|
||||||
|
@ -155,7 +155,7 @@ UnknownScript_0x1980e5:
|
|||||||
keeptextopen
|
keeptextopen
|
||||||
writetext UnknownText_0x198628
|
writetext UnknownText_0x198628
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem GS_BALL, 1
|
verbosegiveitem GS_BALL
|
||||||
spriteface $d, LEFT
|
spriteface $d, LEFT
|
||||||
setflag ENGINE_HAVE_EXAMINED_GS_BALL
|
setflag ENGINE_HAVE_EXAMINED_GS_BALL
|
||||||
clearevent EVENT_ILEX_FOREST_LASS
|
clearevent EVENT_ILEX_FOREST_LASS
|
||||||
|
@ -117,7 +117,7 @@ UnknownScript_0x18963b:
|
|||||||
checkevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
checkevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x189592
|
iftrue UnknownScript_0x189592
|
||||||
scall UnknownScript_0x1896b5
|
scall UnknownScript_0x1896b5
|
||||||
verbosegiveitem EVERSTONE, 1
|
verbosegiveitem EVERSTONE
|
||||||
iffalse UnknownScript_0x1896cc
|
iffalse UnknownScript_0x1896cc
|
||||||
setevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
setevent EVENT_GOT_EVERSTONE_FROM_BILLS_GRANDPA
|
||||||
setevent EVENT_GAVE_KURT_APRICORNS
|
setevent EVENT_GAVE_KURT_APRICORNS
|
||||||
@ -128,7 +128,7 @@ UnknownScript_0x189652:
|
|||||||
checkevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
checkevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x1895b3
|
iftrue UnknownScript_0x1895b3
|
||||||
scall UnknownScript_0x1896b5
|
scall UnknownScript_0x1896b5
|
||||||
verbosegiveitem LEAF_STONE, 1
|
verbosegiveitem LEAF_STONE
|
||||||
iffalse UnknownScript_0x1896cc
|
iffalse UnknownScript_0x1896cc
|
||||||
setevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
setevent EVENT_GOT_LEAF_STONE_FROM_BILLS_GRANDPA
|
||||||
setevent EVENT_GAVE_KURT_APRICORNS
|
setevent EVENT_GAVE_KURT_APRICORNS
|
||||||
@ -139,7 +139,7 @@ UnknownScript_0x189669:
|
|||||||
checkevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
checkevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x1895d4
|
iftrue UnknownScript_0x1895d4
|
||||||
scall UnknownScript_0x1896b5
|
scall UnknownScript_0x1896b5
|
||||||
verbosegiveitem WATER_STONE, 1
|
verbosegiveitem WATER_STONE
|
||||||
iffalse UnknownScript_0x1896cc
|
iffalse UnknownScript_0x1896cc
|
||||||
setevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
setevent EVENT_GOT_WATER_STONE_FROM_BILLS_GRANDPA
|
||||||
setevent EVENT_GAVE_KURT_APRICORNS
|
setevent EVENT_GAVE_KURT_APRICORNS
|
||||||
@ -150,7 +150,7 @@ UnknownScript_0x189680:
|
|||||||
checkevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
checkevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x18961a
|
iftrue UnknownScript_0x18961a
|
||||||
scall UnknownScript_0x1896b5
|
scall UnknownScript_0x1896b5
|
||||||
verbosegiveitem FIRE_STONE, 1
|
verbosegiveitem FIRE_STONE
|
||||||
iffalse UnknownScript_0x1896cc
|
iffalse UnknownScript_0x1896cc
|
||||||
setevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
setevent EVENT_GOT_FIRE_STONE_FROM_BILLS_GRANDPA
|
||||||
setevent EVENT_GAVE_KURT_APRICORNS
|
setevent EVENT_GAVE_KURT_APRICORNS
|
||||||
@ -159,7 +159,7 @@ UnknownScript_0x189680:
|
|||||||
|
|
||||||
UnknownScript_0x189697:
|
UnknownScript_0x189697:
|
||||||
scall UnknownScript_0x1896b5
|
scall UnknownScript_0x1896b5
|
||||||
verbosegiveitem THUNDERSTONE, 1
|
verbosegiveitem THUNDERSTONE
|
||||||
iffalse UnknownScript_0x1896cc
|
iffalse UnknownScript_0x1896cc
|
||||||
setevent EVENT_GOT_THUNDERSTONE_FROM_BILLS_GRANDPA
|
setevent EVENT_GOT_THUNDERSTONE_FROM_BILLS_GRANDPA
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -93,7 +93,7 @@ SantosScript:
|
|||||||
.MetSantos
|
.MetSantos
|
||||||
writetext SantosGivesGiftText
|
writetext SantosGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SPELL_TAG, 1
|
verbosegiveitem SPELL_TAG
|
||||||
iffalse SantosDoneScript
|
iffalse SantosDoneScript
|
||||||
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
||||||
writetext SantosGaveGiftText
|
writetext SantosGaveGiftText
|
||||||
|
@ -62,7 +62,7 @@ UnknownScript_0x194e69:
|
|||||||
iftrue UnknownScript_0x194e94
|
iftrue UnknownScript_0x194e94
|
||||||
writetext UnknownText_0x195196
|
writetext UnknownText_0x195196
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem TM_DRAGONBREATH, 1
|
giveitem TM_DRAGONBREATH
|
||||||
iffalse UnknownScript_0x194e8e
|
iffalse UnknownScript_0x194e8e
|
||||||
itemtotext TM_DRAGONBREATH, $0
|
itemtotext TM_DRAGONBREATH, $0
|
||||||
writetext UnknownText_0x1951bf
|
writetext UnknownText_0x1951bf
|
||||||
|
@ -86,7 +86,7 @@ EatathonContestPoster:
|
|||||||
CeladonCafeTrashcan:
|
CeladonCafeTrashcan:
|
||||||
checkevent EVENT_FOUND_LEFTOVERS_IN_CELADON_CAFE
|
checkevent EVENT_FOUND_LEFTOVERS_IN_CELADON_CAFE
|
||||||
iftrue .TrashEmpty
|
iftrue .TrashEmpty
|
||||||
giveitem LEFTOVERS, 1
|
giveitem LEFTOVERS
|
||||||
iffalse .PackFull
|
iffalse .PackFull
|
||||||
loadfont
|
loadfont
|
||||||
itemtotext LEFTOVERS, $0
|
itemtotext LEFTOVERS, $0
|
||||||
|
@ -36,7 +36,7 @@ CeladonVendingMachine:
|
|||||||
.FreshWater
|
.FreshWater
|
||||||
checkmoney $0, 200
|
checkmoney $0, 200
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem FRESH_WATER, 1
|
giveitem FRESH_WATER
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 200
|
takemoney $0, 200
|
||||||
itemtotext FRESH_WATER, $0
|
itemtotext FRESH_WATER, $0
|
||||||
@ -45,7 +45,7 @@ CeladonVendingMachine:
|
|||||||
.SodaPop
|
.SodaPop
|
||||||
checkmoney $0, 300
|
checkmoney $0, 300
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem SODA_POP, 1
|
giveitem SODA_POP
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 300
|
takemoney $0, 300
|
||||||
itemtotext SODA_POP, $0
|
itemtotext SODA_POP, $0
|
||||||
@ -54,7 +54,7 @@ CeladonVendingMachine:
|
|||||||
.Lemonade
|
.Lemonade
|
||||||
checkmoney $0, 350
|
checkmoney $0, 350
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem LEMONADE, 1
|
giveitem LEMONADE
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 350
|
takemoney $0, 350
|
||||||
itemtotext LEMONADE, $0
|
itemtotext LEMONADE, $0
|
||||||
|
@ -35,7 +35,7 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
itemtotext TM_DOUBLE_TEAM, $0
|
itemtotext TM_DOUBLE_TEAM, $0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
giveitem TM_DOUBLE_TEAM, 1
|
giveitem TM_DOUBLE_TEAM
|
||||||
iffalse CeladonPrizeRoom_notenoughroom
|
iffalse CeladonPrizeRoom_notenoughroom
|
||||||
takecoins 1500
|
takecoins 1500
|
||||||
jump CeladonPrizeRoom_purchased
|
jump CeladonPrizeRoom_purchased
|
||||||
@ -46,7 +46,7 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
itemtotext TM_PSYCHIC, $0
|
itemtotext TM_PSYCHIC, $0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
giveitem TM_PSYCHIC, 1
|
giveitem TM_PSYCHIC
|
||||||
iffalse CeladonPrizeRoom_notenoughroom
|
iffalse CeladonPrizeRoom_notenoughroom
|
||||||
takecoins 3500
|
takecoins 3500
|
||||||
jump CeladonPrizeRoom_purchased
|
jump CeladonPrizeRoom_purchased
|
||||||
@ -57,7 +57,7 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
itemtotext TM_HYPER_BEAM, $0
|
itemtotext TM_HYPER_BEAM, $0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
giveitem TM_HYPER_BEAM, 1
|
giveitem TM_HYPER_BEAM
|
||||||
iffalse CeladonPrizeRoom_notenoughroom
|
iffalse CeladonPrizeRoom_notenoughroom
|
||||||
takecoins 7500
|
takecoins 7500
|
||||||
jump CeladonPrizeRoom_purchased
|
jump CeladonPrizeRoom_purchased
|
||||||
|
@ -32,7 +32,7 @@ ErikaScript_0x72a6a:
|
|||||||
iftrue UnknownScript_0x72aae
|
iftrue UnknownScript_0x72aae
|
||||||
writetext UnknownText_0x72cb0
|
writetext UnknownText_0x72cb0
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_GIGA_DRAIN, 1
|
verbosegiveitem TM_GIGA_DRAIN
|
||||||
iffalse UnknownScript_0x72aae
|
iffalse UnknownScript_0x72aae
|
||||||
setevent EVENT_GOT_TM19_GIGA_DRAIN
|
setevent EVENT_GOT_TM19_GIGA_DRAIN
|
||||||
UnknownScript_0x72aae:
|
UnknownScript_0x72aae:
|
||||||
|
@ -22,7 +22,7 @@ PharmacistScript_0x71afd:
|
|||||||
UnknownScript_0x71b14:
|
UnknownScript_0x71b14:
|
||||||
writetext UnknownText_0x71ba3
|
writetext UnknownText_0x71ba3
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_CURSE, 1
|
verbosegiveitem TM_CURSE
|
||||||
iffalse UnknownScript_0x71b25
|
iffalse UnknownScript_0x71b25
|
||||||
setevent EVENT_GOT_TM03_CURSE
|
setevent EVENT_GOT_TM03_CURSE
|
||||||
UnknownScript_0x71b21:
|
UnknownScript_0x71b21:
|
||||||
|
@ -44,7 +44,7 @@ CharcoalKilnApprentice:
|
|||||||
.Thanks
|
.Thanks
|
||||||
writetext CharcoalKilnApprenticeText2
|
writetext CharcoalKilnApprenticeText2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem CHARCOAL, 1
|
verbosegiveitem CHARCOAL
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN
|
setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -213,7 +213,7 @@ MysticWaterGuy:
|
|||||||
iftrue UnknownScript_0x19c183
|
iftrue UnknownScript_0x19c183
|
||||||
writetext UnknownText_0x19c766
|
writetext UnknownText_0x19c766
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem MYSTIC_WATER, 1
|
verbosegiveitem MYSTIC_WATER
|
||||||
iffalse UnknownScript_0x19c187
|
iffalse UnknownScript_0x19c187
|
||||||
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
||||||
UnknownScript_0x19c183:
|
UnknownScript_0x19c183:
|
||||||
|
@ -89,7 +89,7 @@ PokefanFScript_0x1a0084:
|
|||||||
UnknownScript_0x1a009c:
|
UnknownScript_0x1a009c:
|
||||||
writetext UnknownText_0x1a01e3
|
writetext UnknownText_0x1a01e3
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HM_FLY, 1
|
verbosegiveitem HM_FLY
|
||||||
iffalse UnknownScript_0x1a00b1
|
iffalse UnknownScript_0x1a00b1
|
||||||
setevent EVENT_GOT_HM02_FLY
|
setevent EVENT_GOT_HM02_FLY
|
||||||
writetext UnknownText_0x1a021d
|
writetext UnknownText_0x1a021d
|
||||||
|
@ -49,7 +49,7 @@ ChuckScript_0x9d60f:
|
|||||||
setevent EVENT_BEAT_BLACKBELT_LUNG
|
setevent EVENT_BEAT_BLACKBELT_LUNG
|
||||||
writetext UnknownText_0x9d84d
|
writetext UnknownText_0x9d84d
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_DYNAMICPUNCH, 1
|
verbosegiveitem TM_DYNAMICPUNCH
|
||||||
iffalse UnknownScript_0x9d67f
|
iffalse UnknownScript_0x9d67f
|
||||||
setevent EVENT_GOT_TM01_DYNAMICPUNCH
|
setevent EVENT_GOT_TM01_DYNAMICPUNCH
|
||||||
writetext UnknownText_0x9d8da
|
writetext UnknownText_0x9d8da
|
||||||
|
@ -20,7 +20,7 @@ CianwoodPharmacist:
|
|||||||
iffalse .Mart
|
iffalse .Mart
|
||||||
writetext PharmacistGiveSecretpotionText
|
writetext PharmacistGiveSecretpotionText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem SECRETPOTION, 1
|
giveitem SECRETPOTION
|
||||||
writetext ReceivedSecretpotionText
|
writetext ReceivedSecretpotionText
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -106,7 +106,7 @@ Copycat:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x18b17f
|
writetext UnknownText_0x18b17f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
takeitem LOST_ITEM, 1
|
takeitem LOST_ITEM
|
||||||
setevent EVENT_RETURNED_LOST_ITEM_TO_COPYCAT
|
setevent EVENT_RETURNED_LOST_ITEM_TO_COPYCAT
|
||||||
clearevent EVENT_COPYCATS_HOUSE_2F_DOLL
|
clearevent EVENT_COPYCATS_HOUSE_2F_DOLL
|
||||||
jump .Part14
|
jump .Part14
|
||||||
@ -116,7 +116,7 @@ Copycat:
|
|||||||
.Part14
|
.Part14
|
||||||
writetext UnknownText_0x18b1e2
|
writetext UnknownText_0x18b1e2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem PASS, 1
|
verbosegiveitem PASS
|
||||||
iffalse .Part22
|
iffalse .Part22
|
||||||
setevent EVENT_GOT_PASS_FROM_COPYCAT
|
setevent EVENT_GOT_PASS_FROM_COPYCAT
|
||||||
writetext UnknownText_0x18b214
|
writetext UnknownText_0x18b214
|
||||||
|
@ -96,7 +96,7 @@ UnknownScript_0x994ff:
|
|||||||
UnknownScript_0x99505:
|
UnknownScript_0x99505:
|
||||||
writetext UnknownText_0x9991a
|
writetext UnknownText_0x9991a
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HM_SURF, 1
|
verbosegiveitem HM_SURF
|
||||||
setevent EVENT_GOT_HM03_SURF
|
setevent EVENT_GOT_HM03_SURF
|
||||||
writetext UnknownText_0x9999b
|
writetext UnknownText_0x9999b
|
||||||
closetext
|
closetext
|
||||||
|
@ -12,7 +12,7 @@ PharmacistScript_0x18c720:
|
|||||||
iftrue UnknownScript_0x18c735
|
iftrue UnknownScript_0x18c735
|
||||||
writetext UnknownText_0x18c73f
|
writetext UnknownText_0x18c73f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem BLACKGLASSES, 1
|
verbosegiveitem BLACKGLASSES
|
||||||
iffalse UnknownScript_0x18c739
|
iffalse UnknownScript_0x18c739
|
||||||
setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
||||||
UnknownScript_0x18c735:
|
UnknownScript_0x18c735:
|
||||||
|
@ -49,7 +49,7 @@ UnknownScript_0x18c8b8:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x18c9bf
|
writetext UnknownText_0x18c9bf
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem TM_DRAGONBREATH, 1
|
giveitem TM_DRAGONBREATH
|
||||||
iffalse UnknownScript_0x18c8f4
|
iffalse UnknownScript_0x18c8f4
|
||||||
itemtotext TM_DRAGONBREATH, $0
|
itemtotext TM_DRAGONBREATH, $0
|
||||||
writetext UnknownText_0x18c9fb
|
writetext UnknownText_0x18c9fb
|
||||||
@ -122,7 +122,7 @@ TwinsLeaandpia2Script:
|
|||||||
end
|
end
|
||||||
|
|
||||||
PokeBallScript_0x18c95a:
|
PokeBallScript_0x18c95a:
|
||||||
giveitem DRAGON_FANG, 1
|
giveitem DRAGON_FANG
|
||||||
iffalse UnknownScript_0x18c970
|
iffalse UnknownScript_0x18c970
|
||||||
disappear $2
|
disappear $2
|
||||||
loadfont
|
loadfont
|
||||||
|
@ -48,7 +48,7 @@ MortyScript_0x99d58:
|
|||||||
setevent EVENT_BEAT_MEDIUM_GRACE
|
setevent EVENT_BEAT_MEDIUM_GRACE
|
||||||
writetext UnknownText_0x9a059
|
writetext UnknownText_0x9a059
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SHADOW_BALL, 1
|
verbosegiveitem TM_SHADOW_BALL
|
||||||
iffalse UnknownScript_0x99db5
|
iffalse UnknownScript_0x99db5
|
||||||
setevent EVENT_GOT_TM30_SHADOW_BALL
|
setevent EVENT_GOT_TM30_SHADOW_BALL
|
||||||
writetext UnknownText_0x9a0ec
|
writetext UnknownText_0x9a0ec
|
||||||
|
@ -15,7 +15,7 @@ CooltrainerMScript_0x9a5fb:
|
|||||||
iffalse UnknownScript_0x9a61a
|
iffalse UnknownScript_0x9a61a
|
||||||
writetext UnknownText_0x9a6b5
|
writetext UnknownText_0x9a6b5
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem ITEMFINDER, 1
|
verbosegiveitem ITEMFINDER
|
||||||
setevent EVENT_GOT_ITEMFINDER
|
setevent EVENT_GOT_ITEMFINDER
|
||||||
UnknownScript_0x9a614:
|
UnknownScript_0x9a614:
|
||||||
writetext UnknownText_0x9a70e
|
writetext UnknownText_0x9a70e
|
||||||
|
@ -327,7 +327,7 @@ ElmAfterTheftScript:
|
|||||||
keeptextopen
|
keeptextopen
|
||||||
writetext ElmAfterTheftText2
|
writetext ElmAfterTheftText2
|
||||||
closetext
|
closetext
|
||||||
takeitem MYSTERY_EGG, 1
|
takeitem MYSTERY_EGG
|
||||||
scall ElmJumpBackScript1
|
scall ElmJumpBackScript1
|
||||||
writetext ElmAfterTheftText3
|
writetext ElmAfterTheftText3
|
||||||
closetext
|
closetext
|
||||||
@ -379,7 +379,7 @@ ShowElmTogepiScript:
|
|||||||
ElmGiveEverstoneScript:
|
ElmGiveEverstoneScript:
|
||||||
writetext ElmGiveEverstoneText1
|
writetext ElmGiveEverstoneText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem EVERSTONE, 1
|
verbosegiveitem EVERSTONE
|
||||||
iffalse ElmScript_NoRoomForEverstone
|
iffalse ElmScript_NoRoomForEverstone
|
||||||
writetext ElmGiveEverstoneText2
|
writetext ElmGiveEverstoneText2
|
||||||
closetext
|
closetext
|
||||||
@ -397,7 +397,7 @@ ElmScript_NoRoomForEverstone:
|
|||||||
ElmGiveMasterBallScript:
|
ElmGiveMasterBallScript:
|
||||||
writetext ElmGiveMasterBallText1
|
writetext ElmGiveMasterBallText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem MASTER_BALL, 1
|
verbosegiveitem MASTER_BALL
|
||||||
iffalse .notdone
|
iffalse .notdone
|
||||||
setevent EVENT_GOT_MASTER_BALL_FROM_ELM
|
setevent EVENT_GOT_MASTER_BALL_FROM_ELM
|
||||||
writetext ElmGiveMasterBallText2
|
writetext ElmGiveMasterBallText2
|
||||||
@ -409,7 +409,7 @@ ElmGiveMasterBallScript:
|
|||||||
ElmGiveTicketScript:
|
ElmGiveTicketScript:
|
||||||
writetext ElmGiveTicketText1
|
writetext ElmGiveTicketText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem S_S_TICKET, 1
|
verbosegiveitem S_S_TICKET
|
||||||
setevent EVENT_GOT_SS_TICKET_FROM_ELM
|
setevent EVENT_GOT_SS_TICKET_FROM_ELM
|
||||||
writetext ElmGiveTicketText2
|
writetext ElmGiveTicketText2
|
||||||
closetext
|
closetext
|
||||||
@ -472,7 +472,7 @@ AideScript_GivePotions:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext AideText_GiveYouPotions
|
writetext AideText_GiveYouPotions
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem POTION, 1
|
verbosegiveitem POTION
|
||||||
writetext AideText_AlwaysBusy
|
writetext AideText_AlwaysBusy
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -87,7 +87,7 @@ GentlemanScript_0x75f1f:
|
|||||||
UnknownScript_0x75f37:
|
UnknownScript_0x75f37:
|
||||||
writetext UnknownText_0x7619b
|
writetext UnknownText_0x7619b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem METAL_COAT, 1
|
verbosegiveitem METAL_COAT
|
||||||
iffalse UnknownScript_0x75f44
|
iffalse UnknownScript_0x75f44
|
||||||
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
||||||
UnknownScript_0x75f44:
|
UnknownScript_0x75f44:
|
||||||
@ -106,7 +106,7 @@ UnknownScript_0x75f44:
|
|||||||
UnknownScript_0x75f58:
|
UnknownScript_0x75f58:
|
||||||
writetext UnknownText_0x7619b
|
writetext UnknownText_0x7619b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem METAL_COAT, 1
|
verbosegiveitem METAL_COAT
|
||||||
iffalse UnknownScript_0x75f65
|
iffalse UnknownScript_0x75f65
|
||||||
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
||||||
UnknownScript_0x75f65:
|
UnknownScript_0x75f65:
|
||||||
|
@ -42,7 +42,7 @@ UnknownScript_0x195e02:
|
|||||||
iftrue UnknownScript_0x195e15
|
iftrue UnknownScript_0x195e15
|
||||||
writetext UnknownText_0x196002
|
writetext UnknownText_0x196002
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_TOXIC, 1
|
verbosegiveitem TM_TOXIC
|
||||||
iffalse UnknownScript_0x195e15
|
iffalse UnknownScript_0x195e15
|
||||||
setevent EVENT_GOT_TM06_TOXIC
|
setevent EVENT_GOT_TM06_TOXIC
|
||||||
UnknownScript_0x195e15:
|
UnknownScript_0x195e15:
|
||||||
|
@ -19,7 +19,7 @@ ClerkScript_0x54750:
|
|||||||
writetext UnknownText_0x547f8
|
writetext UnknownText_0x547f8
|
||||||
keeptextopen
|
keeptextopen
|
||||||
waitbutton
|
waitbutton
|
||||||
giveitem BICYCLE, 1
|
giveitem BICYCLE
|
||||||
writetext UnknownText_0x54848
|
writetext UnknownText_0x54848
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -70,7 +70,7 @@ ReceptionistScript_0x560ce:
|
|||||||
.VeryHappy:
|
.VeryHappy:
|
||||||
writetext UnknownText_0x5615a
|
writetext UnknownText_0x5615a
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_RETURN, 1
|
verbosegiveitem TM_RETURN
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
@ -85,7 +85,7 @@ ReceptionistScript_0x560ce:
|
|||||||
.NotVeryHappy:
|
.NotVeryHappy:
|
||||||
writetext UnknownText_0x561d8
|
writetext UnknownText_0x561d8
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_FRUSTRATION, 1
|
verbosegiveitem TM_FRUSTRATION
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -22,7 +22,7 @@ GoldenrodVendingMachine:
|
|||||||
.FreshWater
|
.FreshWater
|
||||||
checkmoney $0, 200
|
checkmoney $0, 200
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem FRESH_WATER, 1
|
giveitem FRESH_WATER
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 200
|
takemoney $0, 200
|
||||||
itemtotext FRESH_WATER, $0
|
itemtotext FRESH_WATER, $0
|
||||||
@ -31,7 +31,7 @@ GoldenrodVendingMachine:
|
|||||||
.SodaPop
|
.SodaPop
|
||||||
checkmoney $0, 300
|
checkmoney $0, 300
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem SODA_POP, 1
|
giveitem SODA_POP
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 300
|
takemoney $0, 300
|
||||||
itemtotext SODA_POP, $0
|
itemtotext SODA_POP, $0
|
||||||
@ -40,7 +40,7 @@ GoldenrodVendingMachine:
|
|||||||
.Lemonade
|
.Lemonade
|
||||||
checkmoney $0, 350
|
checkmoney $0, 350
|
||||||
if_equal $2, .NotEnoughMoney
|
if_equal $2, .NotEnoughMoney
|
||||||
giveitem LEMONADE, 1
|
giveitem LEMONADE
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney $0, 350
|
takemoney $0, 350
|
||||||
itemtotext LEMONADE, $0
|
itemtotext LEMONADE, $0
|
||||||
|
@ -20,7 +20,7 @@ FlowerShopTeacherScript:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x554c2
|
writetext UnknownText_0x554c2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SQUIRTBOTTLE, 1
|
verbosegiveitem SQUIRTBOTTLE
|
||||||
setevent EVENT_GOT_SQUIRTBOTTLE
|
setevent EVENT_GOT_SQUIRTBOTTLE
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
setevent EVENT_FLORIA_AT_SUDOWOODO
|
setevent EVENT_FLORIA_AT_SUDOWOODO
|
||||||
|
@ -64,7 +64,7 @@ UnknownScript_0x56c4d:
|
|||||||
itemtotext TM_THUNDER, $0
|
itemtotext TM_THUNDER, $0
|
||||||
scall UnknownScript_0x56ca1
|
scall UnknownScript_0x56ca1
|
||||||
iffalse UnknownScript_0x56cbd
|
iffalse UnknownScript_0x56cbd
|
||||||
giveitem TM_THUNDER, 1
|
giveitem TM_THUNDER
|
||||||
iffalse UnknownScript_0x56cb7
|
iffalse UnknownScript_0x56cb7
|
||||||
takecoins 5500
|
takecoins 5500
|
||||||
jump UnknownScript_0x56ca6
|
jump UnknownScript_0x56ca6
|
||||||
@ -75,7 +75,7 @@ UnknownScript_0x56c69:
|
|||||||
itemtotext TM_BLIZZARD, $0
|
itemtotext TM_BLIZZARD, $0
|
||||||
scall UnknownScript_0x56ca1
|
scall UnknownScript_0x56ca1
|
||||||
iffalse UnknownScript_0x56cbd
|
iffalse UnknownScript_0x56cbd
|
||||||
giveitem TM_BLIZZARD, 1
|
giveitem TM_BLIZZARD
|
||||||
iffalse UnknownScript_0x56cb7
|
iffalse UnknownScript_0x56cb7
|
||||||
takecoins 5500
|
takecoins 5500
|
||||||
jump UnknownScript_0x56ca6
|
jump UnknownScript_0x56ca6
|
||||||
@ -86,7 +86,7 @@ UnknownScript_0x56c85:
|
|||||||
itemtotext TM_FIRE_BLAST, $0
|
itemtotext TM_FIRE_BLAST, $0
|
||||||
scall UnknownScript_0x56ca1
|
scall UnknownScript_0x56ca1
|
||||||
iffalse UnknownScript_0x56cbd
|
iffalse UnknownScript_0x56cbd
|
||||||
giveitem TM_FIRE_BLAST, 1
|
giveitem TM_FIRE_BLAST
|
||||||
iffalse UnknownScript_0x56cb7
|
iffalse UnknownScript_0x56cb7
|
||||||
takecoins 5500
|
takecoins 5500
|
||||||
jump UnknownScript_0x56ca6
|
jump UnknownScript_0x56ca6
|
||||||
|
@ -60,7 +60,7 @@ WhitneyScript_0x5400c:
|
|||||||
UnknownScript_0x54064:
|
UnknownScript_0x54064:
|
||||||
writetext UnknownText_0x5428b
|
writetext UnknownText_0x5428b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_ATTRACT, 1
|
verbosegiveitem TM_ATTRACT
|
||||||
iffalse UnknownScript_0x5407b
|
iffalse UnknownScript_0x5407b
|
||||||
setevent EVENT_GOT_TM45_ATTRACT
|
setevent EVENT_GOT_TM45_ATTRACT
|
||||||
writetext UnknownText_0x54302
|
writetext UnknownText_0x54302
|
||||||
|
@ -27,7 +27,7 @@ GoldenrodPokeCenter1F_GSBallTriggerLeft:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x622f0
|
writetext UnknownText_0x622f0
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem GS_BALL, 1
|
verbosegiveitem GS_BALL
|
||||||
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
||||||
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
|
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
|
||||||
writetext UnknownText_0x62359
|
writetext UnknownText_0x62359
|
||||||
@ -59,7 +59,7 @@ GoldenrodPokeCenter1F_GSBallTriggerRight:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x622f0
|
writetext UnknownText_0x622f0
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem GS_BALL, 1
|
verbosegiveitem GS_BALL
|
||||||
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
||||||
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
|
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
|
||||||
writetext UnknownText_0x62359
|
writetext UnknownText_0x62359
|
||||||
@ -86,13 +86,13 @@ PokefanFScript_0x61024:
|
|||||||
writetext UnknownText_0x6248c
|
writetext UnknownText_0x6248c
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x6104b
|
iffalse UnknownScript_0x6104b
|
||||||
takeitem EON_MAIL, 1
|
takeitem EON_MAIL
|
||||||
iffalse UnknownScript_0x6104b
|
iffalse UnknownScript_0x6104b
|
||||||
writetext UnknownText_0x62549
|
writetext UnknownText_0x62549
|
||||||
closetext
|
closetext
|
||||||
writetext UnknownText_0x624a4
|
writetext UnknownText_0x624a4
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem REVIVE, 1
|
verbosegiveitem REVIVE
|
||||||
iffalse UnknownScript_0x61051
|
iffalse UnknownScript_0x61051
|
||||||
writetext UnknownText_0x624e9
|
writetext UnknownText_0x624e9
|
||||||
closetext
|
closetext
|
||||||
@ -106,7 +106,7 @@ UnknownScript_0x6104b:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x61051:
|
UnknownScript_0x61051:
|
||||||
giveitem EON_MAIL, 1
|
giveitem EON_MAIL
|
||||||
writetext UnknownText_0x6252a
|
writetext UnknownText_0x6252a
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -339,7 +339,7 @@ BlackBeltScript_0x6edae:
|
|||||||
iftrue UnknownScript_0x6edd8
|
iftrue UnknownScript_0x6edd8
|
||||||
writetext UnknownText_0x6f099
|
writetext UnknownText_0x6f099
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HM_CUT, 1
|
verbosegiveitem HM_CUT
|
||||||
setevent EVENT_GOT_HM01_CUT
|
setevent EVENT_GOT_HM01_CUT
|
||||||
writetext UnknownText_0x6f141
|
writetext UnknownText_0x6f141
|
||||||
closetext
|
closetext
|
||||||
@ -365,7 +365,7 @@ RockerScript_0x6edde:
|
|||||||
iftrue UnknownScript_0x6edf3
|
iftrue UnknownScript_0x6edf3
|
||||||
writetext UnknownText_0x6f21b
|
writetext UnknownText_0x6f21b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_HEADBUTT, 1
|
verbosegiveitem TM_HEADBUTT
|
||||||
iffalse UnknownScript_0x6edf7
|
iffalse UnknownScript_0x6edf7
|
||||||
setevent EVENT_GOT_TM02_HEADBUTT
|
setevent EVENT_GOT_TM02_HEADBUTT
|
||||||
UnknownScript_0x6edf3:
|
UnknownScript_0x6edf3:
|
||||||
@ -439,7 +439,7 @@ UnknownScript_0x6ee38:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x6ee42:
|
UnknownScript_0x6ee42:
|
||||||
takeitem GS_BALL, 1
|
takeitem GS_BALL
|
||||||
clearevent EVENT_FOREST_IS_RESTLESS
|
clearevent EVENT_FOREST_IS_RESTLESS
|
||||||
setevent EVENT_AZALEA_TOWN_KURT
|
setevent EVENT_AZALEA_TOWN_KURT
|
||||||
disappear $8
|
disappear $8
|
||||||
|
@ -66,7 +66,7 @@ KurtScript_0x18e178:
|
|||||||
.ClearedSlowpokeWell:
|
.ClearedSlowpokeWell:
|
||||||
writetext UnknownText_0x18e615
|
writetext UnknownText_0x18e615
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem LURE_BALL, 1
|
verbosegiveitem LURE_BALL
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
setevent EVENT_KURT_GAVE_YOU_LURE_BALL
|
setevent EVENT_KURT_GAVE_YOU_LURE_BALL
|
||||||
.GotLureBall:
|
.GotLureBall:
|
||||||
@ -192,7 +192,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 LEVEL_BALL, $16
|
verbosegiveitem2 LEVEL_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_RED_APRICORN
|
clearevent EVENT_GAVE_KURT_RED_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -202,7 +202,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 LURE_BALL, $16
|
verbosegiveitem2 LURE_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_BLU_APRICORN
|
clearevent EVENT_GAVE_KURT_BLU_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -212,7 +212,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 MOON_BALL, $16
|
verbosegiveitem2 MOON_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_YLW_APRICORN
|
clearevent EVENT_GAVE_KURT_YLW_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -222,7 +222,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 FRIEND_BALL, $16
|
verbosegiveitem2 FRIEND_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_GRN_APRICORN
|
clearevent EVENT_GAVE_KURT_GRN_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -232,7 +232,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 FAST_BALL, $16
|
verbosegiveitem2 FAST_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_WHT_APRICORN
|
clearevent EVENT_GAVE_KURT_WHT_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -242,7 +242,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 HEAVY_BALL, $16
|
verbosegiveitem2 HEAVY_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_BLK_APRICORN
|
clearevent EVENT_GAVE_KURT_BLK_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -252,7 +252,7 @@ KurtScript_0x18e178:
|
|||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem2 LOVE_BALL, $16
|
verbosegiveitem2 LOVE_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_PNK_APRICORN
|
clearevent EVENT_GAVE_KURT_PNK_APRICORN
|
||||||
jump ._ThatTurnedOutGreat
|
jump ._ThatTurnedOutGreat
|
||||||
@ -266,7 +266,7 @@ KurtScript_0x18e178:
|
|||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
setevent EVENT_GAVE_GS_BALL_TO_KURT
|
setevent EVENT_GAVE_GS_BALL_TO_KURT
|
||||||
takeitem GS_BALL, 1
|
takeitem GS_BALL
|
||||||
setflag ENGINE_KURT_MAKING_BALLS
|
setflag ENGINE_KURT_MAKING_BALLS
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ GyaradosScript_0x70063:
|
|||||||
UnknownScript_0x7007a:
|
UnknownScript_0x7007a:
|
||||||
returnafterbattle
|
returnafterbattle
|
||||||
loadfont
|
loadfont
|
||||||
giveitem RED_SCALE, 1
|
giveitem RED_SCALE
|
||||||
waitbutton
|
waitbutton
|
||||||
writetext UnknownText_0x703df
|
writetext UnknownText_0x703df
|
||||||
playsound SFX_ITEM
|
playsound SFX_ITEM
|
||||||
@ -195,7 +195,7 @@ WesleyScript:
|
|||||||
.MetWesley
|
.MetWesley
|
||||||
writetext WesleyGivesGiftText
|
writetext WesleyGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem BLACKBELT, 1
|
verbosegiveitem BLACKBELT
|
||||||
iffalse WesleyDoneScript
|
iffalse WesleyDoneScript
|
||||||
setevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
setevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
||||||
writetext WesleyGaveGiftText
|
writetext WesleyGaveGiftText
|
||||||
|
@ -12,7 +12,7 @@ HiddenPowerGuy:
|
|||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext HiddenPowerGuyText1
|
writetext HiddenPowerGuyText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_HIDDEN_POWER, 1
|
verbosegiveitem TM_HIDDEN_POWER
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM10_HIDDEN_POWER
|
setevent EVENT_GOT_TM10_HIDDEN_POWER
|
||||||
writetext HiddenPowerGuyText2
|
writetext HiddenPowerGuyText2
|
||||||
|
@ -50,7 +50,7 @@ UnknownScript_0x19a6e0:
|
|||||||
UnknownScript_0x19a6fe:
|
UnknownScript_0x19a6fe:
|
||||||
writetext UnknownText_0x19a977
|
writetext UnknownText_0x19a977
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem ELIXER, 1
|
verbosegiveitem ELIXER
|
||||||
iffalse UnknownScript_0x19a711
|
iffalse UnknownScript_0x19a711
|
||||||
writetext UnknownText_0x19a9c3
|
writetext UnknownText_0x19a9c3
|
||||||
closetext
|
closetext
|
||||||
|
@ -35,7 +35,7 @@ PryceScript_0x199a9e:
|
|||||||
setevent EVENT_BEAT_BOARDER_DOUGLAS
|
setevent EVENT_BEAT_BOARDER_DOUGLAS
|
||||||
writetext UnknownText_0x199d55
|
writetext UnknownText_0x199d55
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_ICY_WIND, 1
|
verbosegiveitem TM_ICY_WIND
|
||||||
iffalse UnknownScript_0x199af4
|
iffalse UnknownScript_0x199af4
|
||||||
setevent EVENT_GOT_TM16_ICY_WIND
|
setevent EVENT_GOT_TM16_ICY_WIND
|
||||||
writetext UnknownText_0x199def
|
writetext UnknownText_0x199def
|
||||||
|
@ -56,7 +56,7 @@ UnknownScript_0x190040:
|
|||||||
iffalse UnknownScript_0x190072
|
iffalse UnknownScript_0x190072
|
||||||
checkmoney $0, 300
|
checkmoney $0, 300
|
||||||
if_equal $2, UnknownScript_0x19006c
|
if_equal $2, UnknownScript_0x19006c
|
||||||
giveitem RAGECANDYBAR, 1
|
giveitem RAGECANDYBAR
|
||||||
iffalse UnknownScript_0x190078
|
iffalse UnknownScript_0x190078
|
||||||
waitbutton
|
waitbutton
|
||||||
playsound SFX_TRANSACTION
|
playsound SFX_TRANSACTION
|
||||||
|
@ -28,7 +28,7 @@ UnknownScript_0x196e56:
|
|||||||
writetext UnknownText_0x196fa8
|
writetext UnknownText_0x196fa8
|
||||||
keeptextopen
|
keeptextopen
|
||||||
waitbutton
|
waitbutton
|
||||||
giveitem MYSTERY_EGG, 1
|
giveitem MYSTERY_EGG
|
||||||
writetext UnknownText_0x196fd2
|
writetext UnknownText_0x196fd2
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -69,9 +69,9 @@ UnknownScript_0x196eb0:
|
|||||||
writetext UnknownText_0x197476
|
writetext UnknownText_0x197476
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x196ec3
|
iffalse UnknownScript_0x196ec3
|
||||||
verbosegiveitem EXP_SHARE, 1
|
verbosegiveitem EXP_SHARE
|
||||||
iffalse UnknownScript_0x196ec7
|
iffalse UnknownScript_0x196ec7
|
||||||
takeitem RED_SCALE, 1
|
takeitem RED_SCALE
|
||||||
jump UnknownScript_0x196eaa
|
jump UnknownScript_0x196eaa
|
||||||
|
|
||||||
UnknownScript_0x196ec3:
|
UnknownScript_0x196ec3:
|
||||||
|
@ -12,7 +12,7 @@ MrPsychic:
|
|||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext MrPsychicText1
|
writetext MrPsychicText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_PSYCHIC, 1
|
verbosegiveitem TM_PSYCHIC
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM29_PSYCHIC
|
setevent EVENT_GOT_TM29_PSYCHIC
|
||||||
.AlreadyGotItem
|
.AlreadyGotItem
|
||||||
|
@ -18,7 +18,7 @@ TeacherScript_0x5c008:
|
|||||||
iftrue UnknownScript_0x5c01d
|
iftrue UnknownScript_0x5c01d
|
||||||
writetext UnknownText_0x5c265
|
writetext UnknownText_0x5c265
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem QUICK_CLAW, 1
|
verbosegiveitem QUICK_CLAW
|
||||||
iffalse UnknownScript_0x5c021
|
iffalse UnknownScript_0x5c021
|
||||||
setevent EVENT_GOT_QUICK_CLAW
|
setevent EVENT_GOT_QUICK_CLAW
|
||||||
UnknownScript_0x5c01d:
|
UnknownScript_0x5c01d:
|
||||||
@ -216,7 +216,7 @@ UnknownScript_0x5c163:
|
|||||||
|
|
||||||
UnknownScript_0x5c177:
|
UnknownScript_0x5c177:
|
||||||
scall UnknownScript_0x5c1a7
|
scall UnknownScript_0x5c1a7
|
||||||
verbosegiveitem NUGGET, 1
|
verbosegiveitem NUGGET
|
||||||
iffalse UnknownScript_0x5c186
|
iffalse UnknownScript_0x5c186
|
||||||
clearflag ENGINE_BEVERLY_HAS_NUGGET
|
clearflag ENGINE_BEVERLY_HAS_NUGGET
|
||||||
jump UnknownScript_0x5c19b
|
jump UnknownScript_0x5c19b
|
||||||
|
@ -12,7 +12,7 @@ SailorScript_0x9c8c1:
|
|||||||
iftrue UnknownScript_0x9c8d3
|
iftrue UnknownScript_0x9c8d3
|
||||||
writetext UnknownText_0x9c8df
|
writetext UnknownText_0x9c8df
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HM_STRENGTH, 1
|
verbosegiveitem HM_STRENGTH
|
||||||
setevent EVENT_GOT_HM04_STRENGTH
|
setevent EVENT_GOT_HM04_STRENGTH
|
||||||
UnknownScript_0x9c8d3:
|
UnknownScript_0x9c8d3:
|
||||||
writetext UnknownText_0x9c965
|
writetext UnknownText_0x9c965
|
||||||
|
@ -15,7 +15,7 @@ GoodRodGuru:
|
|||||||
iffalse .DontWantIt
|
iffalse .DontWantIt
|
||||||
writetext GiveGoodRodText
|
writetext GiveGoodRodText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem GOOD_ROD, 1
|
verbosegiveitem GOOD_ROD
|
||||||
writetext GaveGoodRodText
|
writetext GaveGoodRodText
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -30,7 +30,7 @@ JasmineScript_0x9c12f:
|
|||||||
iftrue UnknownScript_0x9c172
|
iftrue UnknownScript_0x9c172
|
||||||
writetext UnknownText_0x9c354
|
writetext UnknownText_0x9c354
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_IRON_TAIL, 1
|
verbosegiveitem TM_IRON_TAIL
|
||||||
iffalse UnknownScript_0x9c176
|
iffalse UnknownScript_0x9c176
|
||||||
setevent EVENT_GOT_TM23_IRON_TAIL
|
setevent EVENT_GOT_TM23_IRON_TAIL
|
||||||
writetext UnknownText_0x9c3a5
|
writetext UnknownText_0x9c3a5
|
||||||
|
@ -94,7 +94,7 @@ UnknownScript_0x5afc7:
|
|||||||
checkevent EVENT_GOT_PROTEIN_FROM_HUEY
|
checkevent EVENT_GOT_PROTEIN_FROM_HUEY
|
||||||
iftrue UnknownScript_0x5b03e
|
iftrue UnknownScript_0x5b03e
|
||||||
scall UnknownScript_0x5b076
|
scall UnknownScript_0x5b076
|
||||||
verbosegiveitem PROTEIN, 1
|
verbosegiveitem PROTEIN
|
||||||
iffalse UnknownScript_0x5b06f
|
iffalse UnknownScript_0x5b06f
|
||||||
setevent EVENT_GOT_PROTEIN_FROM_HUEY
|
setevent EVENT_GOT_PROTEIN_FROM_HUEY
|
||||||
jump UnknownScript_0x5b05f
|
jump UnknownScript_0x5b05f
|
||||||
@ -106,7 +106,7 @@ UnknownScript_0x5b03f:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x5b1b6
|
writetext UnknownText_0x5b1b6
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem PROTEIN, 1
|
verbosegiveitem PROTEIN
|
||||||
iffalse UnknownScript_0x5b06f
|
iffalse UnknownScript_0x5b06f
|
||||||
clearevent EVENT_HUEY_PROTEIN
|
clearevent EVENT_HUEY_PROTEIN
|
||||||
setevent EVENT_GOT_PROTEIN_FROM_HUEY
|
setevent EVENT_GOT_PROTEIN_FROM_HUEY
|
||||||
|
@ -27,7 +27,7 @@ UnknownScript_0x60bab:
|
|||||||
iffalse UnknownScript_0x60c25
|
iffalse UnknownScript_0x60c25
|
||||||
writetext UnknownText_0x60dc3
|
writetext UnknownText_0x60dc3
|
||||||
keeptextopen
|
keeptextopen
|
||||||
takeitem SECRETPOTION, 1
|
takeitem SECRETPOTION
|
||||||
writetext UnknownText_0x60dea
|
writetext UnknownText_0x60dea
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -25,7 +25,7 @@ GrampsScript_0x18c00f:
|
|||||||
iftrue UnknownScript_0x18c023
|
iftrue UnknownScript_0x18c023
|
||||||
writetext UnknownText_0x18c0c6
|
writetext UnknownText_0x18c0c6
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SILVER_WING, 1
|
verbosegiveitem SILVER_WING
|
||||||
setevent EVENT_GOT_SILVER_WING
|
setevent EVENT_GOT_SILVER_WING
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
end
|
end
|
||||||
|
@ -20,7 +20,7 @@ GentlemanScript_0x1917e9:
|
|||||||
UnknownScript_0x191802:
|
UnknownScript_0x191802:
|
||||||
writetext UnknownText_0x191a3d
|
writetext UnknownText_0x191a3d
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem RARE_CANDY, 1
|
verbosegiveitem RARE_CANDY
|
||||||
iffalse UnknownScript_0x19181f
|
iffalse UnknownScript_0x19181f
|
||||||
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
|
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
|
||||||
writetext UnknownText_0x191a72
|
writetext UnknownText_0x191a72
|
||||||
@ -69,7 +69,7 @@ UnknownScript_0x191844:
|
|||||||
writetext UnknownText_0x191c5a
|
writetext UnknownText_0x191c5a
|
||||||
keeptextopen
|
keeptextopen
|
||||||
waitbutton
|
waitbutton
|
||||||
giveitem LOST_ITEM, 1
|
giveitem LOST_ITEM
|
||||||
iffalse UnknownScript_0x191865
|
iffalse UnknownScript_0x191865
|
||||||
disappear $6
|
disappear $6
|
||||||
writetext UnknownText_0x191d0a
|
writetext UnknownText_0x191d0a
|
||||||
|
@ -154,7 +154,7 @@ UnknownScript_0x188e8d:
|
|||||||
UnknownScript_0x188e93:
|
UnknownScript_0x188e93:
|
||||||
writetext UnknownText_0x18936e
|
writetext UnknownText_0x18936e
|
||||||
keeptextopen
|
keeptextopen
|
||||||
takeitem MACHINE_PART, 1
|
takeitem MACHINE_PART
|
||||||
setevent EVENT_RETURNED_MACHINE_PART
|
setevent EVENT_RETURNED_MACHINE_PART
|
||||||
clearevent EVENT_SAFFRON_TRAIN_STATION_POPULATION
|
clearevent EVENT_SAFFRON_TRAIN_STATION_POPULATION
|
||||||
setevent EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
|
setevent EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
|
||||||
@ -166,7 +166,7 @@ UnknownScript_0x188eac:
|
|||||||
iftrue UnknownScript_0x188ec5
|
iftrue UnknownScript_0x188ec5
|
||||||
writetext UnknownText_0x1893c4
|
writetext UnknownText_0x1893c4
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_ZAP_CANNON, 1
|
verbosegiveitem TM_ZAP_CANNON
|
||||||
iffalse UnknownScript_0x188ec3
|
iffalse UnknownScript_0x188ec3
|
||||||
setevent EVENT_GOT_TM07_ZAP_CANNON
|
setevent EVENT_GOT_TM07_ZAP_CANNON
|
||||||
writetext UnknownText_0x1893f4
|
writetext UnknownText_0x1893f4
|
||||||
|
@ -65,7 +65,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
playsound SFX_1ST_PLACE
|
playsound SFX_1ST_PLACE
|
||||||
waitbutton
|
waitbutton
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem MASTER_BALL, 1
|
giveitem MASTER_BALL
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
setflag ENGINE_LUCKY_NUMBER_SHOW
|
setflag ENGINE_LUCKY_NUMBER_SHOW
|
||||||
@ -76,7 +76,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
playsound SFX_2ND_PLACE
|
playsound SFX_2ND_PLACE
|
||||||
waitbutton
|
waitbutton
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem EXP_SHARE, 1
|
giveitem EXP_SHARE
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
setflag ENGINE_LUCKY_NUMBER_SHOW
|
setflag ENGINE_LUCKY_NUMBER_SHOW
|
||||||
@ -87,7 +87,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
playsound SFX_3RD_PLACE
|
playsound SFX_3RD_PLACE
|
||||||
waitbutton
|
waitbutton
|
||||||
keeptextopen
|
keeptextopen
|
||||||
giveitem PP_UP, 1
|
giveitem PP_UP
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
setflag ENGINE_LUCKY_NUMBER_SHOW
|
setflag ENGINE_LUCKY_NUMBER_SHOW
|
||||||
|
@ -151,7 +151,7 @@ UnknownScript_0x5d800:
|
|||||||
writetext UnknownText_0x5dcf4
|
writetext UnknownText_0x5dcf4
|
||||||
keeptextopen
|
keeptextopen
|
||||||
setevent EVENT_MET_BUENA
|
setevent EVENT_MET_BUENA
|
||||||
verbosegiveitem BLUE_CARD, 1
|
verbosegiveitem BLUE_CARD
|
||||||
UnknownScript_0x5d80a:
|
UnknownScript_0x5d80a:
|
||||||
writetext UnknownText_0x5de10
|
writetext UnknownText_0x5de10
|
||||||
closetext
|
closetext
|
||||||
|
@ -61,7 +61,7 @@ UnknownScript_0x5e584:
|
|||||||
UnknownScript_0x5e58a:
|
UnknownScript_0x5e58a:
|
||||||
writetext UnknownText_0x5e7e2
|
writetext UnknownText_0x5e7e2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SUNNY_DAY, 1
|
verbosegiveitem TM_SUNNY_DAY
|
||||||
iffalse UnknownScript_0x5e5a1
|
iffalse UnknownScript_0x5e5a1
|
||||||
writetext UnknownText_0x5e821
|
writetext UnknownText_0x5e821
|
||||||
closetext
|
closetext
|
||||||
|
@ -23,7 +23,7 @@ TeacherScript_0x5eb85:
|
|||||||
UnknownScript_0x5eb99:
|
UnknownScript_0x5eb99:
|
||||||
writetext UnknownText_0x5ecab
|
writetext UnknownText_0x5ecab
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem PINK_BOW, 1
|
verbosegiveitem PINK_BOW
|
||||||
iffalse UnknownScript_0x5ebb0
|
iffalse UnknownScript_0x5ebb0
|
||||||
writetext UnknownText_0x5ecef
|
writetext UnknownText_0x5ecef
|
||||||
closetext
|
closetext
|
||||||
|
@ -40,7 +40,7 @@ UnknownScript_0x60011:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x60246
|
writetext UnknownText_0x60246
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem BASEMENT_KEY, 1
|
verbosegiveitem BASEMENT_KEY
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
dotrigger $1
|
dotrigger $1
|
||||||
setevent EVENT_BEAT_ROCKET_EXECUTIVEM_3
|
setevent EVENT_BEAT_ROCKET_EXECUTIVEM_3
|
||||||
@ -117,7 +117,7 @@ UnknownScript_0x6006e:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x605b2
|
writetext UnknownText_0x605b2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem CLEAR_BELL, 1
|
verbosegiveitem CLEAR_BELL
|
||||||
writetext UnknownText_0x6062c
|
writetext UnknownText_0x6062c
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -15,7 +15,7 @@ FishingGuruScript_0x7f484:
|
|||||||
iffalse UnknownScript_0x7f4a6
|
iffalse UnknownScript_0x7f4a6
|
||||||
writetext UnknownText_0x7f52f
|
writetext UnknownText_0x7f52f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SUPER_ROD, 1
|
verbosegiveitem SUPER_ROD
|
||||||
iffalse UnknownScript_0x7f4aa
|
iffalse UnknownScript_0x7f4aa
|
||||||
setevent EVENT_GOT_SUPER_ROD
|
setevent EVENT_GOT_SUPER_ROD
|
||||||
UnknownScript_0x7f4a0:
|
UnknownScript_0x7f4a0:
|
||||||
|
@ -153,7 +153,7 @@ CooltrainerMScript_0x19efac:
|
|||||||
iftrue UnknownScript_0x19efc7
|
iftrue UnknownScript_0x19efc7
|
||||||
writetext UnknownText_0x19f43b
|
writetext UnknownText_0x19f43b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem NUGGET, 1
|
verbosegiveitem NUGGET
|
||||||
iffalse UnknownScript_0x19efde
|
iffalse UnknownScript_0x19efde
|
||||||
setevent EVENT_CLEARED_NUGGET_BRIDGE
|
setevent EVENT_CLEARED_NUGGET_BRIDGE
|
||||||
UnknownScript_0x19efc7:
|
UnknownScript_0x19efc7:
|
||||||
|
@ -119,7 +119,7 @@ UnknownScript_0x1a08ff:
|
|||||||
|
|
||||||
UnknownScript_0x1a0945:
|
UnknownScript_0x1a0945:
|
||||||
scall UnknownScript_0x1a0973
|
scall UnknownScript_0x1a0973
|
||||||
verbosegiveitem STAR_PIECE, 1
|
verbosegiveitem STAR_PIECE
|
||||||
iffalse UnknownScript_0x1a0954
|
iffalse UnknownScript_0x1a0954
|
||||||
clearflag ENGINE_JOSE_HAS_STAR_PIECE
|
clearflag ENGINE_JOSE_HAS_STAR_PIECE
|
||||||
jump UnknownScript_0x1a0963
|
jump UnknownScript_0x1a0963
|
||||||
|
@ -19,7 +19,7 @@ SandstormHouseWoman:
|
|||||||
.Loyal
|
.Loyal
|
||||||
writetext SandstormHouseWomanLoyalText
|
writetext SandstormHouseWomanLoyalText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SANDSTORM, 1
|
verbosegiveitem TM_SANDSTORM
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM37_SANDSTORM
|
setevent EVENT_GOT_TM37_SANDSTORM
|
||||||
.AlreadyGotItem
|
.AlreadyGotItem
|
||||||
|
@ -18,7 +18,7 @@ Celebrity:
|
|||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext CelebrityText1
|
writetext CelebrityText1
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_STEEL_WING, 1
|
verbosegiveitem TM_STEEL_WING
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM47_STEEL_WING
|
setevent EVENT_GOT_TM47_STEEL_WING
|
||||||
.Done
|
.Done
|
||||||
|
@ -176,7 +176,7 @@ TuscanyScript:
|
|||||||
.MetTuscany
|
.MetTuscany
|
||||||
writetext TuscanyGivesGiftText
|
writetext TuscanyGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem PINK_BOW, 1
|
verbosegiveitem PINK_BOW
|
||||||
iffalse TuscanyDoneScript
|
iffalse TuscanyDoneScript
|
||||||
setevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
setevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
||||||
writetext TuscanyGaveGiftText
|
writetext TuscanyGaveGiftText
|
||||||
|
@ -12,7 +12,7 @@ FisherScript_0x9b847:
|
|||||||
iftrue .GotItem
|
iftrue .GotItem
|
||||||
writetext UnknownText_0x9b865
|
writetext UnknownText_0x9b865
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem NUGGET, 1
|
verbosegiveitem NUGGET
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_NUGGET_FROM_GUY
|
setevent EVENT_GOT_NUGGET_FROM_GUY
|
||||||
.GotItem
|
.GotItem
|
||||||
|
@ -117,7 +117,7 @@ UnknownScript_0x1a16e0:
|
|||||||
checkevent EVENT_GOT_HP_UP_FROM_JOEY
|
checkevent EVENT_GOT_HP_UP_FROM_JOEY
|
||||||
iftrue UnknownScript_0x1a176e
|
iftrue UnknownScript_0x1a176e
|
||||||
scall UnknownScript_0x1a17a6
|
scall UnknownScript_0x1a17a6
|
||||||
verbosegiveitem HP_UP, 1
|
verbosegiveitem HP_UP
|
||||||
iffalse UnknownScript_0x1a179f
|
iffalse UnknownScript_0x1a179f
|
||||||
setevent EVENT_GOT_HP_UP_FROM_JOEY
|
setevent EVENT_GOT_HP_UP_FROM_JOEY
|
||||||
jump UnknownScript_0x1a178f
|
jump UnknownScript_0x1a178f
|
||||||
@ -129,7 +129,7 @@ UnknownScript_0x1a176f:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x1a1bc0
|
writetext UnknownText_0x1a1bc0
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem HP_UP, 1
|
verbosegiveitem HP_UP
|
||||||
iffalse UnknownScript_0x1a179f
|
iffalse UnknownScript_0x1a179f
|
||||||
clearevent EVENT_JOEY_HP_UP
|
clearevent EVENT_JOEY_HP_UP
|
||||||
setevent EVENT_GOT_HP_UP_FROM_JOEY
|
setevent EVENT_GOT_HP_UP_FROM_JOEY
|
||||||
|
@ -12,7 +12,7 @@ PokefanMScript_0x196d64:
|
|||||||
iftrue UnknownScript_0x196d79
|
iftrue UnknownScript_0x196d79
|
||||||
writetext UnknownText_0x196d82
|
writetext UnknownText_0x196d82
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem BERRY, 1
|
verbosegiveitem BERRY
|
||||||
iffalse UnknownScript_0x196d7d
|
iffalse UnknownScript_0x196d7d
|
||||||
setevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
setevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
||||||
UnknownScript_0x196d79:
|
UnknownScript_0x196d79:
|
||||||
|
@ -120,19 +120,19 @@ UnknownScript_0x1a5507:
|
|||||||
checkevent EVENT_WADE_HAS_BITTER_BERRY
|
checkevent EVENT_WADE_HAS_BITTER_BERRY
|
||||||
iftrue .BitterBerry
|
iftrue .BitterBerry
|
||||||
.Berry
|
.Berry
|
||||||
verbosegiveitem BERRY, 1
|
verbosegiveitem BERRY
|
||||||
iffalse .PackFull
|
iffalse .PackFull
|
||||||
jump .Done
|
jump .Done
|
||||||
.Psncureberry
|
.Psncureberry
|
||||||
verbosegiveitem PSNCUREBERRY, 1
|
verbosegiveitem PSNCUREBERRY
|
||||||
iffalse .PackFull
|
iffalse .PackFull
|
||||||
jump .Done
|
jump .Done
|
||||||
.Przcureberry
|
.Przcureberry
|
||||||
verbosegiveitem PRZCUREBERRY, 1
|
verbosegiveitem PRZCUREBERRY
|
||||||
iffalse .PackFull
|
iffalse .PackFull
|
||||||
jump .Done
|
jump .Done
|
||||||
.BitterBerry
|
.BitterBerry
|
||||||
verbosegiveitem BITTER_BERRY, 1
|
verbosegiveitem BITTER_BERRY
|
||||||
iffalse .PackFull
|
iffalse .PackFull
|
||||||
.Done
|
.Done
|
||||||
clearflag ENGINE_WADE_HAS_ITEM
|
clearflag ENGINE_WADE_HAS_ITEM
|
||||||
@ -201,7 +201,7 @@ UnknownScript_0x1a5584:
|
|||||||
writetext UnknownText_0x1a57ba
|
writetext UnknownText_0x1a57ba
|
||||||
keeptextopen
|
keeptextopen
|
||||||
setevent EVENT_GAVE_KENYA
|
setevent EVENT_GAVE_KENYA
|
||||||
verbosegiveitem TM_NIGHTMARE, 1
|
verbosegiveitem TM_NIGHTMARE
|
||||||
iffalse UnknownScript_0x1a55b3
|
iffalse UnknownScript_0x1a55b3
|
||||||
setevent EVENT_GOT_TM50_NIGHTMARE
|
setevent EVENT_GOT_TM50_NIGHTMARE
|
||||||
UnknownScript_0x1a55af:
|
UnknownScript_0x1a55af:
|
||||||
|
@ -57,7 +57,7 @@ UnknownScript_0x190489:
|
|||||||
UnknownScript_0x19048f:
|
UnknownScript_0x19048f:
|
||||||
writetext UnknownText_0x190925
|
writetext UnknownText_0x190925
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem MIRACLE_SEED, 1
|
verbosegiveitem MIRACLE_SEED
|
||||||
iffalse UnknownScript_0x1904a9
|
iffalse UnknownScript_0x1904a9
|
||||||
setevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
|
setevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
|
||||||
jump UnknownScript_0x1904a5
|
jump UnknownScript_0x1904a5
|
||||||
@ -98,7 +98,7 @@ FisherScript_0x1904ce:
|
|||||||
iftrue UnknownScript_0x1904e3
|
iftrue UnknownScript_0x1904e3
|
||||||
writetext UnknownText_0x191133
|
writetext UnknownText_0x191133
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_ROAR, 1
|
verbosegiveitem TM_ROAR
|
||||||
iffalse UnknownScript_0x1904e7
|
iffalse UnknownScript_0x1904e7
|
||||||
setevent EVENT_GOT_TM05_ROAR
|
setevent EVENT_GOT_TM05_ROAR
|
||||||
UnknownScript_0x1904e3:
|
UnknownScript_0x1904e3:
|
||||||
@ -455,7 +455,7 @@ FriedaScript:
|
|||||||
.MetFrieda
|
.MetFrieda
|
||||||
writetext FriedaGivesGiftText
|
writetext FriedaGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem POISON_BARB, 1
|
verbosegiveitem POISON_BARB
|
||||||
iffalse FriedaDoneScript
|
iffalse FriedaDoneScript
|
||||||
setevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
|
setevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
|
||||||
writetext FriedaGaveGiftText
|
writetext FriedaGaveGiftText
|
||||||
|
@ -18,7 +18,7 @@ FishingGuruScript_0x69b55:
|
|||||||
iffalse UnknownScript_0x69b74
|
iffalse UnknownScript_0x69b74
|
||||||
writetext UnknownText_0x69be8
|
writetext UnknownText_0x69be8
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem OLD_ROD, 1
|
verbosegiveitem OLD_ROD
|
||||||
writetext UnknownText_0x69c1b
|
writetext UnknownText_0x69c1b
|
||||||
closetext
|
closetext
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -293,7 +293,7 @@ UnknownScript_0x7819f:
|
|||||||
|
|
||||||
UnknownScript_0x78213:
|
UnknownScript_0x78213:
|
||||||
scall UnknownScript_0x78244
|
scall UnknownScript_0x78244
|
||||||
verbosegiveitem LEAF_STONE, 1
|
verbosegiveitem LEAF_STONE
|
||||||
iffalse UnknownScript_0x78225
|
iffalse UnknownScript_0x78225
|
||||||
clearflag ENGINE_GINA_HAS_LEAF_STONE
|
clearflag ENGINE_GINA_HAS_LEAF_STONE
|
||||||
setevent EVENT_GINA_GAVE_LEAF_STONE
|
setevent EVENT_GINA_GAVE_LEAF_STONE
|
||||||
@ -450,7 +450,7 @@ CooltrainerfKateScript:
|
|||||||
iftrue UnknownScript_0x78319
|
iftrue UnknownScript_0x78319
|
||||||
writetext UnknownText_0x788e2
|
writetext UnknownText_0x788e2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SOFT_SAND, 1
|
verbosegiveitem SOFT_SAND
|
||||||
iffalse UnknownScript_0x7831d
|
iffalse UnknownScript_0x7831d
|
||||||
setevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
setevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
||||||
UnknownScript_0x78319:
|
UnknownScript_0x78319:
|
||||||
|
@ -48,7 +48,7 @@ TeacherScript_0x62d63:
|
|||||||
iftrue UnknownScript_0x62d7e
|
iftrue UnknownScript_0x62d7e
|
||||||
writetext UnknownText_0x62d9d
|
writetext UnknownText_0x62d9d
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SWEET_SCENT, 1
|
verbosegiveitem TM_SWEET_SCENT
|
||||||
iffalse UnknownScript_0x62d82
|
iffalse UnknownScript_0x62d82
|
||||||
setevent EVENT_GOT_TM12_SWEET_SCENT
|
setevent EVENT_GOT_TM12_SWEET_SCENT
|
||||||
UnknownScript_0x62d7e:
|
UnknownScript_0x62d7e:
|
||||||
|
@ -49,7 +49,7 @@ OfficerScript_0x69d37:
|
|||||||
.questcomplete:
|
.questcomplete:
|
||||||
writetext UnknownText_0x69f8b
|
writetext UnknownText_0x69f8b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HP_UP, 1
|
verbosegiveitem HP_UP
|
||||||
iffalse .bagfull
|
iffalse .bagfull
|
||||||
setevent EVENT_GOT_HP_UP_FROM_RANDY
|
setevent EVENT_GOT_HP_UP_FROM_RANDY
|
||||||
.gothpup:
|
.gothpup:
|
||||||
|
@ -90,7 +90,7 @@ UnknownScript_0x19407b:
|
|||||||
disappear $4
|
disappear $4
|
||||||
variablesprite SPRITE_WEIRD_TREE, SPRITE_TWIN
|
variablesprite SPRITE_WEIRD_TREE, SPRITE_TWIN
|
||||||
special RunCallback_04
|
special RunCallback_04
|
||||||
special Function14168
|
special RefreshSprites
|
||||||
end
|
end
|
||||||
|
|
||||||
LassScript_0x19408c:
|
LassScript_0x19408c:
|
||||||
@ -135,7 +135,7 @@ FisherScript_0x1940b9:
|
|||||||
UnknownScript_0x1940cd:
|
UnknownScript_0x1940cd:
|
||||||
writetext UnknownText_0x1944d0
|
writetext UnknownText_0x1944d0
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_ROCK_SMASH, 1
|
verbosegiveitem TM_ROCK_SMASH
|
||||||
iffalse UnknownScript_0x1940de
|
iffalse UnknownScript_0x1940de
|
||||||
setevent EVENT_GOT_TM08_ROCK_SMASH
|
setevent EVENT_GOT_TM08_ROCK_SMASH
|
||||||
UnknownScript_0x1940da:
|
UnknownScript_0x1940da:
|
||||||
@ -254,7 +254,7 @@ UnknownScript_0x194140:
|
|||||||
|
|
||||||
UnknownScript_0x1941b4:
|
UnknownScript_0x1941b4:
|
||||||
scall UnknownScript_0x1941e5
|
scall UnknownScript_0x1941e5
|
||||||
verbosegiveitem FIRE_STONE, 1
|
verbosegiveitem FIRE_STONE
|
||||||
iffalse UnknownScript_0x1941c6
|
iffalse UnknownScript_0x1941c6
|
||||||
clearflag ENGINE_ALAN_HAS_FIRE_STONE
|
clearflag ENGINE_ALAN_HAS_FIRE_STONE
|
||||||
setevent EVENT_ALAN_GAVE_FIRE_STONE
|
setevent EVENT_ALAN_GAVE_FIRE_STONE
|
||||||
@ -325,7 +325,7 @@ ArthurScript:
|
|||||||
.MetArthur
|
.MetArthur
|
||||||
writetext ArthurGivesGiftText
|
writetext ArthurGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem HARD_STONE, 1
|
verbosegiveitem HARD_STONE
|
||||||
iffalse ArthurDoneScript
|
iffalse ArthurDoneScript
|
||||||
setevent EVENT_GOT_HARD_STONE_FROM_ARTHUR
|
setevent EVENT_GOT_HARD_STONE_FROM_ARTHUR
|
||||||
writetext ArthurGaveGiftText
|
writetext ArthurGaveGiftText
|
||||||
|
@ -241,7 +241,7 @@ Route36Officer_ContestHasConcluded:
|
|||||||
.Sunstone:
|
.Sunstone:
|
||||||
writetext UnknownText_0x6b97f
|
writetext UnknownText_0x6b97f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SUN_STONE, 1
|
verbosegiveitem SUN_STONE
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
clearevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
clearevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
@ -250,7 +250,7 @@ Route36Officer_ContestHasConcluded:
|
|||||||
.Everstone:
|
.Everstone:
|
||||||
writetext UnknownText_0x6b97f
|
writetext UnknownText_0x6b97f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem EVERSTONE, 1
|
verbosegiveitem EVERSTONE
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
clearevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
clearevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
@ -259,7 +259,7 @@ Route36Officer_ContestHasConcluded:
|
|||||||
.GoldBerry:
|
.GoldBerry:
|
||||||
writetext UnknownText_0x6b97f
|
writetext UnknownText_0x6b97f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem GOLD_BERRY, 1
|
verbosegiveitem GOLD_BERRY
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
clearevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
clearevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
@ -268,7 +268,7 @@ Route36Officer_ContestHasConcluded:
|
|||||||
.Berry:
|
.Berry:
|
||||||
writetext UnknownText_0x6b97f
|
writetext UnknownText_0x6b97f
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem BERRY, 1
|
verbosegiveitem BERRY
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
clearevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
clearevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -74,7 +74,7 @@ SunnyScript:
|
|||||||
writetext SunnyGivesGiftText2
|
writetext SunnyGivesGiftText2
|
||||||
keeptextopen
|
keeptextopen
|
||||||
.next
|
.next
|
||||||
verbosegiveitem MAGNET, 1
|
verbosegiveitem MAGNET
|
||||||
iffalse SunnyDoneScript
|
iffalse SunnyDoneScript
|
||||||
setevent EVENT_GOT_MAGNET_FROM_SUNNY
|
setevent EVENT_GOT_MAGNET_FROM_SUNNY
|
||||||
writetext SunnyGaveGiftText
|
writetext SunnyGaveGiftText
|
||||||
|
@ -120,7 +120,7 @@ UnknownScript_0x1a1d82:
|
|||||||
|
|
||||||
UnknownScript_0x1a1df6:
|
UnknownScript_0x1a1df6:
|
||||||
scall UnknownScript_0x1a1e27
|
scall UnknownScript_0x1a1e27
|
||||||
verbosegiveitem THUNDERSTONE, 1
|
verbosegiveitem THUNDERSTONE
|
||||||
iffalse UnknownScript_0x1a1e08
|
iffalse UnknownScript_0x1a1e08
|
||||||
clearflag ENGINE_DANA_HAS_THUNDERSTONE
|
clearflag ENGINE_DANA_HAS_THUNDERSTONE
|
||||||
setevent EVENT_DANA_GAVE_THUNDERSTONE
|
setevent EVENT_DANA_GAVE_THUNDERSTONE
|
||||||
|
@ -46,7 +46,7 @@ UnknownScript_0x1a5b36:
|
|||||||
|
|
||||||
UnknownScript_0x1a5b4a:
|
UnknownScript_0x1a5b4a:
|
||||||
scall UnknownScript_0x1a5b7a
|
scall UnknownScript_0x1a5b7a
|
||||||
verbosegiveitem NUGGET, 1
|
verbosegiveitem NUGGET
|
||||||
iffalse UnknownScript_0x1a5b59
|
iffalse UnknownScript_0x1a5b59
|
||||||
clearflag ENGINE_DEREK_HAS_NUGGET
|
clearflag ENGINE_DEREK_HAS_NUGGET
|
||||||
jump UnknownScript_0x1a5b6e
|
jump UnknownScript_0x1a5b6e
|
||||||
|
@ -63,7 +63,7 @@ TaurosScript_0x9ccaa:
|
|||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
checkitem BERRY
|
checkitem BERRY
|
||||||
iffalse .NoBerriesInBag
|
iffalse .NoBerriesInBag
|
||||||
takeitem BERRY, 1
|
takeitem BERRY
|
||||||
copybytetovar MooMooBerries
|
copybytetovar MooMooBerries
|
||||||
addvar 1
|
addvar 1
|
||||||
copyvartobyte MooMooBerries
|
copyvartobyte MooMooBerries
|
||||||
|
@ -25,7 +25,7 @@ UnknownScript_0x9cec5:
|
|||||||
iffalse UnknownScript_0x9cf02
|
iffalse UnknownScript_0x9cf02
|
||||||
checkmoney $0, 500
|
checkmoney $0, 500
|
||||||
if_equal $2, UnknownScript_0x9cef6
|
if_equal $2, UnknownScript_0x9cef6
|
||||||
giveitem MOOMOO_MILK, 1
|
giveitem MOOMOO_MILK
|
||||||
iffalse UnknownScript_0x9cefc
|
iffalse UnknownScript_0x9cefc
|
||||||
takemoney $0, 500
|
takemoney $0, 500
|
||||||
special Function24ae8
|
special Function24ae8
|
||||||
@ -76,7 +76,7 @@ PokefanFScript_0x9cf0e:
|
|||||||
UnknownScript_0x9cf22:
|
UnknownScript_0x9cf22:
|
||||||
writetext UnknownText_0x9d156
|
writetext UnknownText_0x9d156
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SNORE, 1
|
verbosegiveitem TM_SNORE
|
||||||
iffalse UnknownScript_0x9cf33
|
iffalse UnknownScript_0x9cf33
|
||||||
setevent EVENT_GOT_TM13_SNORE_FROM_MOOMOO_FARM
|
setevent EVENT_GOT_TM13_SNORE_FROM_MOOMOO_FARM
|
||||||
UnknownScript_0x9cf2f:
|
UnknownScript_0x9cf2f:
|
||||||
|
@ -96,7 +96,7 @@ MonicaScript:
|
|||||||
.MetMonica
|
.MetMonica
|
||||||
writetext MonicaGivesGiftText
|
writetext MonicaGivesGiftText
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem SHARP_BEAK, 1
|
verbosegiveitem SHARP_BEAK
|
||||||
iffalse MonicaDoneScript
|
iffalse MonicaDoneScript
|
||||||
setevent EVENT_GOT_SHARP_BEAK_FROM_MONICA
|
setevent EVENT_GOT_SHARP_BEAK_FROM_MONICA
|
||||||
writetext MonicaGaveGiftText
|
writetext MonicaGaveGiftText
|
||||||
|
@ -108,7 +108,7 @@ UnknownScript_0x1a927f:
|
|||||||
|
|
||||||
UnknownScript_0x1a92dc:
|
UnknownScript_0x1a92dc:
|
||||||
scall UnknownScript_0x1a930d
|
scall UnknownScript_0x1a930d
|
||||||
verbosegiveitem WATER_STONE, 1
|
verbosegiveitem WATER_STONE
|
||||||
iffalse UnknownScript_0x1a92ee
|
iffalse UnknownScript_0x1a92ee
|
||||||
clearflag ENGINE_TULLY_HAS_WATER_STONE
|
clearflag ENGINE_TULLY_HAS_WATER_STONE
|
||||||
setevent EVENT_TULLY_GAVE_WATER_STONE
|
setevent EVENT_TULLY_GAVE_WATER_STONE
|
||||||
|
@ -251,7 +251,7 @@ UnknownScript_0x19d1c1:
|
|||||||
|
|
||||||
UnknownScript_0x19d21e:
|
UnknownScript_0x19d21e:
|
||||||
scall UnknownScript_0x19d255
|
scall UnknownScript_0x19d255
|
||||||
verbosegiveitem PINK_BOW, 1
|
verbosegiveitem PINK_BOW
|
||||||
iffalse UnknownScript_0x19d230
|
iffalse UnknownScript_0x19d230
|
||||||
clearflag ENGINE_TIFFANY_HAS_PINK_BOW
|
clearflag ENGINE_TIFFANY_HAS_PINK_BOW
|
||||||
setevent EVENT_TIFFANY_GAVE_PINK_BOW
|
setevent EVENT_TIFFANY_GAVE_PINK_BOW
|
||||||
|
@ -113,7 +113,7 @@ OfficerScript_0x19ac85:
|
|||||||
iftrue UnknownScript_0x19ac9c
|
iftrue UnknownScript_0x19ac9c
|
||||||
writetext UnknownText_0x19ad9b
|
writetext UnknownText_0x19ad9b
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem TM_SLUDGE_BOMB, 1
|
verbosegiveitem TM_SLUDGE_BOMB
|
||||||
iffalse UnknownScript_0x19aca0
|
iffalse UnknownScript_0x19aca0
|
||||||
setevent EVENT_GOT_TM36_SLUDGE_BOMB
|
setevent EVENT_GOT_TM36_SLUDGE_BOMB
|
||||||
loadmovesprites
|
loadmovesprites
|
||||||
|
@ -73,7 +73,7 @@ UnknownScript_0x19d86a:
|
|||||||
checkevent EVENT_GOT_CARBOS_FROM_VANCE
|
checkevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
iftrue UnknownScript_0x19d8ca
|
iftrue UnknownScript_0x19d8ca
|
||||||
scall UnknownScript_0x19d90a
|
scall UnknownScript_0x19d90a
|
||||||
verbosegiveitem CARBOS, 1
|
verbosegiveitem CARBOS
|
||||||
iffalse UnknownScript_0x19d903
|
iffalse UnknownScript_0x19d903
|
||||||
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
jump UnknownScript_0x19d8eb
|
jump UnknownScript_0x19d8eb
|
||||||
@ -85,7 +85,7 @@ UnknownScript_0x19d8cb:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x19dc67
|
writetext UnknownText_0x19dc67
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem CARBOS, 1
|
verbosegiveitem CARBOS
|
||||||
iffalse UnknownScript_0x19d903
|
iffalse UnknownScript_0x19d903
|
||||||
clearevent EVENT_VANCE_CARBOS
|
clearevent EVENT_VANCE_CARBOS
|
||||||
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
setevent EVENT_GOT_CARBOS_FROM_VANCE
|
||||||
@ -223,17 +223,17 @@ UnknownScript_0x19d9b4:
|
|||||||
checkevent EVENT_WILTON_HAS_POKE_BALL
|
checkevent EVENT_WILTON_HAS_POKE_BALL
|
||||||
iftrue UnknownScript_0x19d9db
|
iftrue UnknownScript_0x19d9db
|
||||||
UnknownScript_0x19d9c9:
|
UnknownScript_0x19d9c9:
|
||||||
verbosegiveitem ULTRA_BALL, 1
|
verbosegiveitem ULTRA_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse UnknownScript_0x19d9e7
|
||||||
jump UnknownScript_0x19d9e1
|
jump UnknownScript_0x19d9e1
|
||||||
|
|
||||||
UnknownScript_0x19d9d2:
|
UnknownScript_0x19d9d2:
|
||||||
verbosegiveitem GREAT_BALL, 1
|
verbosegiveitem GREAT_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse UnknownScript_0x19d9e7
|
||||||
jump UnknownScript_0x19d9e1
|
jump UnknownScript_0x19d9e1
|
||||||
|
|
||||||
UnknownScript_0x19d9db:
|
UnknownScript_0x19d9db:
|
||||||
verbosegiveitem POKE_BALL, 1
|
verbosegiveitem POKE_BALL
|
||||||
iffalse UnknownScript_0x19d9e7
|
iffalse UnknownScript_0x19d9e7
|
||||||
UnknownScript_0x19d9e1:
|
UnknownScript_0x19d9e1:
|
||||||
clearflag ENGINE_WILTON_HAS_ITEM
|
clearflag ENGINE_WILTON_HAS_ITEM
|
||||||
|
@ -43,7 +43,7 @@ UnknownScript_0x19e0e4:
|
|||||||
checkevent EVENT_KENJI_ON_BREAK
|
checkevent EVENT_KENJI_ON_BREAK
|
||||||
iffalse UnknownScript_0x19e127
|
iffalse UnknownScript_0x19e127
|
||||||
scall UnknownScript_0x19e137
|
scall UnknownScript_0x19e137
|
||||||
verbosegiveitem PP_UP, 1
|
verbosegiveitem PP_UP
|
||||||
iffalse UnknownScript_0x19e118
|
iffalse UnknownScript_0x19e118
|
||||||
clearevent EVENT_KENJI_ON_BREAK
|
clearevent EVENT_KENJI_ON_BREAK
|
||||||
special Special_SampleKenjiBreakCountdown
|
special Special_SampleKenjiBreakCountdown
|
||||||
@ -199,7 +199,7 @@ UnknownScript_0x19e1b8:
|
|||||||
checkevent EVENT_GOT_IRON_FROM_PARRY
|
checkevent EVENT_GOT_IRON_FROM_PARRY
|
||||||
iftrue UnknownScript_0x19e218
|
iftrue UnknownScript_0x19e218
|
||||||
scall UnknownScript_0x19e146
|
scall UnknownScript_0x19e146
|
||||||
verbosegiveitem IRON, 1
|
verbosegiveitem IRON
|
||||||
iffalse UnknownScript_0x19e13f
|
iffalse UnknownScript_0x19e13f
|
||||||
setevent EVENT_GOT_IRON_FROM_PARRY
|
setevent EVENT_GOT_IRON_FROM_PARRY
|
||||||
jump UnknownScript_0x19e127
|
jump UnknownScript_0x19e127
|
||||||
@ -211,7 +211,7 @@ UnknownScript_0x19e219:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x19e52c
|
writetext UnknownText_0x19e52c
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem IRON, 1
|
verbosegiveitem IRON
|
||||||
iffalse UnknownScript_0x19e13f
|
iffalse UnknownScript_0x19e13f
|
||||||
clearevent EVENT_PARRY_IRON
|
clearevent EVENT_PARRY_IRON
|
||||||
setevent EVENT_GOT_IRON_FROM_PARRY
|
setevent EVENT_GOT_IRON_FROM_PARRY
|
||||||
|
@ -84,7 +84,7 @@ UnknownScript_0x1a96da:
|
|||||||
checkevent EVENT_GOT_CALCIUM_FROM_ERIN
|
checkevent EVENT_GOT_CALCIUM_FROM_ERIN
|
||||||
iftrue UnknownScript_0x1a973a
|
iftrue UnknownScript_0x1a973a
|
||||||
scall UnknownScript_0x1a9772
|
scall UnknownScript_0x1a9772
|
||||||
verbosegiveitem CALCIUM, 1
|
verbosegiveitem CALCIUM
|
||||||
iffalse UnknownScript_0x1a976b
|
iffalse UnknownScript_0x1a976b
|
||||||
setevent EVENT_GOT_CALCIUM_FROM_ERIN
|
setevent EVENT_GOT_CALCIUM_FROM_ERIN
|
||||||
jump UnknownScript_0x1a975b
|
jump UnknownScript_0x1a975b
|
||||||
@ -96,7 +96,7 @@ UnknownScript_0x1a973b:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x1a9927
|
writetext UnknownText_0x1a9927
|
||||||
closetext
|
closetext
|
||||||
verbosegiveitem CALCIUM, 1
|
verbosegiveitem CALCIUM
|
||||||
iffalse UnknownScript_0x1a976b
|
iffalse UnknownScript_0x1a976b
|
||||||
clearevent EVENT_ERIN_CALCIUM
|
clearevent EVENT_ERIN_CALCIUM
|
||||||
setevent EVENT_GOT_CALCIUM_FROM_ERIN
|
setevent EVENT_GOT_CALCIUM_FROM_ERIN
|
||||||
|
@ -12,7 +12,7 @@ GrannyScript_0x18b634:
|
|||||||
iftrue UnknownScript_0x18b649
|
iftrue UnknownScript_0x18b649
|
||||||
writetext UnknownText_0x18b655
|
writetext UnknownText_0x18b655
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem CLEANSE_TAG, 1
|
verbosegiveitem CLEANSE_TAG
|
||||||
iffalse UnknownScript_0x18b64d
|
iffalse UnknownScript_0x18b64d
|
||||||
setevent EVENT_GOT_CLEANSE_TAG
|
setevent EVENT_GOT_CLEANSE_TAG
|
||||||
UnknownScript_0x18b649:
|
UnknownScript_0x18b649:
|
||||||
|
@ -15,7 +15,7 @@ OfficerScript_0x18abe8:
|
|||||||
iftrue UnknownScript_0x18abfd
|
iftrue UnknownScript_0x18abfd
|
||||||
writetext UnknownText_0x18ac36
|
writetext UnknownText_0x18ac36
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem UP_GRADE, 1
|
verbosegiveitem UP_GRADE
|
||||||
iffalse UnknownScript_0x18ac01
|
iffalse UnknownScript_0x18ac01
|
||||||
setevent EVENT_GOT_UP_GRADE
|
setevent EVENT_GOT_UP_GRADE
|
||||||
UnknownScript_0x18abfd:
|
UnknownScript_0x18abfd:
|
||||||
|
@ -12,7 +12,7 @@ GymGuyScript_0x5ad0b:
|
|||||||
iftrue UnknownScript_0x5ad22
|
iftrue UnknownScript_0x5ad22
|
||||||
writetext UnknownText_0x5ad2a
|
writetext UnknownText_0x5ad2a
|
||||||
keeptextopen
|
keeptextopen
|
||||||
verbosegiveitem KINGS_ROCK, 1
|
verbosegiveitem KINGS_ROCK
|
||||||
iffalse UnknownScript_0x5ad20
|
iffalse UnknownScript_0x5ad20
|
||||||
setevent EVENT_GOT_KINGS_ROCK_IN_SLOWPOKE_WELL
|
setevent EVENT_GOT_KINGS_ROCK_IN_SLOWPOKE_WELL
|
||||||
UnknownScript_0x5ad20:
|
UnknownScript_0x5ad20:
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user