Created
May 17, 2021 15:21
-
-
Save maxmatthews/7ce66406e2006d7be2b9a1c1ce1c6d6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const myTarotCards = [ | |
//This is the info for my first deck of cards | |
{ | |
deck: "Traditional", | |
categories: [ | |
{ | |
category: "Air", | |
characteristics: ["whitty", "intellectual", "detached", "sharp"], | |
}, | |
{ | |
category: "Earth", | |
characteristics: ["health", "finances", "work", "physical plane"], | |
}, | |
{ | |
category: "Fire", | |
characteristics: ["Passion", "Inspiration", "Action", "Energy"], | |
}, | |
{ | |
category: "Water", | |
characteristics: ["Emotions", "Flow", "Intuition", "Relationships"], | |
}, | |
], | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment