2015-11-27 05:22:14 +00:00
|
|
|
const_value set 2
|
|
|
|
const CELADONDEPTSTORE6F_SUPER_NERD
|
|
|
|
const CELADONDEPTSTORE6F_YOUNGSTER
|
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonDeptStore6F_MapScriptHeader:
|
2017-12-24 18:46:34 +00:00
|
|
|
.SceneScripts:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 0
|
|
|
|
|
2015-07-21 04:02:21 +00:00
|
|
|
.MapCallbacks:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 1
|
2016-01-06 12:44:50 +00:00
|
|
|
dbw MAPCALLBACK_TILES, .Callback
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-11-17 17:29:37 +00:00
|
|
|
.Callback:
|
2018-01-09 23:45:25 +00:00
|
|
|
changeblock 12, 0, $3
|
2013-02-17 06:54:07 +00:00
|
|
|
return
|
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
CeladonDeptStore6FSuperNerdScript:
|
|
|
|
jumptextfaceplayer CeladonDeptStore6FSuperNerdText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
CeladonDeptStore6FYoungsterScript:
|
|
|
|
jumptextfaceplayer CeladonDeptStore6FYoungsterText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 01:45:04 +00:00
|
|
|
CeladonDeptStore6FVendingMachine:
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-06-26 04:01:08 +00:00
|
|
|
writetext CeladonVendingText
|
2016-04-10 18:42:14 +00:00
|
|
|
.Start:
|
2015-12-18 03:31:16 +00:00
|
|
|
special PlaceMoneyTopRight
|
2015-06-26 04:01:08 +00:00
|
|
|
loadmenudata .MenuData
|
2015-12-15 23:59:49 +00:00
|
|
|
verticalmenu
|
2015-12-25 03:58:42 +00:00
|
|
|
closewindow
|
2015-06-26 04:01:08 +00:00
|
|
|
if_equal $1, .FreshWater
|
|
|
|
if_equal $2, .SodaPop
|
|
|
|
if_equal $3, .Lemonade
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.FreshWater:
|
2013-02-17 06:54:07 +00:00
|
|
|
checkmoney $0, 200
|
2015-06-26 04:01:08 +00:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem FRESH_WATER
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 06:54:07 +00:00
|
|
|
takemoney $0, 200
|
|
|
|
itemtotext FRESH_WATER, $0
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .VendItem
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.SodaPop:
|
2013-02-17 06:54:07 +00:00
|
|
|
checkmoney $0, 300
|
2015-06-26 04:01:08 +00:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem SODA_POP
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 06:54:07 +00:00
|
|
|
takemoney $0, 300
|
|
|
|
itemtotext SODA_POP, $0
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .VendItem
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.Lemonade:
|
2013-02-17 06:54:07 +00:00
|
|
|
checkmoney $0, 350
|
2015-06-26 04:01:08 +00:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem LEMONADE
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 06:54:07 +00:00
|
|
|
takemoney $0, 350
|
|
|
|
itemtotext LEMONADE, $0
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .VendItem
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.VendItem:
|
2013-02-17 06:54:07 +00:00
|
|
|
pause 10
|
2014-04-30 10:04:35 +00:00
|
|
|
playsound SFX_ENTER_DOOR
|
2015-06-26 04:01:08 +00:00
|
|
|
writetext CeladonClangText
|
2015-11-30 03:29:45 +00:00
|
|
|
buttonsound
|
2013-02-17 06:54:07 +00:00
|
|
|
itemnotify
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .Start
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.NotEnoughMoney:
|
2015-06-26 04:01:08 +00:00
|
|
|
writetext CeladonVendingNoMoneyText
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .Start
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.NotEnoughSpace:
|
2015-06-26 04:01:08 +00:00
|
|
|
writetext CeladonVendingNoSpaceText
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2015-06-26 04:01:08 +00:00
|
|
|
jump .Start
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.MenuData:
|
2013-05-01 06:24:05 +00:00
|
|
|
db $40 ; flags
|
|
|
|
db 02, 00 ; start coords
|
|
|
|
db 11, 19 ; end coords
|
2015-06-26 04:01:08 +00:00
|
|
|
dw .MenuData2
|
2013-05-01 06:24:05 +00:00
|
|
|
db 1 ; default option
|
|
|
|
|
2016-04-10 18:42:14 +00:00
|
|
|
.MenuData2:
|
2013-05-01 06:24:05 +00:00
|
|
|
db $80 ; flags
|
|
|
|
db 4 ; items
|
|
|
|
db "FRESH WATER ¥200@"
|
|
|
|
db "SODA POP ¥300@"
|
|
|
|
db "LEMONADE ¥350@"
|
|
|
|
db "CANCEL@"
|
|
|
|
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonDeptStore6FDirectory:
|
|
|
|
jumptext CeladonDeptStore6FDirectoryText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 01:45:04 +00:00
|
|
|
; unused
|
|
|
|
CeladonDeptStore6FElevatorButton:
|
2015-06-25 01:26:24 +00:00
|
|
|
jumpstd elevatorbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonVendingText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "A vending machine!"
|
|
|
|
line "Here's the menu."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonClangText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Clang!"
|
|
|
|
|
|
|
|
para "@"
|
2015-02-10 23:37:24 +00:00
|
|
|
text_from_ram StringBuffer3
|
2015-06-28 04:59:17 +00:00
|
|
|
text ""
|
2014-03-06 05:29:44 +00:00
|
|
|
line "popped out."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonVendingNoMoneyText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Oops, not enough"
|
|
|
|
line "money…"
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonVendingNoSpaceText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "There's no more"
|
|
|
|
line "room for stuff…"
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
CeladonDeptStore6FSuperNerdText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "A vending machine"
|
|
|
|
line "with a prize rou-"
|
|
|
|
cont "lette…"
|
|
|
|
|
|
|
|
para "You never see"
|
|
|
|
line "those anymore."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
CeladonDeptStore6FYoungsterText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Aww! There's no"
|
|
|
|
line "games here!"
|
|
|
|
|
|
|
|
para "I wanted to play…"
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonDeptStore6FDirectoryText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "6F: ROOFTOP SQUARE"
|
|
|
|
line "VENDING MACHINES"
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
CeladonDeptStore6F_MapEventHeader:
|
2013-02-17 06:54:07 +00:00
|
|
|
; filler
|
|
|
|
db 0, 0
|
|
|
|
|
2015-07-21 04:02:21 +00:00
|
|
|
.Warps:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 2
|
2017-12-28 19:31:25 +00:00
|
|
|
warp_def 15, 0, 2, CELADON_DEPT_STORE_5F
|
|
|
|
warp_def 2, 0, 1, CELADON_DEPT_STORE_ELEVATOR
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-24 18:46:34 +00:00
|
|
|
.CoordEvents:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 0
|
|
|
|
|
2017-12-24 18:46:34 +00:00
|
|
|
.BGEvents:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 6
|
2017-12-28 19:31:25 +00:00
|
|
|
bg_event 14, 0, BGEVENT_READ, CeladonDeptStore6FDirectory
|
|
|
|
bg_event 3, 0, BGEVENT_READ, CeladonDeptStore1FElevatorButton
|
|
|
|
bg_event 8, 1, BGEVENT_UP, CeladonDeptStore6FVendingMachine
|
|
|
|
bg_event 9, 1, BGEVENT_UP, CeladonDeptStore6FVendingMachine
|
|
|
|
bg_event 10, 1, BGEVENT_UP, CeladonDeptStore6FVendingMachine
|
|
|
|
bg_event 11, 1, BGEVENT_UP, CeladonDeptStore6FVendingMachine
|
2017-12-24 18:46:34 +00:00
|
|
|
|
|
|
|
.ObjectEvents:
|
2013-02-17 06:54:07 +00:00
|
|
|
db 2
|
2017-12-28 19:31:25 +00:00
|
|
|
object_event 9, 2, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore6FSuperNerdScript, -1
|
|
|
|
object_event 12, 5, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WANDER, 2, 1, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CeladonDeptStore6FYoungsterScript, -1
|