-
Notifications
You must be signed in to change notification settings - Fork 80
Your First Mod
WilsontheWolf edited this page Jan 29, 2025
·
3 revisions
This page is designed to help you find what is needed when first making a mod. If you are just looking on more clarifcation on something specific, you should check the sidebar to see if it's covered, or ask in the Balatro Discord.
- If you haven't already Install Steamodded.
- Checkout the Mod Metadata page for how to get your mod detected by Steamodded.
- Checkout the API Documentation page for information on the basics of Steamodded's api.
- For adding content, check the Game Objects part of the sidebar, which lists every object SMODS can create.
- The Lua Reference Manual and Programming in Lua are very useful resources to familarize yourself with lua (the game's programming language).
- Often, something you want to do has already been implemented in the base game. Familiarizing yourself with the game's code is an important step to learn Balatro modding. To get Balatro's source code, extract the game's executable file with 7-zip. For Mac, find
Balatro.love
insideBalatro.app
and rename it toBalatro.zip
, then extractBalatro.zip
. A handful of vanilla jokers have been reimplemented in a Steamodded example mod for reference. - It can also be useful to look at code from other mod creators.
- Steamodded has some Example Mods.
- The best place to find other mods is in the official Balatro Discord.
- Lovely is a tool that lets you patch the balatro source code, and since it's nessicary for Steamodded, Steamodded mods can take advantage of it too. See Lovely's patch documentation.
Game Objects
- API Documentation
- SMODS.Achievement
- SMODS.Atlas
- SMODS.Blind
- SMODS.Center
- SMODS.Challenge
- SMODS.DeckSkin
- SMODS.Keybind
- SMODS.Language
- SMODS.ObjectType
- SMODS.PokerHand
- SMODS.Rarity
- SMODS.Seal
- SMODS.Sound
- SMODS.Stake
- SMODS.Sticker
- SMODS.Suit and SMODS.Rank
- SMODS.Tag
Guides
- Your First Mod
- Mod Metadata
- Joker Calculation
- Calculate Functions
- Logging
- Event Manager
- Localization
- Mod functions
- UI Structure
- Utility Functions
Found an issue, or want to add something? Submit a PR to the Wiki repo.