Advertisement · 728 × 90
#
Hashtag
#tarotgame
Advertisement · 728 × 90
Preview
Tarot Trivia Game Loading your destiny... Next Question Score: 0 #tarot-game-container { font-family: 'Georgia', serif; max-width: 500px; margin: 40px auto; padding: 20px; background: #1a1a2e; color: #e94560; border: 2px solid #950740; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } #question-text { font-size: 1.4rem; margin-bottom: 20px; color: #fff; } .option-btn { display: block; width: 100%; padding: 12px; margin: 10px 0; background: transparent; border: 1px solid #e94560; color: #e94560; cursor: pointer; border-radius: 5px; transition: 0.3s; } .option-btn:hover { background: #e94560; color: #fff; } .correct { background: #2ecc71 !important; color: white !important; border-color: #2ecc71; } .wrong { background: #e74c3c !important; color: white !important; border-color: #e74c3c; } #feedback { margin: 15px 0; font-style: italic; color: #fff; } #next-btn { background: #fff; color: #1a1a2e; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; } .hidden { display: none; } #score-board { margin-top: 20px; font-size: 0.9rem; opacity: 0.8; } const quizData = [ { q: "Who was the artist of the iconic Rider-Waite-Smith deck?", a: ["Pamela Colman Smith", "Aleister Crowley", "Salvador Dalí"], correct: 0, fact: "Pamela Colman Smith was an illustrator who was paid a flat fee and went largely uncredited for her work for decades!" }, { q: "What was the original 15th-century name for Tarot?", a: ["The Oracle", "Tarocchi", "Arcana"], correct: 1, fact: "Before it was used for divination, 'Tarocchi' was simply a popular trick-taking card game in Italy." }, { q: "The 'Fool' card is numbered what in the Major Arcana?", a: ["1", "22", "0"], correct: 2, fact: "The 0 represents infinite potential and the start of a journey where anything is possible." } ]; let currentQ = 0; let score = 0; const qText = document.getElementById('question-text'); const optContainer = document.getElementById('options-container'); const feedback = document.getElementById('feedback'); const nextBtn = document.getElementById('next-btn'); const scoreDisplay = document.getElementById('current-score'); function loadQuestion() { const data = quizData[currentQ]; qText.innerText = data.q; optContainer.innerHTML = ''; feedback.classList.add('hidden'); nextBtn.classList.add('hidden'); data.a.forEach((opt, index) => { const btn = document.createElement('button'); btn.innerText = opt; btn.classList.add('option-btn'); btn.onclick = () => checkAnswer(index); optContainer.appendChild(btn); }); } function checkAnswer(index) { const buttons = document.querySelectorAll('.option-btn'); const correctIdx = quizData[currentQ].correct; buttons.forEach(b => b.disabled = true); if(index === correctIdx) { buttons[index].classList.add('correct'); score++; scoreDisplay.innerText = score; } else { buttons[index].classList.add('wrong'); buttons[correctIdx].classList.add('correct'); } feedback.innerText = quizData[currentQ].fact; feedback.classList.remove('hidden'); nextBtn.classList.remove('hidden'); } nextBtn.onclick = () => { currentQ++; if(currentQ < quizData.length) { loadQuestion(); } else { qText.innerText = `The reading is complete! Your Final Score: ${score}/${quizData.length}`; optContainer.innerHTML = ''; feedback.innerText = "Thanks for playing our Tarot Trivia!"; nextBtn.classList.add('hidden'); } }; loadQuestion();

designbohemian.com Tarot Trivia Game: Loading your destiny...

Next Question
Score: 0

#tarot-game-container {
font-family: 'Georgia', serif;
max-width: 500px;
margin: 40px auto;
padding: 20px;
background: #1a1a2e;
color:… #TarotTrivia #TarotCards #MysticalJourney #TarotGame #FortuneTelling

