2015-11-26 21:22:14 -08:00
|
|
|
const_value set 2
|
|
|
|
const GOLDENRODDEPTSTORE6F_LASS
|
|
|
|
const GOLDENRODDEPTSTORE6F_SUPER_NERD
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
GoldenrodDeptStore6F_MapScripts:
|
2017-12-24 10:46:34 -08:00
|
|
|
.SceneScripts:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 0
|
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.MapCallbacks:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 0
|
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodVendingMachine:
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-06-25 21:01:08 -07:00
|
|
|
writetext GoldenrodVendingText
|
2016-04-10 11:42:14 -07:00
|
|
|
.Start:
|
2018-01-02 08:13:57 -08:00
|
|
|
special Special_PlaceMoneyTopRight
|
2015-06-25 21:01:08 -07:00
|
|
|
loadmenudata .MenuData
|
2015-12-15 15:59:49 -08:00
|
|
|
verticalmenu
|
2015-12-24 19:58:42 -08:00
|
|
|
closewindow
|
2018-01-11 22:40:20 -08:00
|
|
|
if_equal 1, .FreshWater
|
|
|
|
if_equal 2, .SodaPop
|
|
|
|
if_equal 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:
|
2018-01-11 22:40:20 -08:00
|
|
|
checkmoney YOUR_MONEY, 200
|
|
|
|
if_equal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem FRESH_WATER
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2018-01-11 22:40:20 -08:00
|
|
|
takemoney YOUR_MONEY, 200
|
|
|
|
itemtotext FRESH_WATER, MEM_BUFFER_0
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .VendItem
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.SodaPop:
|
2018-01-11 22:40:20 -08:00
|
|
|
checkmoney YOUR_MONEY, 300
|
|
|
|
if_equal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem SODA_POP
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2018-01-11 22:40:20 -08:00
|
|
|
takemoney YOUR_MONEY, 300
|
|
|
|
itemtotext SODA_POP, MEM_BUFFER_0
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .VendItem
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.Lemonade:
|
2018-01-11 22:40:20 -08:00
|
|
|
checkmoney YOUR_MONEY, 350
|
|
|
|
if_equal HAVE_LESS, .NotEnoughMoney
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem LEMONADE
|
2015-06-25 21:01:08 -07:00
|
|
|
iffalse .NotEnoughSpace
|
2018-01-11 22:40:20 -08:00
|
|
|
takemoney YOUR_MONEY, 350
|
|
|
|
itemtotext LEMONADE, MEM_BUFFER_0
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .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 GoldenrodClangText
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2013-02-16 22:54:07 -08:00
|
|
|
itemnotify
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .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 GoldenrodVendingNoMoneyText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .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 GoldenrodVendingNoSpaceText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2015-06-25 21:01:08 -07:00
|
|
|
jump .Start
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.MenuData:
|
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
|
2015-06-25 21:01:08 -07:00
|
|
|
dw .MenuData2
|
2013-05-01 02:27:54 -07:00
|
|
|
db 1 ; default option
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.MenuData2:
|
2018-01-14 02:59:56 -08:00
|
|
|
db STATICMENU_CURSOR ; flags
|
2013-05-01 02:27:54 -07:00
|
|
|
db 4 ; items
|
|
|
|
db "FRESH WATER ¥200@"
|
|
|
|
db "SODA POP ¥300@"
|
|
|
|
db "LEMONADE ¥350@"
|
|
|
|
db "CANCEL@"
|
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
GoldenrodDeptStore6FLassScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FLassText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
GoldenrodDeptStore6FSuperNerdScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FSuperNerdText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodDeptStore6FDirectory:
|
|
|
|
jumptext GoldenrodDeptStore6FDirectoryText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodDeptStore6FElevatorButton:
|
2015-06-24 18:26:24 -07:00
|
|
|
jumpstd elevatorbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodVendingText:
|
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
|
|
|
GoldenrodClangText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Clang! A can of"
|
|
|
|
line "@"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2018-01-18 15:34:20 -08:00
|
|
|
text_start
|
2018-01-09 15:45:25 -08:00
|
|
|
cont "popped out!"
|
2014-03-05 21:29:44 -08:00
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodVendingNoMoneyText:
|
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
|
|
|
GoldenrodVendingNoSpaceText:
|
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
|
|
|
GoldenrodDeptStore6FLassText:
|
2014-03-05 21:29:44 -08: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-16 22:54:07 -08:00
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
GoldenrodDeptStore6FSuperNerdText:
|
2014-03-05 21:29:44 -08: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-16 22:54:07 -08:00
|
|
|
|
2015-06-25 21:01:08 -07:00
|
|
|
GoldenrodDeptStore6FDirectoryText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Take a Break from"
|
|
|
|
line "Shopping!"
|
|
|
|
|
|
|
|
para "6F TRANQUIL SQUARE"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
GoldenrodDeptStore6F_MapEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
; filler
|
|
|
|
db 0, 0
|
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.Warps:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 3
|
2017-12-28 11:31:25 -08:00
|
|
|
warp_def 15, 0, 2, GOLDENROD_DEPT_STORE_5F
|
|
|
|
warp_def 2, 0, 1, GOLDENROD_DEPT_STORE_ELEVATOR
|
|
|
|
warp_def 13, 0, 1, GOLDENROD_DEPT_STORE_ROOF
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.CoordEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 0
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.BGEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 6
|
2017-12-28 11:31:25 -08: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 10:46:34 -08:00
|
|
|
|
|
|
|
.ObjectEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 2
|
2017-12-28 11:31:25 -08: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
|