; NAME: Mushroom Morty's [Shy Guy's Toybox]
; GAMES: MP3_USA
; EXECUTION: Direct
; PARAM: +Number|MinToShop
; PARAM: +Number|MushroomPrice
; PARAM: +Number|ReverseMushroomPrice
; PARAM: +Number|PoisonMushroomPrice
; PARAM: +Number|GoldenMushroomPrice
; PARAM: +Number|SkeletonKeyPrice
; PARAM: +Number|BarterBoxPrice
; PARAM: +Number|WackyWatchPrice
; PARAM: +Number|PlunderChestPrice
; PARAM: +Number|KoopaCardPrice
; PARAM: +Number|WarpBlockPrice
; PARAM: +Number|BowserSuitPrice
; PARAM: +Number|BowserPhonePrice
; PARAM: +Number|BooBellPrice
; PARAM: +Number|LuckyLampPrice
; PARAM: +Number|CellularShopperPrice
; PARAM: +Number|DuelingGlovePrice
; PARAM: +Number|BooRepellantPrice

;====================================================================
; IMPORTANT: This code is specifically designed to allow the landing
;            or passing player to purchase an item from an inventory
;            of your choice. If the player's inventory is full, they
;            don't get to buy anything.
;===================================================================

ADDIU SP SP -40
SW RA 36(SP)
SW S1 32(SP)
SW S2 28(SP)
SW S0 24(SP)
SW S3 20(SP)
SW S4 16(SP)
SW S5 8(SP)


;BEGIN Checks that prevent purchase===================================
LUI S1 hi(total_turns)
ADDIU S1 S1 lo(total_turns) ; Load address of Total Turns to S1
LBU S1 0(S1) ; Load value of Total Turns to S1

LUI S2 hi(current_turn)
ADDIU S2 S2 lo(current_turn) ; Load address of Current Turn to S2
LBU S2 0(S2) ; Load value of Current Turn to S2

BEQ S2 S1 LastTurn ; If it's the last turn, branch
NOP

JAL GetCurrentPlayerIndex ; Current Player's Index at V0
NOP

MOVE S4 V0 ; Copy Current Player Index to S4
MOVE A0 S4 ; Copy Current Player Index to A0
LI A1 MinToShop ; A1 = The minimum amount of Coins to shop
JAL PlayerHasCoins ; Checks if Player has the minimum Coins 
NOP

BEQ V0 R0 NoCoinsToShop ; If the player doesn't have the Coins, exit
NOP

LUI S1 hi(p1_item3)
ADDIU S1 S1 lo(p1_item3) ; Load Player 1's Item slot #3 address
LI S3 0x38 ; This is the distance between each player's Item #3
MULT S4 S3 ;  Multiply Current Player Index by S3
MFLO S3 ; Move the result to S3

ADDU S1 S1 S3 ; Add result to get current Player's item slot #3
LBU S2 0(S1) ; Load address value into S2

LI T0 0xFF ; No Item Value
BNE S2 T0 TooManyItems ; If the player's inventory is full, exit
NOP
;END Checks that prevent purchase=====================================

;BEGIN GREETING=======================================================
JAL PlaySound
LI A0 0x298 ; Toad: Yahoo! ^_^/

SW R0 16(SP) ; A4
SW R0 20(SP) ; A5
SW R0 24(SP) ; A6
ADDI A0 R0 0xD ; Character image (Alt Toad)
LUI A1 hi(Greeting_Message)
ADDIU A1 A1 lo(Greeting_Message)
ADDU A2 R0 R0
JAL 0x800EC8EC ; ShowMessage
ADDU A3 R0 R0

JAL 0x800EC9DC
NOP
JAL 0x800EC6C8
NOP
JAL 0x800EC6EC
NOP
;END GREETING=========================================================

;BEGIN ITEM SELECTION PROMPT==========================================
START:
SW R0 20(SP) ; A4
SW R0 24(SP) ; A5
SW R0 28(SP) ; A6
LI A0 0xD ; Character image (Alt Toad)
LUI A1 hi(ItemSelection_Prompt)
ADDIU A1 A1 lo(ItemSelection_Prompt)
ADDU A2 R0 R0
JAL 0x800EC8EC ; ShowMessage
ADDU A3 R0 R0

; Get the selection, either from the player or CPU.
; If A0 is a pointer to AI data, AI logic is ran to pick for CPUs.
; If A0 is 0 or 1, the 0th or 1st option is chosen by CPUs.
; If A0 is 2, then the value of A1 is the CPUs option index choice.
LI A0 0
JAL GetBasicPromptSelection
LI A1 0 ; A1 now has the AI's decision
MOVE S0 V0 ; S0 now has the chosen option index