1 0 0 0
Preview
Tarot Trivia Game Loading your destiny... Next Question Score: 0 #tarot-game-container { font-family: 'Georgia', serif; max-width: 500px; margin: 40px auto; padding: 20px; background: #1a1a2e; color: #e94560; border: 2px solid #950740; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } #question-text { font-size: 1.4rem; margin-bottom: 20px; color: #fff; } .option-btn { display: block; width: 100%; padding: 12px; margin: 10px 0; background: transparent; border: 1px solid #e94560; color: #e94560; cursor: pointer; border-radius: 5px; transition: 0.3s; } .option-btn:hover { background: #e94560; color: #fff; } .correct { background: #2ecc71 !important; color: white !important; border-color: #2ecc71; } .wrong { background: #e74c3c !important; color: white !important; border-color: #e74c3c; } #feedback { margin: 15px 0; font-style: italic; color: #fff; } #next-btn { background: #fff; color: #1a1a2e; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; } .hidden { display: none; } #score-board { margin-top: 20px; font-size: 0.9rem; opacity: 0.8; } const quizData = [ { q: "Who was the artist of the iconic Rider-Waite-Smith deck?", a: ["Pamela Colman Smith", "Aleister Crowley", "Salvador Dalí"], correct: 0, fact: "Pamela Colman Smith was an illustrator who was paid a flat fee and went largely uncredited for her work for decades!" }, { q: "What was the original 15th-century name for Tarot?", a: ["The Oracle", "Tarocchi", "Arcana"], correct: 1, fact: "Before it was used for divination, 'Tarocchi' was simply a popular trick-taking card game in Italy." }, { q: "The 'Fool' card is numbered what in the Major Arcana?", a: ["1", "22", "0"], correct: 2, fact: "The 0 represents infinite potential and the start of a journey where anything is possible." } ]; let currentQ = 0; let score = 0; const qText = document.getElementById('question-text'); const optContainer = document.getElementById('options-container'); const feedback = document.getElementById('feedback'); const nextBtn = document.getElementById('next-btn'); const scoreDisplay = document.getElementById('current-score'); function loadQuestion() { const data = quizData[currentQ]; qText.innerText = data.q; optContainer.innerHTML = ''; feedback.classList.add('hidden'); nextBtn.classList.add('hidden'); data.a.forEach((opt, index) => { const btn = document.createElement('button'); btn.innerText = opt; btn.classList.add('option-btn'); btn.onclick = () => checkAnswer(index); optContainer.appendChild(btn); }); } function checkAnswer(index) { const buttons = document.querySelectorAll('.option-btn'); const correctIdx = quizData[currentQ].correct; buttons.forEach(b => b.disabled = true); if(index === correctIdx) { buttons[index].classList.add('correct'); score++; scoreDisplay.innerText = score; } else { buttons[index].classList.add('wrong'); buttons[correctIdx].classList.add('correct'); } feedback.innerText = quizData[currentQ].fact; feedback.classList.remove('hidden'); nextBtn.classList.remove('hidden'); } nextBtn.onclick = () => { currentQ++; if(currentQ < quizData.length) { loadQuestion(); } else { qText.innerText = `The reading is complete! Your Final Score: ${score}/${quizData.length}`; optContainer.innerHTML = ''; feedback.innerText = "Thanks for playing our Tarot Trivia!"; nextBtn.classList.add('hidden'); } }; loadQuestion();

Tarot Trivia Game: Loading your destiny...

Next Question
Score: 0

#tarot-game-container {
font-family: 'Georgia', serif;
max-width: 500px;
margin: 40px auto;
padding: 20px;
background: #1a1a2e;
color: #e94560;
border: 2px… #TarotTrivia #TarotGame #FortuneTelling #Divination #CardReading

0 0 0 0
Post image Post image Post image

Talon: A Tarot Card Game share.google/OtaCgGiS05GG...
#FrenchTarot #tarotgame #tarotganes #tarotdemarseille

0 0 0 0
Post image Post image

#tarot #tarock #playingcards #tarotgame #frenchtarot

1 1 0 0

I LIED! It wasn't for no reason! It was actually so you could catch up a bit before this, our newest tale in Camellia: youtu.be/LN60EUK9cpA #nesterpromo #nesterstory #solottrpg #opatronmine #sirensonggames #tarotgame #warlock #ferrys #teafilledtales #camellia #indiegame #bookbinding (yes, really)

8 2 0 0
Post image

Would you like to play a tarot game? "Crime cards" is a fun game that both tickles your imagination and helps strengthen your creativity. It also boosts your understanding of the cards: www.thescepticstarot.com/2023/03/crime-cards.html #tarot #tarotgame

