MC Cards: Is A Simple Card Collection Mod Where You Can Create Card Packs And Open Them To Reveal Cards.
Card Packs: Card Packs Can Be Created Using A Card Pack Base, Dye, And A Special Ingredient. JEI Is Highly Recommended
Cards: When Opening Card Packs You Will Receive Cards. The Rarity Of The Cards Depends On The Pack Rarity. There Is Also A Secret Rarity.
This Mod Is Also Available On Modrinth Here, And On Curseforge Here.
There Is Now A Official Wiki But It Is WIP Check It Out Here.
Note: This Mod Has Some Create Mod Compatibility!
Release On Mcreator
1.0.4 - Changes And Fixes
1.0.5 - 3 New Cards And Fixes
1.0.6 - Small Changes
1.0.7 - Christmas Update (Sorry Its Late)
5 New Cards
New Gamerule (canGetZeroPercentCards)
1.0.8 - Wiki Update
New Pack - Ultimate Card Pack
Bug Fixes - You Now Loose Christmas Card Pack When Opening It Properly
2 New Cards - Void Creeper(End) - Wiki(Platform Card)
New MC Cards Wiki Fandom
1.0.9 - Small Changes 1 New Card And 1 New Gamerule
Very Small Update With Some Balance Changes: Mega Boxes Give 6 Cards By Default Instead Of 8
New Gamerule: CardsGivenFromMegaBoxes - Allows You To Choose How Many Cards You Receive When Opening A Mega Box (Default 6)
1 New Card (Blizz)
There is a plugin called File Manager. It allows you to make .json files. recipies in minecraft are in that format.
They look something like this:
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"a",
"b",
"c"
],
"key": {
"a": {
"item": "minecraft:stone"
},
"b": {
"item": "minecraft:hopper"
},
"c": {
"item": "minecraft:stone_axe"
}
},
"result": {
"id": "mymod:mortar",
"count": 1
}
}
SevenTreeSkis (oh shoot i think i spelled it wrong) made a tutorial on that plugin. Good luck working on your mod!
If you want to go down the JSON route, check the w3schools JSON intro and the following chapters as needed. You'd need to structure it well, what ZenMozen suggested is a good start. Once you define a few recipes, you'll need to iterate over entries (JSON iterator I think it is) and check if a recipe fits the currently fitted items.
Thank you! I'll give it a try.