MC Cards

Downloads:
40
Upvotes: 3
Share this:
Category
Project status
In development
License
All Rights Reserved
Modification type
Supported Minecraft versions
1.20.1

Jump to downloads

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

Card Packs

 


 

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.

Some Cards

 


 

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!

Modification files
cards-1.0.9-forge-1.20.1.jar - Latest Version - Small Changes And New Gamerule Uploaded on: 01/03/2025 - 20:15   File size: 861.75 KB
Changelog

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)

hey, now THAT is cool! maybe you could implement some Recipe Generator - like way to make your own card packs... I really hope that you don't abandon it so I can see what came out of this)

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.

I Dont Know If I Understand What You Guys Mean By Recipe Generator To Create Your Own Card Packs. Currently Cards Are Randomly Chosen From Tags So A Recipe In Json Wouldnt Help Or Do You Just Mean New Card Packs?