Mod

Mine Trading Cards Open Source Edition

Quick rating

Mine Trading Cards Open Source Edition

No reviews yet

A mod about collecting trading cards!

No Theme
No Genre
Cosmetics
NPCs
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
GNU General Public License v3.0 only
Latest Version
Mine Trading Cards 3.1.4 for Forge 1.16.5

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Mine Trading Cards

Mine Trading Cards is a mod about collecting trading cards.

Mobs will occasionally drop Cards Packs, Edition Packs, or packs of a given rarity. These packs contain Common, Uncommon, Rare, Ancient and Legendary cards.

You can also meet various villagers who specialize in selling or trading cards.

Cards are loaded in "editions" (sets or groups) from files separate from the mod. New cards and even new editions can be created by adding new files to the mtc folder.

 

Installation

Installing the mod works just like any other forge mod—put the .jar file in your mods folder.

Mine Trading Cards has extra files that must be downloaded and installed separately to load the default card sets.

Before update 3.1:
Download the "mtc" folder here (both branches have the same mtc folder) and extract it to a folder in your Minecraft directory.

Alternatively, create an "mtc" folder in your Minecraft directory and extract any of the content packs found here or in the discord server's #content-packs channel into that folder.

After installation, you should have a structure like the following, with \assets, \cards and \editions inside your \mtc folder:

.minecraft

      ---->mtc

            ---->assets

            ---->cards

            ---->editions

            ---->packs (optional—see "Custom Packs" section below)

As of update 3.1, MTC loads content packs from resource packs to save memory

