2019-02-16 10:19:39 -08:00
|
|
|
CELADONDEPTSTORE6F_FRESH_WATER_PRICE EQU 200
|
|
|
|
CELADONDEPTSTORE6F_SODA_POP_PRICE EQU 300
|
|
|
|
CELADONDEPTSTORE6F_LEMONADE_PRICE EQU 350
|
|
|
|
|
2019-04-21 14:42:25 -07:00
|
|
|
object_const_def ; object_event constants
|
2015-11-26 21:22:14 -08:00
|
|
|
const CELADONDEPTSTORE6F_SUPER_NERD
|
|
|
|
const CELADONDEPTSTORE6F_YOUNGSTER
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
CeladonDeptStore6F_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 1 ; callbacks
|
2018-01-17 10:23:43 -08:00
|
|
|
callback MAPCALLBACK_TILES, .HideRooftopStairs
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-17 10:23:43 -08:00
|
|
|
.HideRooftopStairs:
|
|
|
|
changeblock 12, 0, $03 ; wall
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonDeptStore6FSuperNerdScript:
|
|
|
|
jumptextfaceplayer CeladonDeptStore6FSuperNerdText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonDeptStore6FYoungsterScript:
|
|
|
|
jumptextfaceplayer CeladonDeptStore6FYoungsterText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
CeladonDeptStore6FVendingMachine:
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-06-25 21:01:08 -07:00
|
|
|
writetext CeladonVendingText
|
2016-04-10 11:42:14 -07:00
|
|
|
.Start:
|
2018-01-24 08:17:05 -08:00
|
|
|
special PlaceMoneyTopRight
|
2018-02-25 17:05:37 -08:00
|
|
|
loadmenu .MenuHeader
|
2015-12-15 15:59:49 -08:00
|
|
|
verticalmenu
|
2015-12-24 19:58:42 -08:00
|
|
|
closewindow
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal 1, .FreshWater
|
|
|
|
ifequal 2, .SodaPop
|
|
|
|
ifequal 3, .Lemonade
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.FreshWater:
|
2019-02-16 10:19:39 -08:00
|
|
|
checkmoney YOUR_MONEY, CELADONDEPTSTORE6F_FRESH_WATER_PRICE
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem FRESH_WATER
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 10:19:39 -08:00
|
|
|
takemoney YOUR_MONEY, CELADONDEPTSTORE6F_FRESH_WATER_PRICE
|
2019-03-10 12:31:59 -07:00
|
|
|
getitemname STRING_BUFFER_3, FRESH_WATER
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .VendItem
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.SodaPop:
|
2019-02-16 10:19:39 -08:00
|
|
|
checkmoney YOUR_MONEY, CELADONDEPTSTORE6F_SODA_POP_PRICE
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem SODA_POP
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 10:19:39 -08:00
|
|
|
takemoney YOUR_MONEY, CELADONDEPTSTORE6F_SODA_POP_PRICE
|
2019-03-10 12:31:59 -07:00
|
|
|
getitemname STRING_BUFFER_3, SODA_POP
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .VendItem
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.Lemonade:
|
2019-02-16 10:19:39 -08:00
|
|
|
checkmoney YOUR_MONEY, CELADONDEPTSTORE6F_LEMONADE_PRICE
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem LEMONADE
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 10:19:39 -08:00
|
|
|
takemoney YOUR_MONEY, CELADONDEPTSTORE6F_LEMONADE_PRICE
|
2019-03-10 12:31:59 -07:00
|
|
|
getitemname STRING_BUFFER_3, LEMONADE
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .VendItem
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.VendItem:
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 10
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ENTER_DOOR
|
2015-06-25 21:01:08 -07:00
|
|
|
writetext CeladonClangText
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
itemnotify
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .Start
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.NotEnoughMoney:
|
2015-06-25 21:01:08 -07:00
|
|
|
writetext CeladonVendingNoMoneyText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .Start
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.NotEnoughSpace:
|
2015-06-25 21:01:08 -07:00
|
|
|
writetext CeladonVendingNoSpaceText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .Start
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-23 13:08:43 -08:00
|
|
|
.MenuHeader:
|
2018-01-14 02:59:56 -08:00
|
|
|
db MENU_BACKUP_TILES ; flags
|
2018-01-13 13:38:14 -08:00
|
|
|
menu_coords 0, 2, SCREEN_WIDTH - 1, TEXTBOX_Y - 1
|
2018-01-23 13:08:43 -08:00
|
|
|
dw .MenuData
|
2013-04-30 23:24:05 -07:00
|
|
|
db 1 ; default option
|
|
|
|
|
2018-01-23 13:08:43 -08:00
|
|
|
.MenuData:
|
2018-01-14 02:59:56 -08:00
|
|
|
db STATICMENU_CURSOR ; flags
|
2013-04-30 23:24:05 -07:00
|
|
|
db 4 ; items
|
|
|
|
db "FRESH WATER ¥200@"
|
|
|
|
db "SODA POP ¥300@"
|
|
|
|
db "LEMONADE ¥350@"
|
|
|
|
db "CANCEL@"
|
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonDeptStore6FDirectory:
|
|
|
|
jumptext CeladonDeptStore6FDirectoryText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
; unused
|
|
|
|
CeladonDeptStore6FElevatorButton:
|
2020-06-10 13:44:16 -07:00
|
|
|
jumpstd ElevatorButtonScript
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonVendingText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "A vending machine!"
|
|
|
|
line "Here's the menu."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonClangText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Clang!"
|
|
|
|
|
|
|
|
para "@"
|
2018-11-17 10:33:03 -08:00
|
|
|
text_ram wStringBuffer3
|
2018-01-18 15:34:20 -08:00
|
|
|
text_start
|
2014-03-05 21:29:44 -08:00
|
|
|
line "popped out."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonVendingNoMoneyText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Oops, not enough"
|
|
|
|
line "money…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonVendingNoSpaceText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "There's no more"
|
|
|
|
line "room for stuff…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonDeptStore6FSuperNerdText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "A vending machine"
|
|
|
|
line "with a prize rou-"
|
|
|
|
cont "lette…"
|
|
|
|
|
|
|
|
para "You never see"
|
|
|
|
line "those anymore."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
CeladonDeptStore6FYoungsterText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Aww! There's no"
|
|
|
|
line "games here!"
|
|
|
|
|
|
|
|
para "I wanted to play…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
CeladonDeptStore6FDirectoryText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "6F: ROOFTOP SQUARE"
|
|
|
|
line "VENDING MACHINES"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
CeladonDeptStore6F_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 19:22:07 -08:00
|
|
|
warp_event 15, 0, CELADON_DEPT_STORE_5F, 2
|
|
|
|
warp_event 2, 0, CELADON_DEPT_STORE_ELEVATOR, 1
|
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 6 ; bg events
|
2018-02-01 19:22:07 -08: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 10:46:34 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; object events
|
2018-02-01 19:22:07 -08: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
|