This guide explains how to structure and publish your Balatro mods in the Balatro Mod Index repository. Follow the instructions below carefully to ensure your mod is properly added.
Your mod should have the following structure inside the mods/
directory:
- mods/
- Author@Modname/
- thumbnail.jpg (optional but preferred)
- description.md (required)
- meta.json (required)
- Author@Modname/
For a mod titled "Pokermon" by "InertSteak":
- mods/
- InertSteak@Pokermon/
- thumbnail.jpg
- description.md
- meta.json
- InertSteak@Pokermon/
A markdown file describing your mod's features, installation steps, and any additional details you wish to share.
This file stores essential metadata in JSON format. Make sure you adhere to the valid categories and mod-loader options. Below is an example:
{
"title": "Extended Cards",
"requires-steamodded": true,
"requires-talisman": false,
"categories": ["Content"],
"author": "Joe Mama",
"repo": "https://github.com/joemama/extended-cards",
"downloadURL": "https://github.com/joemama/extended-cards/releases/latest/extended-cards.zip",
"folderName": "ExtendedCards",
"version": "1.0.0",
"automatic-version-check": true
}
- title: The name of your mod.
- requires-steamodded: If your mod requires the Steamodded mod loader, set this to
true
. - requires-talisman: If your mod requires the Talisman mod, set this to
true
. - categories: Must contain at least one of
Content
,Joker
,Quality of Life
,Technical
,Miscellaneous
,Resource Packs
orAPI
. - author: Your chosen username or handle.
- repo: A link to your mod's repository.
- downloadURL: A direct link to the latest version of your released mod. Using an automatic link to the latest release is preferred.
- folderName: (Optional) The name for the mod's install folder. This must be unique, and cannot contain characters
<
>
:
"
/
\
|
?
*
- version: (Optional) The version number of the mod files available at
downloadURL
. - automatic-version-check: (Optional but recommended) Set to
true
to let the Index automatically update theversion
field.- Updates happen once every hour, by checking either your mod's latest Release or latest commit, depending on the
downloadURL
. - Enable this option only if your
downloadURL
points to an automatically updating source, using a link to releases/latest (recommended), or a link to the latest commit (HEAD).
- Updates happen once every hour, by checking either your mod's latest Release or latest commit, depending on the
If included, this image will appear alongside your mod in the index. Maximum and recommended size is 1920x1080 pixels.
-
Fork the Balatro Mod Index Repository
Go to the main Balatro Mod Index repository on GitHub and click Fork to create your own copy. -
Create a New Mod Directory
Undermods/
, add a folder namedAuthor@Modname
(e.g.,InertSteak@Pokermon
).
Inside it, include:description.md
(required)meta.json
(required)thumbnail.jpg
(optional but recommended)
-
Write Your Mod Description
Usedescription.md
to explain what your mod does, key features, and any usage instructions. -
Populate
meta.json
-
Commit and Push
Commit your directory and files, then push them to your fork. -
Open a Pull Request (PR)
From your fork, open a Pull Request to the main repository's default branch (e.g.,main
):
- Title: "Add Author@Modname mod"
- Description: Briefly describe your mod's purpose or any extra details.
-
Automated Checks
As soon as you open the PR, GitHub Actions runs the automated checks to ensure your mod meets the required standards. If any checks fail, you will need to address the issues before your PR can be merged. -
Manual Review
A project maintainer or designated reviewer will review your PR to confirm it meets ethical, technical, and overall quality standards. -
Merge
Once the automated checks and manual review pass, your PR will be merged. Your mod then becomes part of the Balatro Mod Index!
Once your submission is reviewed and approved, your mod will be added to the Balatro Mod Index!
All submissions must be safe, legal, and appropriate for a general audience. This means:
-
No mods containing malware or spyware.
-
No copyrighted content that is used without permission.
-
No hateful, discriminatory, or offensive material.
By submitting your own mod to the Balatro Mod Index, you are agreeing to allow your mod to be displayed in and redistributed by Balatro Mod Manager. If you would like your content to be removed from the Balatro Mod Index at any point, please create an Issue or submit a Pull Request with the relevant content deleted.
Mods should ideally be submitted by their creators. If you would like to submit a mod on behalf of a mod's creator, please do so in a way that is considerate of the author, their creative works, and their time.
Mods will only be accepted on the Balatro Mod Index if they have been released under a redistribution-friendly license (such as GPL, MIT, MPL or similar), or if the mod's authors have given explicit and public permission. It is strongly encouraged to ask for permission before submitting other's mods to the Balatro Mod Index, regardless of license.
Before submitting mods created by other people:
-
Check that the mod is working on the most current version of the game, and has not been deprecated or abandoned.
-
Check that the mod's license allows redistribution by third parties - otherwise, ask permission from the creator.
-
Check the mod's requirements for Steamodded and Talisman, along with any other dependencies that should be listed in the description.
-
Check if the mod requires a specific installation folder name, and set the
folderName
parameter accordingly. -
Check that the mod doesn't have any other special or unusual installation requirements.
-
Check if the mod has any promotional images that might be suitable for use as a thumbnail.
When submitting a mod on behalf of someone else, please link to the latest Release whenever possible rather than the latest repository HEAD. This helps to keep modded Balatro stable for more players, by only using tested releases instead of potentially untested in-development builds.
Thanks for contributing to the Balatro Mod Index and helping the community grow!