2019-04-21 14:42:25 -07:00
|
|
|
object_const_def ; object_event constants
|
2015-11-26 21:22:14 -08:00
|
|
|
const CELADONGAMECORNER_CLERK
|
|
|
|
const CELADONGAMECORNER_RECEPTIONIST
|
|
|
|
const CELADONGAMECORNER_POKEFAN_M
|
|
|
|
const CELADONGAMECORNER_TEACHER
|
|
|
|
const CELADONGAMECORNER_FISHING_GURU
|
|
|
|
const CELADONGAMECORNER_FISHER1
|
|
|
|
const CELADONGAMECORNER_FISHER2
|
|
|
|
const CELADONGAMECORNER_GYM_GUY
|
|
|
|
const CELADONGAMECORNER_GRAMPS
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
CeladonGameCorner_MapScripts:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; scene scripts
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; callbacks
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerClerkScript:
|
2020-06-10 13:44:16 -07:00
|
|
|
jumpstd GameCornerCoinVendorScript
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonGameCornerReceptionistScript:
|
|
|
|
jumptextfaceplayer CeladonGameCornerReceptionistText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPokefanMScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-17 17:45:04 -08:00
|
|
|
writetext CeladonGameCornerPokefanMText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject CELADONGAMECORNER_POKEFAN_M, LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerTeacherScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-17 17:45:04 -08:00
|
|
|
writetext CeladonGameCornerTeacherText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject CELADONGAMECORNER_TEACHER, RIGHT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFishingGuruScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-17 17:45:04 -08:00
|
|
|
writetext CeladonGameCornerFishingGuruText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject CELADONGAMECORNER_FISHING_GURU, RIGHT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFisherScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON
|
2017-12-17 17:45:04 -08:00
|
|
|
iftrue .GotCoins
|
|
|
|
writetext CeladonGameCornerFisherText1
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
checkitem COIN_CASE
|
2017-12-17 17:45:04 -08:00
|
|
|
iffalse .NoCoinCase
|
2017-12-24 16:49:57 -08:00
|
|
|
checkcoins MAX_COINS - 1
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal HAVE_MORE, .FullCoinCase
|
2019-03-10 12:31:59 -07:00
|
|
|
getstring STRING_BUFFER_4, .coinname
|
2017-12-17 17:45:04 -08:00
|
|
|
scall .GiveCoins
|
2013-02-16 22:54:07 -08:00
|
|
|
givecoins 18
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON
|
2017-12-17 17:45:04 -08:00
|
|
|
.GotCoins:
|
|
|
|
writetext CeladonGameCornerFisherText2
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject LAST_TALKED, LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.GiveCoins:
|
2020-06-10 13:44:16 -07:00
|
|
|
jumpstd ReceiveItemScript
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
.coinname
|
2013-02-16 22:54:07 -08:00
|
|
|
db "COIN@"
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.NoCoinCase:
|
|
|
|
writetext CeladonGameCornerFisherNoCoinCaseText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject LAST_TALKED, LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.FullCoinCase:
|
|
|
|
writetext CeladonGameCornerFisherFullCoinCaseText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject LAST_TALKED, LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
CeladonGymGuyScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
jumptextfaceplayer CeladonGymGuyText
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerGrampsScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-17 17:45:04 -08:00
|
|
|
writetext CeladonGameCornerGrampsText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject CELADONGAMECORNER_GRAMPS, LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPoster1Script:
|
|
|
|
jumptext CeladonGameCornerPoster1Text
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPoster2Script:
|
|
|
|
jumptext CeladonGameCornerPoster2Text
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerLuckySlotMachineScript:
|
2018-01-11 22:40:20 -08:00
|
|
|
random 6
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal 0, CeladonGameCornerSlotMachineScript
|
2018-01-11 22:40:20 -08:00
|
|
|
refreshscreen
|
2019-03-10 12:31:59 -07:00
|
|
|
setval FALSE
|
2018-01-24 08:17:05 -08:00
|
|
|
special SlotMachine
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerSlotMachineScript:
|
2018-01-11 22:40:20 -08:00
|
|
|
refreshscreen
|
2019-03-10 12:31:59 -07:00
|
|
|
setval TRUE
|
2018-01-24 08:17:05 -08:00
|
|
|
special SlotMachine
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerCardFlipScript:
|
2018-01-11 22:40:20 -08:00
|
|
|
refreshscreen
|
2018-01-24 08:17:05 -08:00
|
|
|
special CardFlip
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerLighterScript:
|
|
|
|
jumptext CeladonGameCornerLighterText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
CeladonGameCornerSodaCanScript:
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2018-02-27 16:33:38 -08:00
|
|
|
writetext CeladonGameCornerSodaCanText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2018-01-24 08:17:05 -08:00
|
|
|
special CardFlip
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-02-28 13:50:43 -08:00
|
|
|
CeladonGameCornerUnusedMovementData:
|
|
|
|
; unreferenced
|
2016-05-14 10:46:14 -07:00
|
|
|
step RIGHT
|
|
|
|
turn_head LEFT
|
2014-07-19 13:11:41 -07:00
|
|
|
step_end
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonGameCornerReceptionistText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Welcome!"
|
|
|
|
|
|
|
|
para "You may exchange"
|
|
|
|
line "your coins for"
|
|
|
|
|
|
|
|
para "fabulous prizes"
|
|
|
|
line "next door."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPokefanMText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "The slot machines"
|
|
|
|
line "are all state of"
|
|
|
|
cont "the art."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerTeacherText:
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
text "The weather"
|
|
|
|
line "outside is very"
|
|
|
|
cont "nice."
|
|
|
|
done
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's this machine"
|
|
|
|
line "I want."
|
|
|
|
|
|
|
|
para "It cleaned me out"
|
|
|
|
line "yesterday, so it"
|
|
|
|
|
|
|
|
para "should pay out"
|
|
|
|
line "today."
|
|
|
|
done
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFishingGuruText:
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
text "This machine looks"
|
|
|
|
line "the same as the"
|
|
|
|
cont "others."
|
|
|
|
done
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I think this slot"
|
|
|
|
line "machine will pay"
|
|
|
|
cont "out…"
|
|
|
|
|
|
|
|
para "The odds vary"
|
|
|
|
line "among machines."
|
|
|
|
done
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFisherText1:
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
text "Whoa!"
|
|
|
|
|
|
|
|
para "What? You want to"
|
|
|
|
line "play this machine?"
|
|
|
|
|
|
|
|
para "Here, take my"
|
|
|
|
line "coins."
|
|
|
|
done
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Gahahaha!"
|
|
|
|
|
|
|
|
para "The coins just"
|
|
|
|
line "keep popping out!"
|
|
|
|
|
|
|
|
para "Hm? What, kid? You"
|
|
|
|
line "want to play?"
|
|
|
|
|
|
|
|
para "I'll share my luck"
|
|
|
|
line "with you!"
|
|
|
|
done
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFisherText2:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Gahahaha!"
|
|
|
|
|
|
|
|
para "It makes me feel"
|
|
|
|
line "good to do nice"
|
|
|
|
|
|
|
|
para "things for other"
|
|
|
|
line "people!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFisherNoCoinCaseText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hey, you don't"
|
|
|
|
line "have a COIN CASE."
|
|
|
|
|
|
|
|
para "How am I supposed"
|
|
|
|
line "to give you any"
|
|
|
|
cont "coins, kid?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerFisherFullCoinCaseText:
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
text "Your COIN CASE is"
|
|
|
|
line "full."
|
|
|
|
done
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hey, your COIN"
|
|
|
|
line "CASE is full, kid."
|
|
|
|
|
|
|
|
para "You must be riding"
|
|
|
|
line "a winning streak"
|
|
|
|
cont "too."
|
|
|
|
done
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
CeladonGymGuyText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hey! CHAMP in"
|
|
|
|
line "making!"
|
|
|
|
|
|
|
|
para "Are you playing"
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
line "too?"
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
line "the slots too?"
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "I'm trying to get"
|
|
|
|
line "enough coins for a"
|
|
|
|
cont "prize #MON."
|
|
|
|
|
|
|
|
para "But I don't have"
|
|
|
|
line "enough coins yet…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerGrampsText:
|
2019-04-12 08:18:35 -07:00
|
|
|
if DEF(_CRYSTAL_AU)
|
|
|
|
text "Is there any"
|
|
|
|
line "difference between"
|
|
|
|
cont "these lines?"
|
|
|
|
done
|
|
|
|
else
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hmmm… The odds are"
|
|
|
|
line "surely better for"
|
|
|
|
|
|
|
|
para "PIKACHU's line,"
|
|
|
|
line "but… What to do?"
|
|
|
|
done
|
2019-04-12 08:18:35 -07:00
|
|
|
endc
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPoster1Text:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hey!"
|
|
|
|
|
|
|
|
para "Underneath this"
|
|
|
|
line "poster…"
|
|
|
|
|
|
|
|
para "There's nothing!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerPoster2Text:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Hey!"
|
|
|
|
|
|
|
|
para "Underneath this"
|
|
|
|
line "poster…"
|
|
|
|
|
|
|
|
para "There's nothing!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonGameCornerLighterText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "There's a lighter"
|
|
|
|
line "here."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
CeladonGameCornerSodaCanText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "A can of soda…"
|
|
|
|
|
|
|
|
para "Someone must be"
|
|
|
|
line "coming back…"
|
|
|
|
|
|
|
|
para "Huh? It's empty!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
CeladonGameCorner_MapEvents:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0, 0 ; filler
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; warp events
|
2018-02-01 18:54:00 -08:00
|
|
|
warp_event 14, 13, CELADON_CITY, 6
|
|
|
|
warp_event 15, 13, CELADON_CITY, 6
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; coord events
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 38 ; bg events
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 1, 6, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 1, 7, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 1, 8, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 1, 9, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 1, 10, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 1, 11, BGEVENT_LEFT, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 6, 6, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 6, 7, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 6, 8, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
2018-02-27 16:33:38 -08:00
|
|
|
bg_event 6, 9, BGEVENT_READ, CeladonGameCornerSodaCanScript
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 6, 10, BGEVENT_READ, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 6, 11, BGEVENT_RIGHT, CeladonGameCornerCardFlipScript
|
|
|
|
bg_event 7, 6, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 7, 7, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 7, 8, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 7, 9, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 7, 10, BGEVENT_READ, CeladonGameCornerSlotMachineScript
|
|
|
|
bg_event 7, 11, BGEVENT_LEFT, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 12, 6, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 12, 7, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 12, 8, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 12, 9, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
2017-12-28 11:31:25 -08:00
|
|
|
bg_event 12, 10, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 12, 11, BGEVENT_RIGHT, CeladonGameCornerLuckySlotMachineScript
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 13, 6, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 13, 7, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 13, 8, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 13, 9, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
2017-12-28 11:31:25 -08:00
|
|
|
bg_event 13, 10, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 13, 11, BGEVENT_LEFT, CeladonGameCornerLuckySlotMachineScript
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 18, 6, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 18, 7, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 18, 8, BGEVENT_READ, CeladonGameCornerLighterScript
|
|
|
|
bg_event 18, 9, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
2017-12-28 11:31:25 -08:00
|
|
|
bg_event 18, 10, BGEVENT_READ, CeladonGameCornerLuckySlotMachineScript
|
|
|
|
bg_event 18, 11, BGEVENT_RIGHT, CeladonGameCornerLuckySlotMachineScript
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 15, 0, BGEVENT_READ, CeladonGameCornerPoster1Script
|
|
|
|
bg_event 9, 0, BGEVENT_READ, CeladonGameCornerPoster2Script
|
2017-12-24 10:46:34 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 9 ; object events
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 5, 2, SPRITE_CLERK, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerClerkScript, -1
|
|
|
|
object_event 3, 2, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerReceptionistScript, -1
|
2017-12-28 11:31:25 -08:00
|
|
|
object_event 14, 10, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerPokefanMScript, -1
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 17, 7, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerTeacherScript, -1
|
|
|
|
object_event 11, 7, SPRITE_FISHING_GURU, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerFishingGuruScript, -1
|
|
|
|
object_event 8, 10, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, DAY, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerFisherScript, -1
|
|
|
|
object_event 8, 10, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, NITE, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerFisherScript, -1
|
|
|
|
object_event 11, 3, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonGymGuyScript, -1
|
|
|
|
object_event 2, 8, SPRITE_GRAMPS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeladonGameCornerGrampsScript, -1
|