Extract any of the content packs found [here](https://mega.nz/folder/Ssdl2YqI#XPktl7Ioj7s3j512T6Q1_Q) or in the discord server's #content-packs channel into that resource pack

There are template resource packs in the mega link
This new structure should look like this:

<resource pack folder or zip>
      ---->assets
          ---->is_mtc
                ---->mtc
                     ---->assets
                     ---->cards
                     ---->editions
                     ---->packs (optional—see "Custom Packs" section below)

Edition Packs:

Various pack editions are specified in the /editions folder, like so:

{
    "id": "my_edition",
    "name": "My Edition Pack",
    "color": "#55ff00" (optional—see below)
}

You do not need to specify a "color" field. If you don't, MTC will procedurally generate a color for the pack icon based on the id.

Custom Packs:

You can create custom packs, with amounts of cards based on categories and rarities!

Example:

{
    "id": "test_pack",
    "name": "Test Custom Pack",
    "categories": [
        "Minecraft Mob:2:common",
        "World Item:3:common"
    ],
    "color": "#ff0088"  (optional—see below)
}

Place this .json file into the /mtc/packs/ folder.

You do not need to specify a "color" field. If you don't, MTC will procedurally generate a color for the pack icon based on the id.

This pack would contain two common cards with the "Minecraft Mob" category, and three common cards with the "World Item" category.

All .json files in /mtc/packs will be loaded as custom packs.

Discord Server:

If you want to post a content pack, put a link in the discord server!

https://discord.gg/TWDcAaX

I (Powerthegreat) WILL NOT BE ACTIVE ON DISCORD FOR THE FORESEEABLE FUTURE. Please be respectful of the moderators there.

Forum thread:

https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/2913625-mine-trading-cards-open-source-updated-by

This mod was originally developed by Tradeworld (Minecraft Forums username, AKA nogier (github) or R4p3lay (here on curseforge)), then made open source.

Source code for 1.7.10 - https://github.com/Powerthegreat/Mine-Trading-Cards-Source

Source code for 1.12.2 - https://github.com/Powerthegreat/Mine-Trading-Cards-Source-1.12.2

Mine Trading Cards banner image

Mine Trading Cards is a mod about collecting trading cards.
Mobs will occasionally drop Cards Packs, Edition Packs, or packs of a given rarity. These packs contain Common, Uncommon, Rare, Ancient and Legendary cards.
You can also meet various villagers who specialize in selling or trading cards.
Cards are loaded in "editions" (sets or groups) from files separate from the mod. New cards and even new editions can be created by adding new files to the mtc folder.

Installation

Installing the mod works just like any other forge mod—put the .jar file in your mods folder.
Mine Trading Cards has extra files that must be downloaded and installed separately to load the default card sets.

Earlier versions Before 3.1 Download the "mtc" folder [here](https://github.com/Powerthegreat/Mine-Trading-Cards-Mod) (both branches have the same mtc folder) and extract it to a folder in your Minecraft directory. Alternatively, create an "mtc" folder in your Minecraft directory and extract any of the content packs found [here](https://mega.nz/folder/Ssdl2YqI#XPktl7Ioj7s3j512T6Q1_Q) or in the discord server's #content-packs channel into that folder.

After installation, you should have a structure like the following, with \assets, \cards and \editions inside your \mtc folder:

.minecraft
      ---->mtc
            ---->assets
            ---->cards
            ---->editions
            ---->packs (optional—see "Custom Packs" section below)

As of update 3.1, MTC loads content packs from resource packs to save memory
Extract any of the content packs found here or in the discord server's #content-packs channel into that resource pack
There are template resource packs in the mega link
This new structure should look like this:

<resource pack folder or zip>
      ---->assets
            ---->is_mtc
                  ---->mtc
                        ---->assets
                        ---->cards
                        ---->editions
                        ---->packs (optional—see "Custom Packs" section below)

Edition Packs:

Various pack editions are specified in the /editions folder, like so:

{  
    "id": "my_edition",  
    "name": "My Edition Pack",  
    "color": "#55ff00" (optional—see below)  
}

You do not need to specify a "color" field. If you don't, MTC will procedurally generate a color for the pack icon based on the id.

Custom Packs:

You can create custom packs, with amounts of cards based on categories and rarities!
Example:

{
    "id": "test_pack",
    "name": "Test Custom Pack",
    "categories": [
        "Minecraft Mob:2:common",
        "World Item:3:common"
    ],
    "color": "#ff0088"  (optional—see below)
}

Place this .json file into the /mtc/packs/ folder.
You do not need to specify a "color" field. If you don't, MTC will procedurally generate a color for the pack icon based on the id.

This pack would contain two common cards with the "Minecraft Mob" category, and three common cards with the "World Item" category.
All .json files in /mtc/packs will be loaded as custom packs.

Discord Server:

If you want to post a content pack, put a link in the discord server!
https://discord.gg/TWDcAaX
I (Powerthegreat) WILL NOT BE ACTIVE ON DISCORD FOR THE FORESEEABLE FUTURE. Please be respectful of the moderators there.

Forum thread:

https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/2913625-mine-trading-cards-open-source-updated-by
This mod was originally developed by Tradeworld (Minecraft Forums username, AKA nogier (github) or R4p3lay (on curseforge)), then made open source.

Source code for 1.7.10 - https://github.com/Powerthegreat/Mine-Trading-Cards-Source
Source code for 1.12.2 - https://github.com/Powerthegreat/Mine-Trading-Cards-Source-1.12.2

Screenshots

Gallery

  • Card Trader
    Card Trader Card shop patron, who will offer you cards in exchange for other cards
  • Card Master
    Card Master Owner of the card shop, who will sell you cards and packs
  • Card Master Shop
    Card Master Shop A place where villagers can indulge in their card collecting hobby!
  • Sample Card
    Sample Card An example of a card from a custom edition pack
  • Opened card pack
    Opened card pack Opening a pack will give you an assortment of cards of different rarities
  • Card Pack
    Card Pack One of many packs that can be dropped
  • MTC banner image
    MTC banner image
  • Card Master
    Card Master Owner of the card shop, who will sell you cards and packs

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~35,000
Total Downloads
CurseForge
~28,000
Modrinth
~7,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync