summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/text_constants.asm43
1 files changed, 31 insertions, 12 deletions
diff --git a/src/constants/text_constants.asm b/src/constants/text_constants.asm
index 133f76e..b161a63 100644
--- a/src/constants/text_constants.asm
+++ b/src/constants/text_constants.asm
@@ -1,5 +1,5 @@
TX_END EQU $00
-TX_LARGE EQU $05
+TX_SYMBOL EQU $05
TX_START EQU $06
TX_RAM1 EQU $09
TX_LINE EQU "\n" ; $0a
@@ -13,15 +13,34 @@ done EQUS "db TX_END"
charmap "é", "`"
charmap "♂", "$"
charmap "♀", "%"
+ charmap "”", "\""
-; TX_LARGE symbols from v0Tiles2 (full tile length)
-TX_FIRE EQUS "$05, $01"
-TX_GRASS EQUS "$05, $02"
-TX_LIGHTNING EQUS "$05, $03"
-TX_WATER EQUS "$05, $04"
-TX_FIGHTING EQUS "$05, $05"
-TX_PSYCHIC EQUS "$05, $06"
-TX_COLORLESS EQUS "$05, $07"
-TX_HP EQUS "$05, $10"
-TX_LVL EQUS "$05, $11"
-TX_No EQUS "$05, $13"
+; TX_SYMBOL (full-tile symbols loaded into v0Tiles2)
+ charmap "<", TX_SYMBOL
+ charmap " >", $00
+ charmap "FIRE>", $01
+ charmap "GRASS>", $02
+ charmap "LIGHTNING>", $03
+ charmap "WATER>", $04
+ charmap "FIGHTING>", $05
+ charmap "PSYCHIC>", $06
+ charmap "COLORLESS>", $07
+ charmap "POISONED>", $08
+ charmap "ASLEEP>", $09
+ charmap "CONFUSED>", $0a
+ charmap "PARALYZED>", $0b
+ charmap "HP>", $10
+ charmap "Lv>", $11
+ charmap "No>", $13
+ charmap "🌕>", $16
+ charmap "🌑>", $17
+ charmap "0>", $20
+ charmap "1>", $21
+ charmap "2>", $22
+ charmap "3>", $23
+ charmap "4>", $24
+ charmap "5>", $25
+ charmap "6>", $26
+ charmap "7>", $27
+ charmap "8>", $28
+ charmap "9>", $29