aboutsummaryrefslogtreecommitdiffstats
path: root/data/events/prizes.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-03 11:51:00 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-03 11:51:00 -0400
commitb29e5ee203b6fa4592180ef6cca732462cca9af6 (patch)
tree7634ed34bcc174f6df004a473b277d1cc3f8f218 /data/events/prizes.asm
parentMerge pull request #256 from Rangi42/master (diff)
downloadpokeyellow-b29e5ee203b6fa4592180ef6cca732462cca9af6.tar.gz
pokeyellow-b29e5ee203b6fa4592180ef6cca732462cca9af6.tar.xz
pokeyellow-b29e5ee203b6fa4592180ef6cca732462cca9af6.zip
Add subdirectories to data/ similar to pokecrystal
Top level text/ is now solely for the former text/maps/ files, and other files are in their respective subdirectories in data/.
Diffstat (limited to 'data/events/prizes.asm')
-rwxr-xr-xdata/events/prizes.asm72
1 files changed, 72 insertions, 0 deletions
diff --git a/data/events/prizes.asm b/data/events/prizes.asm
new file mode 100755
index 00000000..1120c0d0
--- /dev/null
+++ b/data/events/prizes.asm
@@ -0,0 +1,72 @@
+PrizeDifferentMenuPtrs:
+ dw PrizeMenuMon1Entries
+ dw PrizeMenuMon1Cost
+
+ dw PrizeMenuMon2Entries
+ dw PrizeMenuMon2Cost
+
+ dw PrizeMenuTMsEntries
+ dw PrizeMenuTMsCost
+
+NoThanksText:
+ db "NO THANKS@"
+
+PrizeMenuMon1Entries:
+ db ABRA
+ db CLEFAIRY
+IF DEF(_RED)
+ db NIDORINA
+ENDC
+IF DEF(_BLUE)
+ db NIDORINO
+ENDC
+ db "@"
+
+PrizeMenuMon1Cost:
+IF DEF(_RED)
+ coins 180
+ coins 500
+ENDC
+IF DEF(_BLUE)
+ coins 120
+ coins 750
+ENDC
+ coins 1200
+ db "@"
+
+PrizeMenuMon2Entries:
+IF DEF(_RED)
+ db DRATINI
+ db SCYTHER
+ENDC
+IF DEF(_BLUE)
+ db PINSIR
+ db DRATINI
+ENDC
+ db PORYGON
+ db "@"
+
+PrizeMenuMon2Cost:
+IF DEF(_RED)
+ coins 2800
+ coins 5500
+ coins 9999
+ENDC
+IF DEF(_BLUE)
+ coins 2500
+ coins 4600
+ coins 6500
+ENDC
+ db "@"
+
+PrizeMenuTMsEntries:
+ db TM_23
+ db TM_15
+ db TM_50
+ db "@"
+
+PrizeMenuTMsCost:
+ coins 3300
+ coins 5500
+ coins 7700
+ db "@"