; Obligatory message box closing/cleanup calls.
JAL 0x800EC6C8
NOP
JAL 0x800EC6EC
NOP

; Change the player's destination based on the choice.
; Change the player's destination based on the choice.
LI A0 0
BEQ S0 A0 item1
NOP
LI A0 1
BEQ S0 A0 item2
NOP
LI A0 2
BEQ S0 A0 item3
NOP
LI A0 3
BEQ S0 A0 item4
NOP
LI A0 4
BEQ S0 A0 item5
NOP
LI A0 5
BEQ S0 A0 item6
NOP
LI A0 6
BEQ S0 A0 item7
NOP
LI A0 7
BEQ S0 A0 item8
NOP
LI A0 8
BEQ S0 A0 item9
NOP
LI A0 9
BEQ S0 A0 item10
NOP
LI A0 10
BEQ S0 A0 item11
NOP
LI A0 11
BEQ S0 A0 item12
NOP
LI A0 12
BEQ S0 A0 item13
NOP
LI A0 13
BEQ S0 A0 item14
NOP
LI A0 14
BEQ S0 A0 item15
NOP
LI A0 15
BEQ S0 A0 item16
NOP
LI A0 16
BEQ S0 A0 item17
NOP
LI A0 17
BEQ S0 A0 item18
NOP
LI A0 18
BEQ S0 A0 exit
NOP
LI A0 19
BEQ S0 A0 view_map
;END ITEM SELECTION PROMPT============================================

;BEGIN Item Values====================================================
; 0x00 = Mushroom
; 0x01 = Skeleton Key
; 0x02 = Poison Mushroom
; 0x03 = Reverse Mushroom
; 0x04 = Cellular Shopper
; 0x05 = Warp Block
; 0x06 = Plunder Chest
; 0x07 = Bowser Phone
; 0x08 = Dueling Glove
; 0x09 = Lucky Lamp
; 0x0A = Golden Mushroom
; 0x0B = Boo Bell
; 0x0C = Boo Repellant
; 0x0D = Bowser Suit
; 0x0E = Magic Lamp
; 0x0F = Koopa Card
; 0x10 = Barter Box
; 0x11 = Lucky Coin
; 0x12 = Wacky Watch
;END Item Values======================================================

;BEGIN Selected Option================================================
item1:
LI S0 0x0 ; Mushroom Value
LI S3 MushroomPrice ; S3 contains Mushroom Price
J payprice
NOP
item2:
LI S0 0x1 ; Skeleton Key Value 
LI S3 SkeletonKeyPrice ; S3 contains Skeleton Key Price
J payprice
NOP
item3:
LI S0 0x2 ; Poison Mushroom Value
LI S3 PoisonMushroomPrice ; S3 contains Poison Mushroom Price
J payprice
NOP
item4:
LI S0 0x3 ; Reverse Mushroom Value
LI S3 ReverseMushroomPrice ; S3 contains Reverse Mushroom Price
J payprice
NOP
item5:
LI S0 0xA ; Golden Mushroom Value
LI S3 GoldenMushroomPrice ; S3 contains Golden Mushroom Price
J payprice
NOP
item6:
LI S0 0x10 ; Barter Box Value
LI S3 BarterBoxPrice ; S3 contains Barter Box Price
J payprice
NOP
item7:
LI S0 0x12 ; Wacky Watch Value
LI S3 WackyWatchPrice ; S3 contains Wacky Watch Price
J payprice
NOP
item8:
LI S0 0x0F ; Koopa Card Value
LI S3 KoopaCardPrice ; S3 contains Koopa Card Price
J payprice
NOP
item9:
LI S0 0x05 ; Warp Block Value
LI S3 WarpBlockPrice ; S3 contains Warp Block Price
J payprice
NOP
item10:
LI S0 0x04 ; Cellular Shopper Value
LI S3 CellularShopperPrice ; S3 contains Cellular Shopper Price
J payprice
NOP
item11:
LI S0 0x08 ; Dueling Glove Value
LI S3 DuelingGlovePrice ; S3 contains Dueling Glove Price
J payprice
NOP
item12:
LI S0 0x06 ; Plunder Chest Value
LI S3 PlunderChestPrice ; S3 contains Barter Box Price
J payprice
NOP
item13:
LI S0 0x0B ; Boo Bell Value
LI S3 BooBellPrice ; S3 contains Boo Bell Price
J payprice
NOP
item14:
LI S0 0x6 = ; Plunder Chest Value
LI S3 PlunderChestPrice ; S3 contains Plunder Chest Price
J payprice
NOP
item15:
LI S0 0x0D ; Bowser Suit Value
LI S3 BowserSuitPrice ; S3 contains Bowser Suit Price
J payprice
NOP
item16:
LI S0 0x07 ; Bowser Phone Value
LI S3 BowserPhonePrice ; S3 contains Bowser Phone Price
J payprice
NOP
item17:
LI S0 0x07 ; Lucky Lamp Value
LI S3 LuckyLampPrice ; S3 contains Lucky Lamp Price
J payprice
NOP
item18:
LI S0 0x07 ; Boo Repellant Value
LI S3 BooRepellantPrice ; S3 contains Boo Repellant Price
J payprice
NOP
view_map:
JAL ViewBoardMap
NOP
J START
NOP
;END Item Values======================================================

