pokeemerald/data/maps/MauvilleCity_GameCorner/scripts.inc

822 lines
26 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
MauvilleCity_GameCorner_MapScripts:: @ 820FBB8
.byte 0
2019-11-07 15:41:59 +01:00
@ Game Corner prices
.set TM32_COINS, 1500
.set TM29_COINS, 3500
.set TM35_COINS, 4000
.set TM24_COINS, 4000
.set TM13_COINS, 4000
.set DOLL_COINS, 1000
.set COINS_PRICE_50, 1000
.set COINS_PRICE_500, 10000
MauvilleCity_GameCorner_EventScript_CoinsClerk:: @ 820FBB9
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_ThisIsMauvilleGameCorner, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NeedCoinCase
message MauvilleCity_GameCorner_Text_WereYouLookingForCoins
2017-11-10 02:21:31 +01:00
waitmessage
showmoneybox 0, 0, 0
showcoinsbox 1, 6
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ChooseCoinsDefault50
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ChooseCoinsDefault50:: @ 820FBE5
2021-03-31 06:35:56 +02:00
multichoicedefault 15, 0, MULTI_GAME_CORNER_COINS, 0, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-07 15:41:59 +01:00
case 0, MauvilleCity_GameCorner_EventScript_Buy50Coins
case 1, MauvilleCity_GameCorner_EventScript_Buy500Coins
goto MauvilleCity_GameCorner_EventScript_CancelBuyCoins
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
@ Unused
MauvilleCity_GameCorner_EventScript_ChooseCoinsDefault500:: @ 820FC0C
2021-03-31 06:35:56 +02:00
multichoicedefault 15, 0, MULTI_GAME_CORNER_COINS, 1, FALSE
switch VAR_RESULT
2019-11-07 15:41:59 +01:00
case 0, MauvilleCity_GameCorner_EventScript_Buy50Coins
case 1, MauvilleCity_GameCorner_EventScript_Buy500Coins
goto MauvilleCity_GameCorner_EventScript_CancelBuyCoins
end
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Buy50Coins:: @ 820FC33
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_1
2020-02-12 06:44:09 +01:00
compare VAR_TEMP_1, (MAX_COINS + 1 - 50)
2019-11-07 15:41:59 +01:00
goto_if_ge MauvilleCity_GameCorner_EventScript_NoRoomForCoins
checkmoney COINS_PRICE_50, 0
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NotEnoughMoney
addcoins 50
removemoney COINS_PRICE_50, 0
2019-08-18 05:26:46 +02:00
updatemoneybox 0, 0
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 6
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_ThankYouHereAreYourCoins, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidemoneybox
hidecoinsbox 0, 5
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Buy500Coins:: @ 820FC75
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_1
2020-02-12 06:44:09 +01:00
compare VAR_TEMP_1, (MAX_COINS + 1 - 500)
2019-11-07 15:41:59 +01:00
goto_if_ge MauvilleCity_GameCorner_EventScript_NoRoomForCoins
checkmoney COINS_PRICE_500, 0
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NotEnoughMoney
addcoins 500
removemoney COINS_PRICE_500, 0
2019-08-18 05:26:46 +02:00
updatemoneybox 0, 0
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 6
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_ThankYouHereAreYourCoins, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidemoneybox
hidecoinsbox 0, 5
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NeedCoinCase:: @ 820FCB7
msgbox MauvilleCity_GameCorner_Text_NeedCoinCaseForCoins, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NotEnoughMoney:: @ 820FCC1
msgbox MauvilleCity_GameCorner_Text_DontHaveEnoughMoney, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidemoneybox
hidecoinsbox 0, 5
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_CancelBuyCoins:: @ 820FCD1
msgbox MauvilleCity_GameCorner_Text_DontNeedCoinsThen, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidemoneybox
hidecoinsbox 0, 5
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NoRoomForCoins:: @ 820FCE1
msgbox MauvilleCity_GameCorner_Text_CoinCaseIsFull, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidemoneybox
hidecoinsbox 0, 5
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_PrizeCornerDolls:: @ 820FCF1
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_ExchangeCoinsForPrizes, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, TRUE
goto_if_eq MauvilleCity_GameCorner_EventScript_ChooseDollPrizeMessage
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ChooseDollPrizeMessage:: @ 820FD0D
message MauvilleCity_GameCorner_Text_WhichPrize
2017-11-10 02:21:31 +01:00
waitmessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 0
2017-11-10 02:21:31 +01:00
showcoinsbox 1, 1
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ChooseDollPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize:: @ 820FD20
message MauvilleCity_GameCorner_Text_WhichPrize
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ChooseDollPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ChooseDollPrize:: @ 820FD2B
2021-03-31 06:35:56 +02:00
multichoice 12, 0, MULTI_GAME_CORNER_DOLLS, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-07 15:41:59 +01:00
case 0, MauvilleCity_GameCorner_EventScript_TreeckoDoll
case 1, MauvilleCity_GameCorner_EventScript_TorchicDoll
case 2, MauvilleCity_GameCorner_EventScript_MudkipDoll
case 3, MauvilleCity_GameCorner_EventScript_CancelDollSelect
goto MauvilleCity_GameCorner_EventScript_CancelDollSelect
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TreeckoDoll:: @ 820FD67
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
2019-09-16 05:47:07 +02:00
bufferdecorationname 0, DECOR_TREECKO_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ConfirmDollPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TorchicDoll:: @ 820FD75
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 2
2019-09-16 05:47:07 +02:00
bufferdecorationname 0, DECOR_TORCHIC_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ConfirmDollPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_MudkipDoll:: @ 820FD83
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 3
2019-09-16 05:47:07 +02:00
bufferdecorationname 0, DECOR_MUDKIP_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ConfirmDollPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ConfirmDollPrize:: @ 820FD91
msgbox MauvilleCity_GameCorner_Text_SoYourChoiceIsX, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-07 15:41:59 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_CancelDollSelect
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_1
2019-11-07 15:41:59 +01:00
case 1, MauvilleCity_GameCorner_EventScript_BuyTreeckoDoll
case 2, MauvilleCity_GameCorner_EventScript_BuyTorchicDoll
case 3, MauvilleCity_GameCorner_EventScript_BuyMudkipDoll
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTreeckoDoll:: @ 820FDCB
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, DOLL_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForDoll
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_TREECKO_DOLL
checkdecorspace DECOR_TREECKO_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForDoll
removecoins DOLL_COINS
adddecoration DECOR_TREECKO_DOLL
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_SendToYourHomePC, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTorchicDoll:: @ 820FE05
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, DOLL_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForDoll
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_TORCHIC_DOLL
checkdecorspace DECOR_TORCHIC_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForDoll
removecoins DOLL_COINS
adddecoration DECOR_TORCHIC_DOLL
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_SendToYourHomePC, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyMudkipDoll:: @ 820FE3F
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, DOLL_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForDoll
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_MUDKIP_DOLL
checkdecorspace DECOR_MUDKIP_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForDoll
removecoins DOLL_COINS
adddecoration DECOR_MUDKIP_DOLL
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_SendToYourHomePC, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForDoll:: @ 820FE79
msgbox MauvilleCity_GameCorner_Text_NotEnoughCoins, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NoRoomForDoll:: @ 820FE87
call Common_EventScript_NoRoomForDecor
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseDollPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_CancelDollSelect:: @ 820FE92
msgbox MauvilleCity_GameCorner_Text_OhIsThatSo, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidecoinsbox 0, 0
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_PrizeCornerTMs:: @ 820FE9F
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_ExchangeCoinsForPrizes, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, TRUE
goto_if_eq MauvilleCity_GameCorner_EventScript_ChooseTMPrizeMessage
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ChooseTMPrizeMessage:: @ 820FEBB
message MauvilleCity_GameCorner_Text_WhichPrize
2017-11-10 02:21:31 +01:00
waitmessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 0
2017-11-10 02:21:31 +01:00
showcoinsbox 1, 1
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ChooseTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize:: @ 820FECE
message MauvilleCity_GameCorner_Text_WhichPrize
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ChooseTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ChooseTMPrize:: @ 820FED9
2021-03-31 06:35:56 +02:00
multichoice 12, 0, MULTI_GAME_CORNER_TMS, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-07 15:41:59 +01:00
case 0, MauvilleCity_GameCorner_EventScript_TM32
case 1, MauvilleCity_GameCorner_EventScript_TM29
case 2, MauvilleCity_GameCorner_EventScript_TM35
case 3, MauvilleCity_GameCorner_EventScript_TM24
case 4, MauvilleCity_GameCorner_EventScript_TM13
case 5, MauvilleCity_GameCorner_EventScript_CancelTMSelect
goto MauvilleCity_GameCorner_EventScript_CancelTMSelect
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TM32:: @ 820FF2B
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
2017-11-10 02:21:31 +01:00
bufferitemname 0, ITEM_TM32
2019-11-07 15:41:59 +01:00
setvar VAR_0x8004, ITEM_TM32
goto MauvilleCity_GameCorner_EventScript_ConfirmTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TM29:: @ 820FF3E
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 2
2017-11-10 02:21:31 +01:00
bufferitemname 0, ITEM_TM29
2019-11-07 15:41:59 +01:00
setvar VAR_0x8004, ITEM_TM29
goto MauvilleCity_GameCorner_EventScript_ConfirmTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TM35:: @ 820FF51
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 3
2017-11-10 02:21:31 +01:00
bufferitemname 0, ITEM_TM35
2019-11-07 15:41:59 +01:00
setvar VAR_0x8004, ITEM_TM35
goto MauvilleCity_GameCorner_EventScript_ConfirmTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TM24:: @ 820FF64
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 4
2017-11-10 02:21:31 +01:00
bufferitemname 0, ITEM_TM24
2019-11-07 15:41:59 +01:00
setvar VAR_0x8004, ITEM_TM24
goto MauvilleCity_GameCorner_EventScript_ConfirmTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TM13:: @ 820FF77
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 5
2017-11-10 02:21:31 +01:00
bufferitemname 0, ITEM_TM13
2019-11-07 15:41:59 +01:00
setvar VAR_0x8004, ITEM_TM13
goto MauvilleCity_GameCorner_EventScript_ConfirmTMPrize
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ConfirmTMPrize:: @ 820FF8A
2019-09-13 20:24:07 +02:00
special BufferTMHMMoveName
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_SoYourChoiceIsTheTMX, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-07 15:41:59 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_CancelTMSelect
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_1
2019-11-07 15:41:59 +01:00
case 1, MauvilleCity_GameCorner_EventScript_BuyTM32
case 2, MauvilleCity_GameCorner_EventScript_BuyTM29
case 3, MauvilleCity_GameCorner_EventScript_BuyTM35
case 4, MauvilleCity_GameCorner_EventScript_BuyTM24
case 5, MauvilleCity_GameCorner_EventScript_BuyTM13
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTM32:: @ 820FFDD
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, TM32_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM
2017-11-10 02:21:31 +01:00
checkitemspace ITEM_TM32, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForTM
removecoins TM32_COINS
additem ITEM_TM32
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HereYouGo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTM29:: @ 8210017
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, TM29_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM
2017-11-10 02:21:31 +01:00
checkitemspace ITEM_TM29, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForTM
removecoins TM29_COINS
additem ITEM_TM29
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HereYouGo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTM35:: @ 8210051
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, TM35_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM
2017-11-10 02:21:31 +01:00
checkitemspace ITEM_TM35, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForTM
removecoins TM35_COINS
additem ITEM_TM35
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HereYouGo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTM24:: @ 821008B
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, TM24_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM
2017-11-10 02:21:31 +01:00
checkitemspace ITEM_TM24, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForTM
removecoins TM24_COINS
additem ITEM_TM24
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HereYouGo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_BuyTM13:: @ 82100C5
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_2
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_2, TM13_COINS
goto_if_lt MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM
2017-11-10 02:21:31 +01:00
checkitemspace ITEM_TM13, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForTM
removecoins TM13_COINS
additem ITEM_TM13
2017-11-10 02:21:31 +01:00
updatecoinsbox 1, 1
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HereYouGo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NotEnoughCoinsForTM:: @ 82100FF
msgbox MauvilleCity_GameCorner_Text_NotEnoughCoins, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NoRoomForTM:: @ 821010D
call Common_EventScript_BagIsFull
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ReturnToChooseTMPrize
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_CancelTMSelect:: @ 8210118
msgbox MauvilleCity_GameCorner_Text_OhIsThatSo, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
hidecoinsbox 0, 0
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Woman2:: @ 8210125
msgbox MauvilleCity_GameCorner_Text_CoinsAreNeededToPlay, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Gentleman:: @ 821012E
msgbox MauvilleCity_GameCorner_Text_RouletteOnlyLuck, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Girl:: @ 8210137
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
goto_if_set FLAG_RECEIVED_STARTER_DOLL, MauvilleCity_GameCorner_EventScript_ReceivedStarterDoll
msgbox MauvilleCity_GameCorner_Text_GotTwoOfSameDollWantOne, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-07 15:41:59 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_DeclineStarterDoll
switch VAR_STARTER_MON
2019-11-07 15:41:59 +01:00
case 0, MauvilleCity_GameCorner_EventScript_GiveTreeckoDoll
case 1, MauvilleCity_GameCorner_EventScript_GiveTorchicDoll
case 2, MauvilleCity_GameCorner_EventScript_GiveMudkipDoll
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_GiveTreeckoDoll:: @ 821017C
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_TREECKO_DOLL
checkdecorspace DECOR_TREECKO_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForStarterDoll
msgbox MauvilleCity_GameCorner_Text_HereYouGo2, MSGBOX_DEFAULT
givedecoration DECOR_TREECKO_DOLL
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_STARTER_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ReceivedStarterDoll
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_GiveTorchicDoll:: @ 82101A6
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_TORCHIC_DOLL
checkdecorspace DECOR_TORCHIC_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForStarterDoll
msgbox MauvilleCity_GameCorner_Text_HereYouGo2, MSGBOX_DEFAULT
givedecoration DECOR_TORCHIC_DOLL
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_STARTER_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ReceivedStarterDoll
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_GiveMudkipDoll:: @ 82101D0
2019-09-16 05:47:07 +02:00
bufferdecorationname 1, DECOR_MUDKIP_DOLL
checkdecorspace DECOR_MUDKIP_DOLL
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
goto_if_eq MauvilleCity_GameCorner_EventScript_NoRoomForStarterDoll
msgbox MauvilleCity_GameCorner_Text_HereYouGo2, MSGBOX_DEFAULT
givedecoration DECOR_MUDKIP_DOLL
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_STARTER_DOLL
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_ReceivedStarterDoll
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NoRoomForStarterDoll:: @ 82101FA
call Common_EventScript_NoRoomForDecor
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_YouWantItButNotNow, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_DeclineStarterDoll:: @ 8210209
msgbox MauvilleCity_GameCorner_Text_DontBeNegative, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_ReceivedStarterDoll:: @ 8210213
msgbox MauvilleCity_GameCorner_Text_CantWinJackpot, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_PokefanM:: @ 821021D
2017-11-10 02:21:31 +01:00
lock
faceplayer
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, TRUE
goto_if_eq MauvilleCity_GameCorner_EventScript_TryGive20Coins
msgbox MauvilleCity_GameCorner_Text_NeedCoinCaseGoNextDoor, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_TryGive20Coins:: @ 821023D
goto_if_set FLAG_RECEIVED_20_COINS, MauvilleCity_GameCorner_EventScript_PokefanMNormal
2018-05-19 18:02:43 +02:00
checkcoins VAR_TEMP_1
2019-11-07 15:41:59 +01:00
compare VAR_TEMP_1, 1 @ Only give 20 coins if player has no coins
goto_if_ge MauvilleCity_GameCorner_EventScript_PokefanMNormal
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_20_COINS
addcoins 20
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_LuckOnlyLastSoLongTakeCoins, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-07 15:41:59 +01:00
goto MauvilleCity_GameCorner_EventScript_PokefanMNormal
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_PokefanMNormal:: @ 821026B
msgbox MauvilleCity_GameCorner_Text_MauvilleSomethingForEveryone, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_OldMan:: @ 8210279
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_RouletteTablesDifferentRates, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Cook:: @ 8210289
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_EasyToLoseTrackOfTime, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Man:: @ 8210299
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_UpTo3CoinsCanBeUsed, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_NPCReturnToSlots:: @ 82102A9
2017-11-10 02:21:31 +01:00
closemessage
applymovement VAR_LAST_TALKED, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
waitmovement 0
release
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Maniac:: @ 82102B6
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_DifficultToStopOn7, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_Woman:: @ 82102C6
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 15:41:59 +01:00
msgbox MauvilleCity_GameCorner_Text_HeresSomeSlotsInfo, MSGBOX_DEFAULT
goto MauvilleCity_GameCorner_EventScript_NPCReturnToSlots
2017-11-10 02:21:31 +01:00
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine0:: @ 82102D6
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 0
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine1:: @ 82102F6
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine2:: @ 8210316
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 2
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine3:: @ 8210336
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 3
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine4:: @ 8210356
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 4
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine5:: @ 8210376
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 5
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine6:: @ 8210396
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 6
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine7:: @ 82103B6
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 7
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine8:: @ 82103D6
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 8
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine9:: @ 82103F6
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 9
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine10:: @ 8210416
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 10
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_EventScript_SlotMachine11:: @ 8210436
2017-11-10 02:21:31 +01:00
lockall
checkitem ITEM_COIN_CASE, 1
2019-11-07 15:41:59 +01:00
compare VAR_RESULT, FALSE
2019-10-07 08:00:16 +02:00
goto_if_eq MauvilleCity_GameCorner_EventScript_NoCoinCase
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 11
specialvar VAR_RESULT, GetSlotMachineId
2017-11-10 02:21:31 +01:00
playslotmachine VAR_RESULT
releaseall
end
2019-10-07 08:00:16 +02:00
MauvilleCity_GameCorner_EventScript_NoCoinCase:: @ 8210456
msgbox MauvilleCity_GameCorner_Text_CantPlayWithNoCoinCase, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_ThisIsMauvilleGameCorner: @ 8210460
2017-11-10 02:21:31 +01:00
.string "This is MAUVILLE GAME CORNER.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_NeedCoinCaseForCoins: @ 821047E
2017-11-10 02:21:31 +01:00
.string "Okay, you wanted some COINS for\n"
.string "the games?\p"
2018-12-07 16:41:08 +01:00
.string "But you don't have a COIN CASE for\n"
2017-11-10 02:21:31 +01:00
.string "stowing the COINS.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_WereYouLookingForCoins: @ 82104DF
2017-11-10 02:21:31 +01:00
.string "Were you looking for COINS?\p"
2018-12-07 16:41:08 +01:00
.string "It's ¥1000 for 50 COINS.\n"
2017-11-10 02:21:31 +01:00
.string "Would you like some?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_ThankYouHereAreYourCoins: @ 8210529
2017-11-10 02:21:31 +01:00
.string "Thank you very much!\n"
.string "Here are your COINS!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_DontHaveEnoughMoney: @ 8210553
2018-12-07 16:41:08 +01:00
.string "Um… You don't appear to have\n"
2017-11-10 02:21:31 +01:00
.string "enough money…$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_CoinCaseIsFull: @ 821057E
2017-11-10 02:21:31 +01:00
.string "Oh?\n"
.string "Your COIN CASE is full.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_DontNeedCoinsThen: @ 821059A
2018-12-07 16:41:08 +01:00
.string "Oh… You don't need COINS, then?\n"
2017-11-10 02:21:31 +01:00
.string "Good luck on your adventure!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_ExchangeCoinsForPrizes: @ 82105D7
2017-11-10 02:21:31 +01:00
.string "Welcome.\p"
.string "You can exchange your COINS for\n"
.string "prizes here.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_WhichPrize: @ 821060D
2017-11-10 02:21:31 +01:00
.string "Which prize would you like?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_SoYourChoiceIsTheTMX: @ 8210629
2017-11-10 02:21:31 +01:00
.string "So your choice is\n"
.string "the {STR_VAR_1} {STR_VAR_2}?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_SendToYourHomePC: @ 8210646
2017-11-10 02:21:31 +01:00
.string "Thank you!\n"
2018-12-07 16:41:08 +01:00
.string "We'll send it to your PC at home.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_NotEnoughCoins: @ 8210673
2018-12-07 16:41:08 +01:00
.string "You don't have enough COINS.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
@ Unused
MauvilleCity_GameCorner_Text_NoRoomForPlacingDecor: @ 8210690
2018-12-07 16:41:08 +01:00
.string "There isn't any room available for\n"
.string "placing {STR_VAR_1}.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_OhIsThatSo: @ 82106BF
2017-11-10 02:21:31 +01:00
.string "Oh, is that so? \n"
.string "You need to save some COINS before\l"
.string "coming back here.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_SoYourChoiceIsX: @ 8210705
2017-11-10 02:21:31 +01:00
.string "So your choice is {STR_VAR_1}?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_HereYouGo: @ 821071B
2017-11-10 02:21:31 +01:00
.string "Here you go!$"
2019-11-07 15:41:59 +01:00
@ Unused
MauvilleCity_GameCorner_Text_CantCarryAnyMore: @ 8210728
2018-12-07 16:41:08 +01:00
.string "Oh, you can't carry any more than that.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_GotTwoOfSameDollWantOne: @ 8210750
2017-11-10 02:21:31 +01:00
.string "I made a mistake and got two of\n"
.string "the same DOLLS.\p"
.string "Would you like one of them?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_HereYouGo2: @ 821079C
2017-11-10 02:21:31 +01:00
.string "Here you go!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_YouWantItButNotNow: @ 82107A9
2017-11-10 02:21:31 +01:00
.string "Huh?\n"
.string "You want it, but not right now?$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_DontBeNegative: @ 82107CE
2018-12-07 16:41:08 +01:00
.string "Oh, don't be so negative!\n"
2017-11-10 02:21:31 +01:00
.string "You can have this!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_CantWinJackpot: @ 82107FB
2018-12-07 16:41:08 +01:00
.string "There's a prize I want, but I can't win\n"
2017-11-10 02:21:31 +01:00
.string "the jackpot.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_NeedCoinCaseGoNextDoor: @ 8210830
2017-11-10 02:21:31 +01:00
.string "Hey, kid, if you want to play here,\n"
.string "you need a COIN CASE.\p"
.string "I think the young lady next door\n"
.string "had one. Go see her!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_LuckOnlyLastSoLongTakeCoins: @ 82108A0
2017-11-10 02:21:31 +01:00
.string "My luck can only last so long.\n"
.string "This is too much for me.\l"
.string "Here, take some COINS!$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_MauvilleSomethingForEveryone: @ 82108EF
2017-11-10 02:21:31 +01:00
.string "MAUVILLE has something for\n"
.string "everyone.\p"
2018-12-07 16:41:08 +01:00
.string "For me, it's the GAME CORNER.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_RouletteTablesDifferentRates: @ 8210932
2017-11-10 02:21:31 +01:00
.string "The ROULETTE tables have different\n"
.string "rates.\p"
2018-12-07 16:41:08 +01:00
.string "Check your COINS if you're going to\n"
2017-11-10 02:21:31 +01:00
.string "pick a table.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_EasyToLoseTrackOfTime: @ 821098E
2018-12-07 16:41:08 +01:00
.string "It's easy to lose track of time in here. \n"
2017-11-10 02:21:31 +01:00
.string "I should get back to work.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_CoinsAreNeededToPlay: @ 82109D3
2017-11-10 02:21:31 +01:00
.string "COINS are needed to play here\n"
.string "in the GAME CORNER.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_RouletteOnlyLuck: @ 8210A05
2017-11-10 02:21:31 +01:00
.string "This ROULETTE thing…\n"
2018-12-07 16:41:08 +01:00
.string "It's rather demanding.\p"
.string "Win or lose, it's only by luck.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_UpTo3CoinsCanBeUsed: @ 8210A51
2017-11-10 02:21:31 +01:00
.string "Up to three COINS can be used to play\n"
.string "the SLOTS.$"
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_DifficultToStopOn7: @ 8210A82
2018-12-07 16:41:08 +01:00
.string "It's very difficult to make it stop\n"
2017-11-10 02:21:31 +01:00
.string "right on “7.”\p"
.string "If it stops on “7” during the REEL TIME\n"
2018-12-07 16:41:08 +01:00
.string "bonus game, you'll receive extra COINS.$"
2017-11-10 02:21:31 +01:00
2019-11-07 15:41:59 +01:00
MauvilleCity_GameCorner_Text_HeresSomeSlotsInfo: @ 8210B04
2018-12-07 16:41:08 +01:00
.string "Here's some information for you\n"
2017-11-10 02:21:31 +01:00
.string "about the SLOTS.\p"
.string "The more lightning bolts you stock,\n"
.string "the more REEL TIME chances you get.\p"
.string "In a game with the maximum five\n"
.string "REEL TIME chances…\p"
.string "It is possible to receive four regular\n"
.string "bonuses, then a big bonus.\p"
2018-12-07 16:41:08 +01:00
.string "That would total 660 COINS, but it's\n"
2017-11-10 02:21:31 +01:00
.string "very difficult to get.$"
2019-10-07 08:00:16 +02:00
MauvilleCity_GameCorner_Text_CantPlayWithNoCoinCase: @ 8210C2E
2018-12-07 16:41:08 +01:00
.string "You can't play if you don't have\n"
2017-11-10 02:21:31 +01:00
.string "a COIN CASE.$"