Skip to content

Instantly share code, notes, and snippets.

@moughamir
Last active May 22, 2017 04:09
Show Gist options
  • Save moughamir/2f52e6b13dbe6c10be7ccfa059a79d58 to your computer and use it in GitHub Desktop.
Save moughamir/2f52e6b13dbe6c10be7ccfa059a79d58 to your computer and use it in GitHub Desktop.
$.getJSON('tarot.json', function(data){
console.log(data);
var deck = data.deck.map(function(card){
return card.Name + ': ' + card.value;
});
}, function(success){
console.info("done");
});
{
"deck": [{
"name": "the fool",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/fool.jpg",
"summary": "The focus of this card is on faith, hope, trust and contentment, high ideals and the possibility of a brighter tomorrow, choice and personal effort."
}, {
"name": "the magician",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/magician.jpg",
"summary": "The focus of this card is on new beginnings, new opportunities to use talents, love urges, finance and the future."
}, {
"name": "the high priestess",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/priestess.jpg",
"summary": "Your focus is on waiting, learning, trade, finance and negotiations, public activities or public relations."
}, {
"name": "the empress",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/empress.jpg",
"summary": "The focus of this card is on feelings, emotions, self expression, socializing, or short and long distance trips."
}, {
"name": "the emperor",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/emperor.jpg",
"summary": "The focus of this card is on construction and formation, or something or someone will change your present situation or present you with opportunities to enter into a new partnership or relationship"
}, {
"name": "the hierophant",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/hierophant.jpg",
"summary": "The focus of this card is on establishments, organizations, truth and understanding, new opportunities and family structures."
}, {
"name": "the lovers",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/lovers.jpg",
"summary": "Your focus is on sudden and unpredictable changes, love, friendship, unions and meetings, choice, travel, and personnel property."
}, {
"name": "the chariot",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/chariot.jpg",
"summary": "Your focus is on introspection, re-evaluation, decisions of passion and confusing issues. You will be re-examining your affairs and assessing your situation."
}, {
"name": "justice",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/justice.jpg",
"summary": "The focus of this card is on challenging situations in relation to business and finance, family matters that stemmed from the past, new beginnings and results or rewards for persistence and effort."
}, {
"name": "the hermit",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/hermit.jpg",
"summary": "The focus of this card is on seeking and finding, completing and perfecting and problem solving."
}, {
"name": "the wheel of fortune",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/wheel.jpg",
"summary": "The focus of this card is on conflicts of interest, unexpected developments, important news that changes or alters your course, also important news and information."
}, {
"name": "strength",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/strength.jpg",
"summary": "The focus of this card is on reaching goals, settlements, legal matters or income."
}, {
"name": "the hanged man",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/hangedman.jpg",
"summary": "The focus of this card is on your life, values and the way you are thinking."
}, {
"name": "death",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/death.jpg",
"summary": "The focus of this card is on endings and new beginnings in career, partnerships, new opportunities or a new lifestyle."
}, {
"name": "temperence",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/temperance.jpg",
"summary": "The focus of this card is on things that you thought you had completed, that is old friends, lovers, habits, desires, health, money, or business problems and situations that you thought you dealt with, will arise to test you."
}, {
"name": "the devil",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/devil.jpg",
"summary": "The focus of this card is on adverse conditions or negative cycle of events."
}, {
"name": "the tower",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/tower.jpg",
"summary": "The focus of this card is on unexpected events or devastating conditions, financial problems, separations and divorce conficlics and loss of faith in one's world."
}, {
"name": "the star",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/star.jpg",
"summary": "The focus of this card is on the futures faith and what could be. You will be hurt or disappointed by harsh words, enforced estrangement and circumstances that block your development for the time being."
}, {
"name": "the moon",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/moon.jpg",
"summary": "The focus of this card is on inner disturbances or feelings of disquiet or dread or foreboding. Situations are deceptive or changeable in whatever area is important to you at the moment."
}, {
"name": "the sun",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/sun.jpg",
"summary": "The focus of this card is on society and the public, self-image or keeping up with appearances; achievement, accomplishment, marriage unions or mergers."
}, {
"name": "judgment",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/judgement.jpg",
"summary": "The focus of this card is on new personal relationships, new business ventures or partnerships, beneficial help, improved conditions, changes in habit and purpose."
}, {
"name": "the world",
"value": "",
"suit": "trumps",
"img": "http://justinhurst.net/tarot/world.jpg",
"summary": "The focus of this card is on world issues or world shaking events, encounters and gatherings, travel, change, risks and new opportunities, but also on restriction wall or blocks."
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment