2019-02-16 18:19:39 +00:00
|
|
|
GOLDENRODDEPTSTORE6F_FRESH_WATER_PRICE EQU 200
|
|
|
|
GOLDENRODDEPTSTORE6F_SODA_POP_PRICE EQU 300
|
|
|
|
GOLDENRODDEPTSTORE6F_LEMONADE_PRICE EQU 350
|
|
|
|
|
2018-01-31 16:38:45 +00:00
|
|
|
const_def 2 ; object constants
|
2015-11-27 05:22:14 +00:00
|
|
|
const GOLDENRODDEPTSTORE6F_LASS
|
|
|
|
const GOLDENRODDEPTSTORE6F_SUPER_NERD
|
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
GoldenrodDeptStore6F_MapScripts:
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; scene scripts
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; callbacks
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
GoldenrodVendingMachine:
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-06-26 04:01:08 +00:00
|
|
|
writetext GoldenrodVendingText
|
2016-04-10 18:42:14 +00:00
|
|
|
.Start:
|
2018-01-24 16:17:05 +00:00
|
|
|
special PlaceMoneyTopRight
|
2018-02-26 01:05:37 +00:00
|
|
|
loadmenu .MenuHeader
|
2015-12-15 23:59:49 +00:00
|
|
|
verticalmenu
|
2015-12-25 03:58:42 +00:00
|
|
|
closewindow
|
2018-02-03 02:09:17 +00:00
|
|
|
ifequal 1, .FreshWater
|
|
|
|
ifequal 2, .SodaPop
|
|
|
|
ifequal 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:
|
2019-02-16 18:19:39 +00:00
|
|
|
checkmoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_FRESH_WATER_PRICE
|
2018-02-03 02:09:17 +00:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem FRESH_WATER
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 18:19:39 +00:00
|
|
|
takemoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_FRESH_WATER_PRICE
|
2018-01-12 06:40:20 +00:00
|
|
|
itemtotext FRESH_WATER, MEM_BUFFER_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:
|
2019-02-16 18:19:39 +00:00
|
|
|
checkmoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_SODA_POP_PRICE
|
2018-02-03 02:09:17 +00:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem SODA_POP
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 18:19:39 +00:00
|
|
|
takemoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_SODA_POP_PRICE
|
2018-01-12 06:40:20 +00:00
|
|
|
itemtotext SODA_POP, MEM_BUFFER_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:
|
2019-02-16 18:19:39 +00:00
|
|
|
checkmoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_LEMONADE_PRICE
|
2018-02-03 02:09:17 +00:00
|
|
|
ifequal HAVE_LESS, .NotEnoughMoney
|
2015-11-05 01:20:14 +00:00
|
|
|
giveitem LEMONADE
|
2015-06-26 04:01:08 +00:00
|
|
|
iffalse .NotEnoughSpace
|
2019-02-16 18:19:39 +00:00
|
|
|
takemoney YOUR_MONEY, GOLDENRODDEPTSTORE6F_LEMONADE_PRICE
|
2018-01-12 06:40:20 +00:00
|
|
|
itemtotext LEMONADE, MEM_BUFFER_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 GoldenrodClangText
|
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 GoldenrodVendingNoMoneyText
|
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 GoldenrodVendingNoSpaceText
|
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
|
|
|
|
2018-01-23 21:08:43 +00:00
|
|
|
.MenuHeader:
|
2018-01-14 10:59:56 +00:00
|
|
|
db MENU_BACKUP_TILES ; flags
|
2018-01-13 21:38:14 +00:00
|
|
|
menu_coords 0, 2, SCREEN_WIDTH - 1, TEXTBOX_Y - 1
|
2018-01-23 21:08:43 +00:00
|
|
|
dw .MenuData
|
2013-05-01 09:27:54 +00:00
|
|
|
db 1 ; default option
|
|
|
|
|
2018-01-23 21:08:43 +00:00
|
|
|
.MenuData:
|
2018-01-14 10:59:56 +00:00
|
|
|
db STATICMENU_CURSOR ; flags
|
2013-05-01 09:27:54 +00:00
|
|
|
db 4 ; items
|
|
|
|
db "FRESH WATER ¥200@"
|
|
|
|
db "SODA POP ¥300@"
|
|
|
|
db "LEMONADE ¥350@"
|
|
|
|
db "CANCEL@"
|
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
GoldenrodDeptStore6FLassScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FLassText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
GoldenrodDeptStore6FSuperNerdScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FSuperNerdText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
GoldenrodDeptStore6FDirectory:
|
|
|
|
jumptext GoldenrodDeptStore6FDirectoryText
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
GoldenrodDeptStore6FElevatorButton:
|
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
|
|
|
GoldenrodVendingText:
|
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
|
|
|
GoldenrodClangText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Clang! A can of"
|
|
|
|
line "@"
|
2018-11-17 18:33:03 +00:00
|
|
|
text_ram wStringBuffer3
|
2018-01-18 23:34:20 +00:00
|
|
|
text_start
|
2018-01-09 23:45:25 +00:00
|
|
|
cont "popped out!"
|
2014-03-06 05:29:44 +00:00
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
GoldenrodVendingNoMoneyText:
|
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
|
|
|
GoldenrodVendingNoSpaceText:
|
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
|
|
|
GoldenrodDeptStore6FLassText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Do you listen to"
|
|
|
|
line "LUCKY CHANNEL?"
|
|
|
|
|
|
|
|
para "If you want to"
|
|
|
|
line "win, trade #MON"
|
|
|
|
|
|
|
|
para "with as many peo-"
|
|
|
|
line "ple as possible to"
|
|
|
|
|
|
|
|
para "get different ID"
|
|
|
|
line "numbers."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-12-18 00:48:04 +00:00
|
|
|
GoldenrodDeptStore6FSuperNerdText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "If you're tired,"
|
|
|
|
line "try the vending"
|
|
|
|
cont "machine's drinks."
|
|
|
|
|
|
|
|
para "Your #MON will"
|
|
|
|
line "love them too."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-06-26 04:01:08 +00:00
|
|
|
GoldenrodDeptStore6FDirectoryText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Take a Break from"
|
|
|
|
line "Shopping!"
|
|
|
|
|
|
|
|
para "6F TRANQUIL SQUARE"
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
GoldenrodDeptStore6F_MapEvents:
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0, 0 ; filler
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 3 ; warp events
|
2018-02-02 03:22:07 +00:00
|
|
|
warp_event 15, 0, GOLDENROD_DEPT_STORE_5F, 2
|
|
|
|
warp_event 2, 0, GOLDENROD_DEPT_STORE_ELEVATOR, 1
|
|
|
|
warp_event 13, 0, GOLDENROD_DEPT_STORE_ROOF, 1
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; coord events
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 6 ; bg events
|
2018-02-02 03:22:07 +00:00
|
|
|
bg_event 14, 0, BGEVENT_READ, GoldenrodDeptStore6FDirectory
|
|
|
|
bg_event 3, 0, BGEVENT_READ, GoldenrodDeptStore6FElevatorButton
|
|
|
|
bg_event 8, 1, BGEVENT_UP, GoldenrodVendingMachine
|
|
|
|
bg_event 9, 1, BGEVENT_UP, GoldenrodVendingMachine
|
|
|
|
bg_event 10, 1, BGEVENT_UP, GoldenrodVendingMachine
|
|
|
|
bg_event 11, 1, BGEVENT_UP, GoldenrodVendingMachine
|
2017-12-24 18:46:34 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 2 ; object events
|
2018-02-02 03:22:07 +00:00
|
|
|
object_event 10, 2, SPRITE_LASS, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStore6FLassScript, -1
|
|
|
|
object_event 8, 2, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodDeptStore6FSuperNerdScript, -1
|