D&D Crafting

Quick Access


Intro


Welcome to DnD Crafting. This site is meant to help Dungeons and Dragons players and dungeon masters with crafting.

Locations


The players are travelling through the woods, and one of them says "I go foraging in the bushes". What do they find?

The locations page keeps a list of different locations, and each location shows the ingredients that can be found there. Each ingredients has a rarity, making it easy for DMs to decide what the player finds.

Recipes


Each recipe contains the effects of the recipe, such as giving +1d4 on the next wisdom check, a list of ingredients needed, and other useful information.

Ingredients


Each ingredients has a rarity, and a list of the recipes it can be used in.

Contributing


This project is Open Source, and anyone is welcome to contribute ingredients, recipes, and locations. You will need to know a little bit about how GitHub works, but besides that all you need to do is just edit a JSON file

Github


Go to our Github page and create a new branch, this is a way for you to add recipes and then submit them to be reviewed.

Adding


To add a new recipe, go to the file /data/recipes.json, and add a new entry into the list.

The file contains recipes that look like this

{
              "title": "Lavender Tea",
              "description": "A soothing tea with a light smell.",
              "effects": ["+1d4 on next Wisdom Check"],
              "image": "./images/lavenderTea.jpg",
              "preparationTime": "πŸ”₯ Short Rest",
              "ingredients": ["Water", "Lavender"],
              "categories": ["Cooking"]
            },

To add a new recipe, just create a new entry in the list in the same format.