gb-tarot/CardLibrary.inc

200 lines
4.0 KiB
PHP

Spreads:
db 8 ; length
.onecard
db 1, $31
db 7, "Reply "
db 7, " "
db 18, " One Card "
db 18, " Make any query. "
.threecard
db 3, $11, $31, $51
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
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
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
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
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
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
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 "
.end
Cards:
db 22 ; length
db BANK(TheFool)
dw TheFool
db BANK(TheMagician)
dw TheMagician
db BANK(TheHighPriestess)
dw TheHighPriestess
db BANK(TheEmpress)
dw TheEmpress
db BANK(TheEmperor)
dw TheEmperor
db BANK(TheHierophant)
dw TheHierophant
db BANK(TheLovers)
dw TheLovers
db BANK(TheChariot)
dw TheChariot
db BANK(Strength)
dw Strength
db BANK(TheHermit)
dw TheHermit
db BANK(WheelOfFortune)
dw WheelOfFortune
db BANK(Justice)
dw Justice
db BANK(TheHangedMan)
dw TheHangedMan
db BANK(Death)
dw Death
db BANK(Temperance)
dw Temperance
db BANK(TheDevil)
dw TheDevil
db BANK(TheTower)
dw TheTower
db BANK(TheStar)
dw TheStar
db BANK(TheMoon)
dw TheMoon
db BANK(TheSun)
dw TheSun
db BANK(Judgement)
dw Judgement
db BANK(TheWorld)
dw TheWorld
SECTION "First Eight Cards", ROMX
INCLUDE "00TheFool.inc"
INCLUDE "01TheMagician.inc"
INCLUDE "02TheHighPriestess.inc"
INCLUDE "03TheEmpress.inc"
INCLUDE "04TheEmperor.inc"
INCLUDE "05TheHierophant.inc"
INCLUDE "06TheLovers.inc"
INCLUDE "07TheChariot.inc"
SECTION "Second Eight Cards", ROMX
INCLUDE "08Strength.inc"
INCLUDE "09TheHermit.inc"
INCLUDE "10WheelOfFortune.inc"
INCLUDE "11Justice.inc"
INCLUDE "12TheHangedMan.inc"
INCLUDE "13Death.inc"
INCLUDE "14Temperance.inc"
INCLUDE "15TheDevil.inc"
SECTION "Third Eight Cards", ROMX
INCLUDE "16TheTower.inc"
INCLUDE "17TheStar.inc"
INCLUDE "18TheMoon.inc"
INCLUDE "19TheSun.inc"
INCLUDE "20Judgement.inc"
INCLUDE "21TheWorld.inc"