0 0 0 0
12 best indie games from Rising Tide Challenge/Blue Ocean Games #blueoceancompetition #risingtide
12 best indie games from Rising Tide Challenge/Blue Ocean Games #blueoceancompetition #risingtide YouTube video by RK Games

I've voted on 200 trailers for indie games - here is my top 12 #blueoceancompetition #indiegame #Gamedev, #indiedev, #indiegames, #indie, #indiegamedev, #Roguelike, #Roguelite, #CardGame, #Deckbuilder, #GameDesign, #TarotGame, #Tarot, #RKGames

youtu.be/eiu36Dpu45s?...

9 3 0 0
Preview
Anamnesis - YouTube I really enjoyed Anamnesis, and while there's all sorts of good hacks of it, my personal favorite has to be Death of the Author! making the impulse to change...

In the spirit of 5/5 being a "rate a game 5 stars" day, here's the actual play of the two easiest 5 stars I've given any games I've played, Anamnesis and Death of the Author! youtube.com/playlist?lis... #nesterpromo #nesterstory #deathoftheauthor #anamnesis #tarotgame #solottrpg #journalinggame

0 0 0 0
Y'know, the best art is always a Work in Progress | WIP: Lil Stompy | Stream VOD Saturday
Y'know, the best art is always a Work in Progress | WIP: Lil Stompy | Stream VOD Saturday YouTube video by Glacier Nester

The stories I tell aren't all Serious, Dire affairs, you know? Sometimes it's just me goofing around! youtu.be/dI2WOvvpaVo?... #nesterstory #nesterpromo #workinprogress #streamvod #tarotgame #solottrpg #drawinggame #storygame #littleguy #sketching #madscientist #labcoat

2 1 0 0
HELP! I’m making a Tarot Western! Tarot card deck-builder meets Western Grimdark fantasy
HELP! I’m making a Tarot Western! Tarot card deck-builder meets Western Grimdark fantasy YouTube video by RK Games

www.youtube.com/watch?v=s2K9...

I’m making a new game Tarot Cards + Western Grimdark - What do you think? Share your ideas and thoughts!
#indiegame #Gamedev, #indiedev, #indiegames, #indie, #indiegamedev, #Roguelike, #Roguelite, #CardGame, #Deckbuilder, #GameDesign, #TarotGame, #Tarot, #RKGames

13 5 0 0
What lies beyond a dead campaign? | Death of the Author: Aaron Nesterson | Tabletop RPG Time
What lies beyond a dead campaign? | Death of the Author: Aaron Nesterson | Tabletop RPG Time YouTube video by Glacier Nester

For no Particular Reason, I'm thinking about this game of Death of the Author today. youtu.be/sIp595gXBlE?... #nesterpromo #nesterstory #solottrpg #streamvod #livestream #improvgame #tarotgame #ttrpg #notdnd #monsteroftheweek #wellsorta #timetravel #deathoftheauthor #sologame #sologaming

2 1 0 0
Y'know, the best art is always a Work in Progress | WIP: Lil Stompy | Stream VOD Saturday
Y'know, the best art is always a Work in Progress | WIP: Lil Stompy | Stream VOD Saturday YouTube video by Glacier Nester

Ah, it's Saturday! Time for new VOD, first up is Work In Progress, which I had an absolute BLAST playing! I, for one, love lil' Stompy, and I hope you do too! youtu.be/dI2WOvvpaVo?... #livestream #nesterpromo #nesterstory #streamvod #ttrpgsky #solottrpg #journalinggame #drawitbadgetitdone #tarotgame

0 0 0 0
Preview
Anamnesis - YouTube Just in case my playing of Anamnesis wasn't a one-off affair, it gets a playlist! I mean, it wouldn't shock me if I picked it up again, the game is fantastic...

Anamnesis is a really good game, and death of the author is a super solid expansion on those rules! youtube.com/playlist?lis... (I especially like the way Death incentivises the changing of prompts) #ttrpg #solottrpg #livestream #streamvod #tarotgame #storygame #journalinggame

2 1 0 0
Text reads: Divination RPG, the tarot-driven roleplaying game. Fully Funded and Ending Soon - Kickstarter Project We Love. Image shows five modern tarot cards, illustrated with surrealist designs.

