2015-11-27 00:22:14 -05:00
|
|
|
const_value set 2
|
|
|
|
const GOLDENRODDEPTSTORE6F_LASS
|
|
|
|
const GOLDENRODDEPTSTORE6F_SUPER_NERD
|
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodDeptStore6F_MapScriptHeader:
|
2015-07-21 00:02:21 -04:00
|
|
|
.MapTriggers:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 0
|
|
|
|
|
2015-07-21 00:02:21 -04:00
|
|
|
.MapCallbacks:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 0
|
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodVendingMachine:
|
2015-12-09 18:25:44 -05:00
|
|
|
opentext
|
2015-06-25 22:01:08 -06:00
|
|
|
writetext GoldenrodVendingText
|
2016-04-10 14:42:14 -04:00
|
|
|
.Start:
|
2015-12-17 22:31:16 -05:00
|
|
|
special PlaceMoneyTopRight
|
2015-06-25 22:01:08 -06:00
|
|
|
loadmenudata .MenuData
|
2015-12-15 18:59:49 -05:00
|
|
|
verticalmenu
|
2015-12-24 22:58:42 -05:00
|
|
|
closewindow
|
2015-06-25 22:01:08 -06:00
|
|
|
if_equal $1, .FreshWater
|
|
|
|
if_equal $2, .SodaPop
|
|
|
|
if_equal $3, .Lemonade
|
2015-11-25 10:16:29 -05:00
|
|
|
closetext
|
2013-02-17 01:54:07 -05:00
|
|
|
end
|
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.FreshWater:
|
2013-02-17 01:54:07 -05:00
|
|
|
checkmoney $0, 200
|
2015-06-25 22:01:08 -06:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-04 20:20:14 -05:00
|
|
|
giveitem FRESH_WATER
|
2015-06-25 22:01:08 -06:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 01:54:07 -05:00
|
|
|
takemoney $0, 200
|
|
|
|
itemtotext FRESH_WATER, $0
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .VendItem
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.SodaPop:
|
2013-02-17 01:54:07 -05:00
|
|
|
checkmoney $0, 300
|
2015-06-25 22:01:08 -06:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-04 20:20:14 -05:00
|
|
|
giveitem SODA_POP
|
2015-06-25 22:01:08 -06:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 01:54:07 -05:00
|
|
|
takemoney $0, 300
|
|
|
|
itemtotext SODA_POP, $0
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .VendItem
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.Lemonade:
|
2013-02-17 01:54:07 -05:00
|
|
|
checkmoney $0, 350
|
2015-06-25 22:01:08 -06:00
|
|
|
if_equal $2, .NotEnoughMoney
|
2015-11-04 20:20:14 -05:00
|
|
|
giveitem LEMONADE
|
2015-06-25 22:01:08 -06:00
|
|
|
iffalse .NotEnoughSpace
|
2013-02-17 01:54:07 -05:00
|
|
|
takemoney $0, 350
|
|
|
|
itemtotext LEMONADE, $0
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .VendItem
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.VendItem:
|
2013-02-17 01:54:07 -05:00
|
|
|
pause 10
|
2014-04-30 06:04:35 -04:00
|
|
|
playsound SFX_ENTER_DOOR
|
2015-06-25 22:01:08 -06:00
|
|
|
writetext GoldenrodClangText
|
2015-11-29 22:29:45 -05:00
|
|
|
buttonsound
|
2013-02-17 01:54:07 -05:00
|
|
|
itemnotify
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .Start
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.NotEnoughMoney:
|
2015-06-25 22:01:08 -06:00
|
|
|
writetext GoldenrodVendingNoMoneyText
|
2015-11-25 10:16:29 -05:00
|
|
|
waitbutton
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .Start
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.NotEnoughSpace:
|
2015-06-25 22:01:08 -06:00
|
|
|
writetext GoldenrodVendingNoSpaceText
|
2015-11-25 10:16:29 -05:00
|
|
|
waitbutton
|
2015-06-25 22:01:08 -06:00
|
|
|
jump .Start
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.MenuData:
|
2013-05-01 05:27:54 -04:00
|
|
|
db $40 ; flags
|
|
|
|
db 02, 00 ; start coords
|
|
|
|
db 11, 19 ; end coords
|
2015-06-25 22:01:08 -06:00
|
|
|
dw .MenuData2
|
2013-05-01 05:27:54 -04:00
|
|
|
db 1 ; default option
|
|
|
|
|
2016-04-10 14:42:14 -04:00
|
|
|
.MenuData2:
|
2013-05-01 05:27:54 -04:00
|
|
|
db $80 ; flags
|
|
|
|
db 4 ; items
|
|
|
|
db "FRESH WATER ¥200@"
|
|
|
|
db "SODA POP ¥300@"
|
|
|
|
db "LEMONADE ¥350@"
|
|
|
|
db "CANCEL@"
|
|
|
|
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2017-12-17 19:48:04 -05:00
|
|
|
GoldenrodDeptStore6FLassScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FLassText
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2017-12-17 19:48:04 -05:00
|
|
|
GoldenrodDeptStore6FSuperNerdScript:
|
|
|
|
jumptextfaceplayer GoldenrodDeptStore6FSuperNerdText
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodDeptStore6FDirectory:
|
|
|
|
jumptext GoldenrodDeptStore6FDirectoryText
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodDeptStore6FElevatorButton:
|
2015-06-24 19:26:24 -06:00
|
|
|
jumpstd elevatorbutton
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodVendingText:
|
2014-03-06 00:29:44 -05:00
|
|
|
text "A vending machine!"
|
|
|
|
line "Here's the menu."
|
|
|
|
done
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodClangText:
|
2014-03-06 00:29:44 -05:00
|
|
|
text "Clang! A can of"
|
|
|
|
line "@"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2014-03-06 00:29:44 -05:00
|
|
|
text $55
|
|
|
|
db "popped out!"
|
|
|
|
done
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodVendingNoMoneyText:
|
2014-03-06 00:29:44 -05:00
|
|
|
text "Oops, not enough"
|
|
|
|
line "money."
|
|
|
|
done
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodVendingNoSpaceText:
|
2014-03-06 00:29:44 -05:00
|
|
|
text "There's no more"
|
|
|
|
line "room for stuff."
|
|
|
|
done
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2017-12-17 19:48:04 -05:00
|
|
|
GoldenrodDeptStore6FLassText:
|
2014-03-06 00:29:44 -05: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 01:54:07 -05:00
|
|
|
|
2017-12-17 19:48:04 -05:00
|
|
|
GoldenrodDeptStore6FSuperNerdText:
|
2014-03-06 00:29:44 -05: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 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodDeptStore6FDirectoryText:
|
2014-03-06 00:29:44 -05:00
|
|
|
text "Take a Break from"
|
|
|
|
line "Shopping!"
|
|
|
|
|
|
|
|
para "6F TRANQUIL SQUARE"
|
|
|
|
done
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-06-25 22:01:08 -06:00
|
|
|
GoldenrodDeptStore6F_MapEventHeader:
|
2013-02-17 01:54:07 -05:00
|
|
|
; filler
|
|
|
|
db 0, 0
|
|
|
|
|
2015-07-21 00:02:21 -04:00
|
|
|
.Warps:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 3
|
2015-07-23 12:59:19 -04:00
|
|
|
warp_def $0, $f, 2, GOLDENROD_DEPT_STORE_5F
|
|
|
|
warp_def $0, $2, 1, GOLDENROD_DEPT_STORE_ELEVATOR
|
|
|
|
warp_def $0, $d, 1, GOLDENROD_DEPT_STORE_ROOF
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-07-21 00:02:21 -04:00
|
|
|
.XYTriggers:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 0
|
|
|
|
|
2015-07-21 00:02:21 -04:00
|
|
|
.Signposts:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 6
|
2015-07-16 18:10:10 -04:00
|
|
|
signpost 0, 14, SIGNPOST_READ, GoldenrodDeptStore6FDirectory
|
|
|
|
signpost 0, 3, SIGNPOST_READ, GoldenrodDeptStore6FElevatorButton
|
|
|
|
signpost 1, 8, SIGNPOST_UP, GoldenrodVendingMachine
|
|
|
|
signpost 1, 9, SIGNPOST_UP, GoldenrodVendingMachine
|
|
|
|
signpost 1, 10, SIGNPOST_UP, GoldenrodVendingMachine
|
|
|
|
signpost 1, 11, SIGNPOST_UP, GoldenrodVendingMachine
|
2013-02-17 01:54:07 -05:00
|
|
|
|
2015-07-21 00:02:21 -04:00
|
|
|
.PersonEvents:
|
2013-02-17 01:54:07 -05:00
|
|
|
db 2
|
2017-12-17 19:48:04 -05:00
|
|
|
person_event SPRITE_LASS, 2, 10, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, GoldenrodDeptStore6FLassScript, -1
|
|
|
|
person_event SPRITE_SUPER_NERD, 2, 8, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, GoldenrodDeptStore6FSuperNerdScript, -1
|