gb-tarot/CardLibrary.inc

148 lines
2.9 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
2025-01-16 09:53:24 -05:00
db 7, "Reply "
db 7, " "
db 18, " One Card "
2025-01-16 09:53:24 -05:00
db 18, " Make any query. "
.threecard
db 3, $11, $31, $51
2025-01-16 09:53:24 -05:00
db 7, "Past "
db 7, " "
db 7, "Present"
db 7, " "
db 7, "Future "
db 7, " "
db 18, "Three Card Spread "
db 18, " Old reliable. "
.threecardB
db 3, $12, $52, $30
2025-01-16 09:53:24 -05:00
db 7, "Mind "
db 7, " "
db 7, "Body "
db 7, " "
db 7, "Spirit "
db 7, " "
db 18, "Three Card Spread "
db 18, " Many variations. "
.fivecardSituation
db 5, $10, $50, $12, $52, $31
2025-01-16 09:53:24 -05:00
db 7, "Goings "
db 7, "on "
db 7, "Things "
db 7, "at play"
db 7, "Dangers"
db 7, "afoot "
db 7, "Outcome"
db 7, " "
db 7, "Theme "
db 7, " "
db 18, "Situation reading "
db 18, "What's going on? "
.fivecardRelationship
db 5, $01, $61, $20, $31, $42
2025-01-16 09:53:24 -05:00
db 7, "Querent"
db 7, " "
db 7, "Other "
db 7, "person "
db 7, "Past "
db 7, "history"
db 7, "Present"
db 7, "moment "
db 7, "Future "
db 7, "outcome"
db 18, " Relationships "
db 18, "5 cards, 2 people."
.sixcard
db 6, $11, $21, $30, $32, $41, $51
2025-01-16 09:53:24 -05:00
db 7, "Querent" ; 01
db 7, " "
db 7, "Problem" ; 11
db 7, " "
db 7, "Logic " ; 20
db 7, "view "
db 7, "Emotion" ; 22
db 7, "view "
db 7, "Path of" ; 31
db 7, "action "
db 7, "Outcome" ; 41
db 7, " "
db 18, " Horizontal Cross "
db 18, "For facing issues."
.alexNine
db 9, $01, $10, $12, $20, $22, $30, $32, $41, $61
2025-01-16 09:53:24 -05:00
db 7, "Querent"
db 7, "role "
db 7, "Woes "
db 7, "known "
db 7, "Woes "
db 7, "hidden "
db 7, "Power "
db 7, "known "
db 7, "Power "
db 7, "unknown"
db 7, "Frailty"
db 7, "known "
db 7, "Frailty"
db 7, "ignored"
db 7, "Advice "
db 7, " "
db 7, "Outcome"
db 7, " "
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
2025-01-16 09:53:24 -05:00
db 7, "This " ; 00
db 7, "month "
db 7, "Next " ; 10
db 7, "month "
db 7, "3rd " ; 20
db 7, "month "
db 7, "4th " ; 30
db 7, "month "
db 7, "5th " ; 40
db 7, "month "
db 7, "6th " ; 02
db 7, "month "
db 7, "7th " ; 12
db 7, "month "
db 7, "8th " ; 22
db 7, "month "
db 7, "9th " ; 32
db 7, "month "
db 7, "10th " ; 42
db 7, "month "
db 7, "11th " ; 42
db 7, "month "
db 7, "12th " ; 42
db 7, "month "
db 18, " One Year Spread "
db 18, " Month by month "
2025-01-13 15:44:01 -05:00
.end
Cards:
2025-01-16 09:53:24 -05:00
db 9 ; 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"