gb-tarot/CardLibrary.inc

148 lines
3.0 KiB
PHP
Raw Normal View History

2025-01-14 15:06:27 -05:00
SECTION "Card Data", ROMX
Spreads:
db 8 ; length
2025-01-13 15:44:01 -05:00
.onecard
db 1, $31
db 8, "Answer "
db 8, "to query"
db 18, " One Card "
db 18, " Draw one card. "
.threecard
db 3, $11, $31, $51
db 8, "Past "
db 8, " "
db 8, "Present "
db 8, " "
db 8, "Future "
db 8, " "
db 18, "Three Card Spread "
db 18, " Old reliable. "
.threecardB
db 3, $12, $52, $30
db 8, "Mind "
db 8, " "
db 8, "Body "
db 8, " "
db 8, "Spirit "
db 8, " "
db 18, "Three Card Spread "
db 18, " Many variations. "
.fivecardSituation
db 5, $10, $50, $12, $52, $31
db 8, "Scenario"
db 8, " "
db 8, "Things "
db 8, "at play "
db 8, "Dangers "
db 8, "afoot "
db 8, "Outcome "
db 8, " "
db 8, "Theme "
db 8, " "
db 18, "Situation reading "
db 18, "What's going on? "
.fivecardRelationship
db 5, $01, $61, $20, $31, $42
db 8, "Querent "
db 8, " "
db 8, "Other "
db 8, "person "
db 8, "Past "
db 8, "history "
db 8, "Present "
db 8, "moment "
db 8, "Future "
db 8, "outcomes"
db 18, " Relationships "
db 18, "5 cards, 2 people."
.sixcard
db 6, $11, $21, $30, $32, $41, $51
db 8, "Querent " ; 01
db 8, " "
db 8, "Problem " ; 11
db 8, " "
db 8, "Logic " ; 20
db 8, "view "
db 8, "Emotion " ; 22
db 8, "view "
db 8, "Path of " ; 31
db 8, "action "
db 8, "Outcome " ; 41
db 8, " "
db 18, " Horizontal Cross "
db 18, "For facing issues."
.alexNine
db 9, $01, $10, $12, $20, $22, $30, $32, $41, $61
db 8, "Querent "
db 8, "role "
db 8, "Problems"
db 8, "you know"
db 8, "Problems"
db 8, "hidden "
db 8, "Strength"
db 8, "you know"
db 8, "Strength"
db 8, "unknown "
db 8, "Weakness"
db 8, "you know"
db 8, "Weakness"
db 8, "ignored "
db 8, "Advice "
db 8, " "
db 8, "Outcome "
db 8, " "
db 18, " Eight Plus One "
db 18, " What faces you? "
.twelvecard
db 12, $00, $10, $20, $40, $50, $60, $02, $12, $22, $42, $52, $62
db 8, "This " ; 00
db 8, "month "
db 8, "Next " ; 10
db 8, "month "
db 8, "Third " ; 20
db 8, "month "
db 8, "Fourth " ; 30
db 8, "month "
db 8, "Fifth " ; 40
db 8, "month "
db 8, "Sixth " ; 02
db 8, "month "
db 8, "Seventh " ; 12
db 8, "month "
db 8, "Eighth " ; 22
db 8, "month "
db 8, "Ninth " ; 32
db 8, "month "
db 8, "Tenth " ; 42
db 8, "month "
db 8, "Eleventh" ; 42
db 8, "month "
db 8, "Twelfth " ; 42
db 8, "month "
db 18, " One Year Spread "
db 18, " Month by month "
2025-01-13 15:44:01 -05:00
.end
Cards:
2025-01-15 22:40:56 -05:00
db 7 ; length
dw TheFool
dw TheMagician
dw TheHighPriestess
dw TheEmpress
dw TheEmperor
2025-01-15 22:40:56 -05:00
dw TheHierophant
dw TheLovers
dw TheChariot
dw Justice
INCLUDE "00TheFool.inc"
INCLUDE "01TheMagician.inc"
INCLUDE "02TheHighPriestess.inc"
INCLUDE "03TheEmpress.inc"
INCLUDE "04TheEmperor.inc"
2025-01-15 22:40:56 -05:00
INCLUDE "05TheHierophant.inc"
INCLUDE "06TheLovers.inc"
INCLUDE "07TheChariot.inc"
INCLUDE "11Justice.inc"