Text reads: Divination RPG, the tarot-driven roleplaying game. Fully Funded and Ending Soon - Kickstarter Project We Love. Image shows five modern tarot cards, illustrated with surrealist designs.

LESS THAN 24 HOURS TO GO! We are fully funded and reaching toward stretch goals—will you help us get there? Campaign ends tomorrow at noon Central! kck.st/3HfwpxD
#tarot #tarotrpg #tarotgame #ttrpg #tabletoprpg #indiegame #kickstarter #kickstarterendingsoon

0 0 0 0
Text on a bright yellow starburst background. Text reads: Ending soon! We are fully funded! Divination RPG - Kickstarter Project We Love

Text on a bright yellow starburst background. Text reads: Ending soon! We are fully funded! Divination RPG - Kickstarter Project We Love

WHO'S GOT MORE THAN 700 THUMBS AND IS FULLY FUNDED?!?!?! Don't miss your chance to be a part of Divination RPG—less than 48 hours to go! kck.st/3HfwpxD
#tarot #tarotgame #tarotrpg #ttrpg #tabletoprpg #kickstarter #fullyfunded

3 0 0 0
Text reads: "TFW one part of your brain is like" and we see a screenshot from an actual play of one player looking extremely devious. Further text reads: "While the rest of your brain is" and we see a screenshot of three additional actual play players with various degrees of shock and horror on their faces.

Text reads: "TFW one part of your brain is like" and we see a screenshot from an actual play of one player looking extremely devious. Further text reads: "While the rest of your brain is" and we see a screenshot of three additional actual play players with various degrees of shock and horror on their faces.

Find out what made THIS happen inside the mind of our Hero during last night's epic second part of our live stream actual play with @highshelfcltv.bsky.social. Replay available now!⁣ divinationrpg.com/divination-l...

#tarot #tarotgame #tarotrpg #ttrpg #tabletoprpg #actualplay #twitch

2 1 0 0
Bright text on a colorful background that reads "We are 90% funded! Campaign ends Tuesday". The Kickstarter Project We Love badge is featured in the corner.

Bright text on a colorful background that reads "We are 90% funded! Campaign ends Tuesday". The Kickstarter Project We Love badge is featured in the corner.

Happy Friday from a couple kids who are over NINETY PERCENT FUNDED!!!!
Less than four days to go—get thee to the Kickstarter!⁣

kck.st/3HfwpxD

#tarot #tarotgame #tarotrpg #ttrpg #tabletoprpg #indiegames #kickstarter #almostfunded #almostfundedkickstarter

2 0 0 0
Preview
Divination Live Stream - Divination Watch a full play-through of Divination in real time! The great team at the High Shelf Collective is hosting us and a tremendous cast of roleplayers for a two-part story on their Twitch channel. The f...

Did you miss us on Twitch this past Friday? Never fear, you can still watch the replay online!
divinationrpg.com/divination-l...

#tarot #tarotgame #tarotrpg #ttrpg #tabletoprpg #actualplay #twitch

0 0 0 0

Come watch a full two-part playthrough of Divination, tonight and next Friday on Twitch! And thanks so much to High Shelf Collective for hosting us!
#tarot #tarotrpg #tarotgame #ttrpg #tabletoprpg #tabletop #gaming #actualplay #livestream #twitch #twitchstream

2 1 0 0
Preview
Developer's Blog: The Roads and Sources The world of Divination is one wherein Pamela "Pixie" Colman Smith (a real life person who is lovingly fictionalized in our setting) depicted the Esoteric almost perfectly in her 1909 tarot deck. So p...

Up next on the Developer's Blog we hear from Matthew on the genesis of our magical universe—and how creating it also taught us about 14 cards whose in-game role had up to that point been somewhat unclear. divinationrpg.com/the-roads-an... #tarot #tarotgame #ttrpg #worldbuilding

0 0 0 0
Post image

Excited to unveil my newest character design project! Meet the Justice-themed character for a tarot-based game—a healer with a knack for offense. Here's a peek into my creative process! 🃏✨ #TarotGame #CharacterDesign #Gaming #ArtisticExpression #ConceptArt

4 2 1 0