;BEGIN Checking Player For Necessary Coins To Purchase================
payprice:
MOVE A0 S4 ; Current Player's Index moved to A0
MOVE A1 S3 ; Amount of coins to check
JAL PlayerHasCoins ; Checks if Player has A1's amount of Coins
NOP

BEQ V0 R0 NotEnoughCoins ; If insufficient funds, branch
NOP
;END Checking Player For Necessary Coins To Purchase==================

;BEGIN Taking Coins From Player=======================================
MOVE A0 S4 ; Current Player's Index moved to A0
SUBU A1 R0 S3 ; Amount to pay
JAL AdjustPlayerCoinsGradual ; Changes Player's coin amount
NOP

MOVE A0 S4 ; Current Player's Index moved to A0
SUBU A1 R0 S3 ; Amount to display
JAL ShowPlayerCoinChange ; Displays Player's coin loss on-screen 
NOP

ADDIU A0 R0 30
JAL SleepProcess ; Sleeps for 30 frames
NOP
;END Taking Coins From Player=========================================

;BEGIN Checking Player Item Slots=====================================
LI T1 2
SUBU S1 S1 T1 ; This loads the current player's first Item address
LBU S2 0(S1) ; Load slot #1's Item Value into S2
LI T1 0xFF ; No Item Value
BEQ S2 T1 giveitem ; Go to giveitem if the slot is empty
NOP
ADDIU S1 S1 1 ; Add 1 to load current player's second Item address
LBU S2 0(S1) ; Load slot #2's Item Value into S2
BEQ S2 T1 giveitem ; Go to giveitem if the slot is empty
NOP
ADDIU S1 S1 1 ; Add 1 to load current player's third Item address

giveitem:
SB S0 0(S1)
;END Checking Player Item Slots=======================================

;BEGIN Item Sound Effect==============================================
JAL PlaySound
LI A0 0x10C ; Turn Start sound

LI A0 15 ; Frames to wait after the sound plays
JAL SleepProcess ; Sleeps for 15 frames
NOP

J exit
NOP
;END Item Sound Effect================================================

