Tag Archives: Deck of Many Things

Deck of Many Things Python Code

Introduction

I think I mentioned in my post a couple of weeks ago that I wanted to try to write a Deck of Many Things Python program. You’ll just have to click the link and give me another page view if you want to know for sure. Muahahahahah! In any case, I finally got a chance to sit down and start to put together some code for the project.

I’m not one for resolutions. However, I looked through my Google calendar and talked with ChatGPT about a way to schedule my hobbies so that I have time each day to work on them. Lego and Puzzles on Tuesday, miniatures on Wednesday. That sort of thing. Thursdays were supposed to be coding, but I only actually finally got around to sitting down and playing with it this morning.

The Code

Python
import random

deck = ["Construct", "Balance", "Comet", "DonJon", "Euryale", "Fates", "Flames", "Fool", "Gem", "Jester", "Key", "Knight", "Moon", "Puzzle", "Rogue", "Ruin", "Sage", "Skull", "Star", "Sun", "Talons", "Throne", "Void", "Tavern", "Mine", "Expert", "Maze", "Map", "Mage", "Lance", "Humanoid", "Giant", "Fiend", "Fey", "Elemental", "Dragon", "Door", "Crossroads", "Corpse", "Celestial", "Cavern", "Campfire", "Bridge", "Book", "Beast", "Aberration", "Monstrosity", "Ooze", "Path", "Pit", "Plant", "Priest", "Prisoner", "Ring", "Shield", "Ship", "Staff", "Stairway", "Statue", "Temple", "Tomb", "Tower", "Tree", "Undead", "Warrior", "Well"]
orientation = ["Upright", "Reversed"]

random.shuffle(deck)
print(deck[random.randint(0,len(deck))])
print(random.choice(orientation))
print("Find the card in The Deck of Many Things")
print("Card Reference Guide for an interpretation.")

The Output

The Verdict

I admit that the Deck of Many Things Python code isn’t much right now. But, this is my first time planning and implementing code that wasn’t already written. So, for a first attempt, I think that I did a pretty good job and it does what I wanted the early version to do. Going forward, I want to add the interpretation for each card to remove the need for the book. I also want to add an option for other card spreads further down the line. Eventually, I want to make it visual and maybe turn it into an app. Keep an eye on the page for updates.

One Last Note

I just got the idea to include the page number with the card to make referencing the guide easier. I’m very excited for everything that’s coming with this project.

Deck of Many Things Review

Introduction

As a socially awkward teen outcast by many of my peers, I played Dungeons and Dragons with my friends. So, I’ve been playing the game for well over 30 years now. Even so, the game sometimes surprises me. For instance, I never heard of the Deck of Many Things. That may shock some of you. Let me explain.

We ended up having a few play sessions before the friend group started to grow apart. Those of you who played know the usual outcomes. You either struggle to put together a group or the group disbands in the middle of a campaign. Sometimes both. Then, my adult and family playgroups never happened and became just me and Quinn. So, I’ve played probably less than the average player.

And that’s how you get a video like this where I am pleasantly surprised by my purchase.

The Book of Many Things

Even so, looking at the introduction to the book that comes with the deck makes me slightly embarrassed that I never encountered the deck before. It gives a history of the deck that goes back to the beginning. At some point, I should have ubiquitous piece of lore from the game. Thankfully, the book anticipates my ignorance.

They split the chapters into 5 sections. The first set of chapters gives DMs ideas of how to use the deck in their campaign. The other four sections then go into more detail for a different type of idea. There are chapters on character creation, astrological phenomena, adventure locations, and new monsters and characters to introduce into your games. It even shows you how to use the deck to create random puzzles. Overall, I think I’m going to have a lot of fun with this deck.

The Deck of Many Things

The deck comes with another reference guide. This one shows you how to set up the various spreads for putting together your adventures, characters, or puzzles. It then explains the meaning of each card. Similar to a tarot reading, they explain what upright and reversed mean in each context. Very cool touch.

The deck itself varies in the quality of artwork for each card. Some are highly detailed and vibrant. Others are far too plain. It makes sense in the context that all of the cards are different and represent different things. Some of those things are fantastic and vibrant. Others are not and their art reflects that. Overall, though all of the art is awesome.

These are my three favorite cards for art.

The Verdict

I think this is my favorite purchase so far for Dungeons and Dragons since getting back into the game. I understand now why it became such a popular part of the game over the years. No doubt that it becomes the one resource that I use more than the others. Heck, I already have an idea to scan the cards and maybe try to write some kind of app that automates the process for me. I’ve been trying to practice more coding every week. That gives me the opportunity to do so.