;BEGIN CANNOT BUY ITEM MESSAGE========================================
NotEnoughCoins:
JAL PlaySound
LI A0 0x29A ; Toad: Oooh :(

SW R0 16(SP) ; A4
SW R0 20(SP) ; A5
SW R0 24(SP) ; A6
ADDI A0 R0 0xD ; Character image (Alt Toad)
LUI A1 hi(NotEnoughCoins_Message)
ADDIU A1 A1 lo(NotEnoughCoins_Message)
ADDU A2 R0 R0
JAL 0x800EC8EC ; ShowMessage
ADDU A3 R0 R0

JAL 0x800EC9DC
NOP
JAL 0x800EC6C8
NOP
JAL 0x800EC6EC
NOP

J START
NOP
;END CANNOT BUY ITEM MESSAGE==========================================

;BEGIN TOO MANY ITEMS MESSAGE=========================================
TooManyItems:
JAL PlaySound
LI A0 0x29A ; Toad: Oooh :(

SW R0 16(SP) ; A4
SW R0 20(SP) ; A5
SW R0 24(SP) ; A6
ADDI A0 R0 0xD ; Character image (Alt Toad)
LUI A1 hi(TooManyItems_Message)
ADDIU A1 A1 lo(TooManyItems_Message)

J FinalizeMessage
NOP
;END TOO MANY ITEMS MESSAGE===========================================

;BEGIN NOT ENOUGH COINS MESSAGE=======================================
NoCoinsToShop:
JAL PlaySound
LI A0 0x29A ; Toad: Oooh :(

SW R0 16(SP) ; A4
SW R0 20(SP) ; A5
SW R0 24(SP) ; A6
ADDI A0 R0 0xD ; Character image (Alt Toad)
LUI A1 hi(NoCoinsToShop_Message)
ADDIU A1 A1 lo(NoCoinsToShop_Message)

J FinalizeMessage
NOP
;END NOT ENOUGH COINS MESSAGE=========================================

;BEGIN Last Turn MESSAGE==============================================
LastTurn:
JAL PlaySound
LI A0 0x29A ; Toad: Oooh :(

SW R0 16(SP) ; A4
SW R0 20(SP) ; A5
SW R0 24(SP) ; A6
ADDI A0 R0 0xD ; Character image (Alt Toad)
LUI A1 hi(LastTurn_Message)
ADDIU A1 A1 lo(LastTurn_Message)
;END Last Turn MESSAGE================================================

FinalizeMessage:
ADDU A2 R0 R0
JAL 0x800EC8EC ; ShowMessage
ADDU A3 R0 R0

JAL 0x800EC9DC
NOP
JAL 0x800EC6C8
NOP
JAL 0x800EC6EC
NOP



exit:
LW S5 8(SP)
LW S4 16(SP)
LW S3 20(SP)
LW S1 32(SP)
LW S2 28(SP)
LW S0 24(SP)
LW RA 36(SP)
JR RA
ADDIU SP SP 40



.align 16
LastTurn_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Welcome to"
.byte 0x06 ; Blue font
.ascii " Mushroom Morty"
.byte 0x5C ; Apostrophe (')
.ascii "s"
.byte 0x08 ; White Font
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "But"
.byte 0x82 ; Comma (,)
.ascii " Right now"
.ascii " I am out of stuff to give ya"
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii " SO GET OUTTA HERE"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0xFF,0 ; FF=Pause

.align 16
NoCoinsToShop_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Oh REALLY"
.byte 0x85,0x85,0x85 ; Period (...)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "You don"
.byte 0x5C ; Apostrophe (')
.ascii "t have ANY coins"
.byte 0x85 ; Period (.)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.byte 0x03 ; Red font
.ascii "WELL"
.byte 0x03 ; Red font
.ascii " THEN GET OUTTA HERE"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0xFF,0 ; FF=Pause

.align 16
TooManyItems_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Oh REALLY"
.ascii "you can"
.ascii "t"
.byte 0x5C ; Apostrophe (')
.ascii "carry any more of my stuff"
.byte 0x85 ; Period (.)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "WELL"
.byte 0x03 ; Red font
.ascii " THEN GET OUTTA HERE"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0xFF,0 ; FF=Pause

.align 16
Greeting_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Ay"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Welcome to"
.byte 0x06 ; Blue font
.ascii " Mushroom Morty"
.byte 0x5C ; Apostrophe (')
.ascii "s"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii " Buy some of my stuff will ya"
.byte 0xC3 ; Question Mark (!)
.byte 0xFF,0 ; FF=Pause

.align 20
ItemSelection_Prompt:
.byte 0x0B ; Start the message
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "What ya want"
.byte 0xC3 ; Question Mark (?)
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Mushroom    "
.byte 0x08 ; White Font
.byte 0x10 ; Space ( )
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 5"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Warp Block   "
.byte 0x08 ; White Font
.byte 0x10 ; Space ( )
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 15"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Poison Mushroom"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 1"

.align 16
.ascii " Wacky Watch"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii "150"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font\

.align 16
.ascii " Golden Mushroom"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 35"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Skeleton Key"
.byte 0x08 ; White Font
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 5"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Barter Box"
.byte 0x08 ; White Font
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 50"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Bowser Phone"
.byte 0x10,0x10 ; Space 2x (  )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 20"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Bowser Suit"
.byte 0x08 ; White Font
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 35"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Lucky Lamp   "
.byte 0x08 ; White Font
.byte 0x1A,0x1A,0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 35"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Cellular Shopper"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 20"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Dueling Glove  "
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 5"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii " Boo Repellant"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 20"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "Reverse Mushroom"
.byte 0x10 ; Space ( )
.byte 0x08 ; White Font
.byte 0x1A ; padding
.byte 0x29 ; Coin icon
.byte 0x3E ; x (multiply)
.ascii " 10"
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A ; Little more for option indent
.byte 0x0C ; Start option
.byte 0x06 ; Blue font

.align 16
.ascii "No Morty"
.byte 0x82 ; Comma (,)
.ascii "not now"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0D ; End option
.byte 0x0A ; Newline
.byte 0x1A,0x1A,0x1A,0x1A,0x1A,0x1A 
.byte 0x0C ; Start option

.align 16
NotEnoughCoins_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "You don"
.byte 0x5C ; Apostrophe (')
.ascii "t have ENOUGH my friend"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Get something else will ya"
.byte 0xC3 ; Question Mark (?)

.align 16
NotEnoughCoins_Message:
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "You don"
.byte 0x5C ; Apostrophe (')
.ascii "t have ENOUGH my friend"
.byte 0xC2 ; Exclamation Mark (!)
.byte 0x0A ; New Line (Writes Below)
.byte 0x1A,0x1A,0x1A,0x1A ; Standard padding for picture
.ascii "Get something else will ya"
.byte 0xC3 ; Question Mark (?)
.byte 0xFF,0 ; FF=Pause