diff --git a/.github/scripts/requirements.lock b/.github/scripts/requirements.lock
index 9b59c223..13b630a6 100644
--- a/.github/scripts/requirements.lock
+++ b/.github/scripts/requirements.lock
@@ -1,5 +1,5 @@
-certifi==2025.1.31
-charset-normalizer==3.4.1
+certifi==2025.4.26
+charset-normalizer==3.4.2
idna==3.10
requests==2.32.3
urllib3==2.4.0
diff --git a/.github/scripts/update_mod_versions.py b/.github/scripts/update_mod_versions.py
index 6b577d70..3de6dc24 100755
--- a/.github/scripts/update_mod_versions.py
+++ b/.github/scripts/update_mod_versions.py
@@ -15,6 +15,8 @@ import requests
GITHUB_TOKEN = os.environ.get('GITHUB_TOKEN')
HEADERS = {'Authorization': f'token {GITHUB_TOKEN}'} if GITHUB_TOKEN else {}
+TIME_NOW = int(time.time())
+
def extract_repo_info(repo_url):
"""Extract owner and repo name from GitHub repo URL."""
match = re.search(r'github\.com/([^/]+)/([^/]+)', repo_url)
@@ -27,14 +29,22 @@ def extract_repo_info(repo_url):
return None, None
VersionSource = Enum("VersionSource", [
- ("RELEASE_TAG", "release"),
+ ("LATEST_TAG", "release"),
("HEAD", "commit"),
+ ("SPECIFIC_TAG", "specific_tag"),
])
-def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
+def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1, tag_data=None):
"""Get the version string from a given GitHub repo."""
- if source is VersionSource.RELEASE_TAG:
+ if source is VersionSource.LATEST_TAG:
url = f'https://api.github.com/repos/{owner}/{repo}/releases/latest'
+ elif source is VersionSource.SPECIFIC_TAG:
+ if not tag_data:
+ print(f"ERROR: SPECIFIC_TAG source requires tag_name")
+ return None
+
+ tag_name = tag_data['name']
+ url = f'https://api.github.com/repos/{owner}/{repo}/releases/tags/{tag_name}'
else:
if not source is VersionSource.HEAD:
print(f"UNIMPLEMENTED(VersionSource): `{source}`,\nfalling back to `HEAD`")
@@ -58,10 +68,33 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
if response.status_code == 200:
data = response.json()
- if source is VersionSource.RELEASE_TAG:
+ if source is VersionSource.LATEST_TAG:
# Return name of latest tag
return data.get('tag_name')
+ elif source is VersionSource.SPECIFIC_TAG:
+ assets = data.get('assets', [])
+ if not assets:
+ print(f"⚠️ No assets found in release {tag_name}")
+ return None
+
+ latest_created_at = ""
+ latest_asset = None
+
+ for asset in assets:
+ created_at = asset.get('created_at', '')
+ if created_at > latest_created_at:
+ latest_created_at = created_at
+ latest_asset = asset['name']
+
+ # Convert 2099-12-31T01:02:03Z to 20991231_010203
+ parts = latest_created_at.replace('Z', '').split('T')
+ date_part = parts[0].replace('-', '') # 20991231
+ time_part = parts[1].replace(':', '') # 010203
+ version = f"{date_part}_{time_part}" # 20991231_010203
+ tag_data['file'] = latest_asset
+ return version
+
if data and len(data) > 0:
# Return shortened commit hash (first 7 characters)
return data[0]['sha'][:7]
@@ -98,7 +131,7 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
print(f"Waiting {wait_time} seconds until next attempt...")
time.sleep(wait_time)
n += 1
- return get_version_string(source, owner, repo, start_timestamp, n) # Retry
+ return get_version_string(source, owner, repo, start_timestamp, n, tag_data=tag_data) # Retry
else:
print(f"Next attempt in {wait_time} seconds, but Action run time would exceed 1800 seconds - Stopping...")
sys.exit(1)
@@ -165,10 +198,22 @@ def process_mod(start_timestamp, name, meta_file):
print("Download URL links to HEAD, checking latest commit...")
source = VersionSource.HEAD
new_version = get_version_string(VersionSource.HEAD, owner, repo, start_timestamp)
+ elif (meta.get('fixed-release-tag-updates') == True) and "/releases/download/" in download_url:
+ source = VersionSource.SPECIFIC_TAG
+ tag_data = {}
+
+ # Pattern: /releases/download/{tag}/{file} - tag is second-to-last
+ print("Download URL links to specific release asset, checking that asset's tag...")
+ tag_name = download_url.split('/')[-2]
+ print(f"Checking release tag: {tag_name}")
+ tag_data['name'] = tag_name
+ new_version = get_version_string(
+ source, owner, repo, start_timestamp, tag_data=tag_data
+ )
else:
print("Checking releases for latest version tag...")
- source = VersionSource.RELEASE_TAG
+ source = VersionSource.LATEST_TAG
new_version = get_version_string(source, owner, repo, start_timestamp)
if not new_version:
@@ -190,8 +235,11 @@ def process_mod(start_timestamp, name, meta_file):
f"✅ Updating {name} from {current_version} to {new_version} ({source})"
)
meta['version'] = new_version
+ meta['last-updated'] = TIME_NOW
if "/archive/refs/tags/" in download_url:
meta['downloadURL'] = f"{repo_url}/archive/refs/tags/{meta['version']}.zip"
+ elif source == VersionSource.SPECIFIC_TAG:
+ meta['downloadURL'] = f"{repo_url}/releases/download/{tag_data['name']}/{tag_data['file']}"
with open(meta_file, 'w', encoding='utf-8') as f:
# Preserve formatting with indentation
@@ -241,4 +289,3 @@ if __name__ == "__main__":
# Exit with status code 0 even if no updates were made
sys.exit(0)
-
diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml
index 315b718f..5ae77220 100644
--- a/.github/workflows/check-mod.yml
+++ b/.github/workflows/check-mod.yml
@@ -121,10 +121,11 @@ jobs:
- name: Validate meta.json Against Schema
if: always() && steps.find-changed-mods.outputs.changed_mods_found == 'true'
- uses: dsanders11/json-schema-validate-action@v1.2.0
+ uses: dsanders11/json-schema-validate-action@v1.4.0
with:
schema: "./schema/meta.schema.json"
files: ${{ steps.find-changed-mods.outputs.meta_json_files }}
+ custom-errors: true
- name: Validate Download URLs
if: always() && steps.find-changed-mods.outputs.changed_mods_found == 'true'
@@ -148,12 +149,3 @@ jobs:
fi
fi
done < changed_mods.txt
-
- review-and-approve:
- needs: validate # This job will only run after 'validate' completes successfully.
- runs-on: ubuntu-latest
- environment:
- name: mod-review # This is the environment you created earlier.
- steps:
- - name: Await Approval from Maintainers
- run: echo "Waiting for manual approval by maintainers..."
diff --git a/README.md b/README.md
index ac96cb22..f95b17d8 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th
"categories": ["Content"],
"author": "Joe Mama",
"repo": "https://github.com/joemama/extended-cards",
- "downloadURL": "https://github.com/joemama/extended-cards/releases/latest/extended-cards.zip",
+ "downloadURL": "https://github.com/joemama/extended-cards/releases/latest/download/extended-cards.zip",
"folderName": "ExtendedCards",
"version": "1.0.0",
"automatic-version-check": true
@@ -49,11 +49,18 @@ This file stores essential metadata in JSON format. **Make sure you adhere to th
- **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](https://docs.github.com/en/repositories/releasing-projects-on-github/linking-to-releases) is preferred.
+- **version**: The version number of the mod files available at `downloadURL`.
- *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 the `version` 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](https://docs.github.com/en/repositories/releasing-projects-on-github/linking-to-releases) (recommended), or a link to the [latest commit (HEAD)](https://docs.github.com/en/repositories/working-with-files/using-files/downloading-source-code-archives#source-code-archive-urls).
+ - Updates happen once every hour, by checking either your mod's latest Release, latest commit, or specific release tag, depending on the `downloadURL`.
+ - Enable this option **only** if your `downloadURL` points to an automatically updating source:
+ - **Latest release** (recommended): Using a link to [releases/latest](https://docs.github.com/en/repositories/releasing-projects-on-github/linking-to-releases)
+ - **Latest commit**: Using a link to the [latest commit (HEAD)](https://docs.github.com/en/repositories/working-with-files/using-files/downloading-source-code-archives#source-code-archive-urls)
+- *fixed-release-tag-updates*: (*Optional*) Set to `true` if your mod uses a fixed release tag and still wants to auto-update when modifying the underlying files. This can be useful for repositories with multiple mods, allowing you to have a release tag dedicated for each mod where you upload new versions. Note that:
+ - Requires `automatic-version-check` to also be set to `true`.
+ - The `downloadURL` must point to a specific release asset using a link such as `https://github.com/author/repo/releases/download/my-release-tag/mod.zip`.
+
+
### 3. thumbnail.jpg (Optional)
If included, this image will appear alongside your mod in the index. Maximum and recommended size is 1920x1080 pixels.
diff --git a/mods/ABGamma@Brainstorm-Rerolled/description.md b/mods/ABGamma@Brainstorm-Rerolled/description.md
new file mode 100644
index 00000000..2119f290
--- /dev/null
+++ b/mods/ABGamma@Brainstorm-Rerolled/description.md
@@ -0,0 +1,55 @@
+# Brainstorm Rerolled
+This is a fork of both [Brainstorm](https://github.com/OceanRamen/Brainstorm) created by [OceanRamen](https://github.com/OceanRamen) as well as [Immolate](https://github.com/SpectralPack/Immolate) please give credit to them as I have simply modified the hard work they did
+
+# /!\ Not compatible with macOS /!\
+
+## Description
+This repository houses both the code for the brainstorm mod as well as the code for the C++ version of the Immolate seed finder. If you would like to create your own filters simply
+add the code to the Immolate.cpp file, update the brainstorm endpoints to include whatever you need and then build it. This will generate a dll
+that you can then place in the mods folder of balatro. The brainstorm mod will automatically detect the dll and use it, though you will need to update the brainstorm.lua and ui.lua
+in order to properly use your new options
+
+## Features
+### Save-States
+Brainstorm has the capability to save up to 5 save-states through the use of in-game key binds.
+> To create a save-state: Hold `z + 1-5`
+> To load a save-state: Hold `x + 1-5`
+
+Each number from 0 - 5 corresponds to a save slot. To overwrite an old save, simply create a new save-state in it's slot.
+
+### Fast Rerolling
+Brainstorm allows for super-fast rerolling through the use of an in-game key bind.
+> To fast-roll: Press `Ctrl + r`
+
+### Auto-Rerolling
+Brainstorm can automatically reroll for parameters as specified by the user.
+You can edit the Auto-Reroll parameters in the Brainstorm in-game settings page.
+> To Auto-Reroll: Press `Ctrl + a`
+
+### Various Filters
+In addition to the original filters from brainstorm I have added a few more filters that can help facilitate Crimson Bean or simply an easy early game
+
+ANTE 8 BEAN: This ensures you get a Turtle Bean within the first 150 items in the shop
+LATE BURGLAR: This ensures there is a burglar within the first 50-150 cards in the ante 6, 7, or 8 shop
+RETCON: This ensures that the retcon voucher appears before or in ante 8
+EARLY COPY + MONEY: This ensures that between the shop and the packs in ante 1 you get a brainstorm, blueprint, and some form of money generation
+
+### Custom Filtering
+I have added some basic code and an example to go off of to create custom filters. I have set it up so that custom filters will override any other selected filter to avoid crashes. If you want to use
+the mod as originally created simply keep the custom filters set to "No Filter". If you want to create your own custom filters you will need to edit immolate.cpp and immolate.hpp to add your custom filter similar to how I added the "Negative Blueprint" filter
+once added there you can build it and then copy the resulting dll into the brainstorm mod folder. Then you need to update the ui.lua and brainstorm.lua too add your new filter to the list.
+
+#### Adding Custom Filters
+1. Open immolate.hpp
+ 1. Add the name of your new filter to `enum class customFilters`
+ 1. Add a new case in `inline std::string filterToString(customFilters f)` for your new filter
+ 1. add a new if statement in `inline customFilters stringToFilter(std::string i)` for your new filter
+1. Open immolate.cpp
+ 1. Add a new case in the switch statement for your filter to `long filter(Instance inst)`
+ 1. Add corresponding code inside of that case for your custom filter
+1. Save and build the C++ code and copy the resulting dll into the brainstorm mod folder
+1. Open ui.lua
+ 1. Add a new entry to the `local custom_filter_list` corresponding to your new filter
+ 1. Add a new entry to the `local custom_filter_keys` corresponding to your new filter
+1. Save ui.lua and run the game
+1. Your new filter should now be usable in the brainstorm settings
\ No newline at end of file
diff --git a/mods/ABGamma@Brainstorm-Rerolled/meta.json b/mods/ABGamma@Brainstorm-Rerolled/meta.json
new file mode 100644
index 00000000..bff9c7b9
--- /dev/null
+++ b/mods/ABGamma@Brainstorm-Rerolled/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Brainstorm-Rerolled",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Technical",
+ "Miscellaneous"
+ ],
+ "author": "OceanRamen and ABGamma",
+ "repo": "https://github.com/ABGamma/Brainstorm-Rerolled/",
+ "downloadURL": "https://github.com/ABGamma/Brainstorm-Rerolled/releases/latest/download/Brainstorm-Rerolled.zip",
+ "folderName": "Brainstorm-Rerolled",
+ "version": "Brainstorm-Rerolled-1.0.2-alpha",
+ "automatic-version-check": true
+}
diff --git a/mods/ABGamma@Brainstorm-Rerolled/thumbnail.jpg b/mods/ABGamma@Brainstorm-Rerolled/thumbnail.jpg
new file mode 100644
index 00000000..0b88b9eb
Binary files /dev/null and b/mods/ABGamma@Brainstorm-Rerolled/thumbnail.jpg differ
diff --git a/mods/ABuffZucchini@GreenerJokers/description.md b/mods/ABuffZucchini@GreenerJokers/description.md
new file mode 100644
index 00000000..b00a8c16
--- /dev/null
+++ b/mods/ABuffZucchini@GreenerJokers/description.md
@@ -0,0 +1 @@
+A content mod with 50 Vanilla-balanced Jokers, and 5 Decks. Fully complete but some new Jokers may be added in the future!
\ No newline at end of file
diff --git a/mods/ABuffZucchini@GreenerJokers/meta.json b/mods/ABuffZucchini@GreenerJokers/meta.json
new file mode 100644
index 00000000..cd1be290
--- /dev/null
+++ b/mods/ABuffZucchini@GreenerJokers/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Greener Jokers",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "ABuffZucchini",
+ "repo": "https://github.com/ABuffZucchini/Greener-Jokers",
+ "downloadURL": "https://github.com/ABuffZucchini/Greener-Jokers/archive/refs/heads/main.zip",
+ "folderName": "Greener-Jokers",
+ "version": "a4a73ab",
+ "automatic-version-check": true,
+ "last-updated": 1759209396
+}
diff --git a/mods/ABuffZucchini@GreenerJokers/thumbnail.jpg b/mods/ABuffZucchini@GreenerJokers/thumbnail.jpg
new file mode 100644
index 00000000..9602b869
Binary files /dev/null and b/mods/ABuffZucchini@GreenerJokers/thumbnail.jpg differ
diff --git a/mods/AMY@AMY'sWaifus/meta.json b/mods/AMY@AMY'sWaifus/meta.json
index 9df3a729..65d9eeec 100644
--- a/mods/AMY@AMY'sWaifus/meta.json
+++ b/mods/AMY@AMY'sWaifus/meta.json
@@ -10,5 +10,6 @@
"downloadURL": "https://github.com/mikamiamy/AMY-s-Balatro-texturepack/archive/refs/heads/main.zip",
"folderName": "AMY's Waifu",
"automatic-version-check": true,
- "version": "36785d5"
+ "version": "d9c283f",
+ "last-updated": 1758410071
}
diff --git a/mods/ARandomTank7@Balajeweled/description.md b/mods/ARandomTank7@Balajeweled/description.md
index 30fa99fe..c4e3a554 100644
--- a/mods/ARandomTank7@Balajeweled/description.md
+++ b/mods/ARandomTank7@Balajeweled/description.md
@@ -1,6 +1,5 @@
-# Balajeweled
A resource pack that replaces the playing cards' suits into gems from the Bejeweled series.
As of v0.1.2, the face cards had their letters and suit icons changed, to better align with the other cards.
-**REQUIRES STEAMODDED**
+**REQUIRES STEAMODDED AND MALVERK AS OF v0.1.3a**
diff --git a/mods/ARandomTank7@Balajeweled/meta.json b/mods/ARandomTank7@Balajeweled/meta.json
index fcf05766..4721adcb 100644
--- a/mods/ARandomTank7@Balajeweled/meta.json
+++ b/mods/ARandomTank7@Balajeweled/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/ARandomTank7/Balajeweled",
"downloadURL": "https://github.com/ARandomTank7/Balajeweled/releases/latest/download/Balajeweled.zip",
"automatic-version-check": true,
- "version": "v0.1.3"
+ "version": "v0.1.3b",
+ "last-updated": 1760977296
}
diff --git a/mods/AbsentAbigail@AbsentDealer/meta.json b/mods/AbsentAbigail@AbsentDealer/meta.json
index fb71ed2c..ef98f9e3 100644
--- a/mods/AbsentAbigail@AbsentDealer/meta.json
+++ b/mods/AbsentAbigail@AbsentDealer/meta.json
@@ -10,6 +10,7 @@
"repo": "https://github.com/AbsentAbigail/AbsentDealer",
"downloadURL": "https://github.com/AbsentAbigail/AbsentDealer/releases/latest/download/absentdealer.zip",
"folderName": "AbsentDealer",
- "version": "v20250609212559",
- "automatic-version-check": true
+ "version": "v1.3.3",
+ "automatic-version-check": true,
+ "last-updated": 1759843666
}
diff --git a/mods/Agoraaa@FlushHotkeys/meta.json b/mods/Agoraaa@FlushHotkeys/meta.json
index a4b46aec..e4f86235 100644
--- a/mods/Agoraaa@FlushHotkeys/meta.json
+++ b/mods/Agoraaa@FlushHotkeys/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/Agoraaa/FlushHotkeys",
"downloadURL": "https://github.com/Agoraaa/FlushHotkeys/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "ac9d035"
+ "version": "2f0a91f",
+ "last-updated": 1757949499
}
diff --git a/mods/Aikoyori@AikoyoriPaintJob/description.md b/mods/Aikoyori@AikoyoriPaintJob/description.md
index 5eae134c..babf785d 100644
--- a/mods/Aikoyori@AikoyoriPaintJob/description.md
+++ b/mods/Aikoyori@AikoyoriPaintJob/description.md
@@ -1,4 +1,9 @@
# Aikoyori Paint Job
-Retextures some Jokers.
+Retextures specific Jokers.
+
+Currently
+- Idol -> Hoshino Ai from Oshi no Ko
+- Egg -> [Instagram Egg](https://en.wikipedia.org/wiki/Instagram_egg)
+- Square Joker -> some Terrain from Minecraft
**Requires Malverk**
\ No newline at end of file
diff --git a/mods/Aikoyori@Aikoyoris-Shenanigans/description.md b/mods/Aikoyori@Aikoyoris-Shenanigans/description.md
new file mode 100644
index 00000000..a1473cc2
--- /dev/null
+++ b/mods/Aikoyori@Aikoyoris-Shenanigans/description.md
@@ -0,0 +1,44 @@
+Basically a content mod where I add whatever I feel like adding.
+
+The thumbnail is still not doing this mod's justice because there are way more than what's there.
+
+## What does it have?
+
+This mod features (as of time writing this)
+- 50+ Jokers and!
+- At least three unique new mechanics never before seen in Balatro!
+- Literally play Scrabble in Balatro
+- 11 Planet Cards and at least 25 consumables (I ain't putting the exact numbers)!
+- Two Balance Mode for either a Balanced experience or number go up mode
+- 40+ Boss Blinds
+- 10+ Card Enhancements
+- 6 Decks
+- Hardcore Challenge Mode (for those looking to test their mod set)
+- A lot of cross-mod content! (I am looking for more cross-mod so if you make a mod please let me know!)
+- More to come!
+
+## What, what?
+Yes, that's right, this mod features a "Balance" system (which is basically just Cryptid gameset in disguise)
+where you can pick the number you want to play with depending on your mood!
+
+> Note: Absurd Balance (the likes of Cryptid) requires [Talisman](https://github.com/SpectralPack/Talisman) to be installed. Talisman is not essential if you want to play Adequate (Vanilla) Balance
+
+## But...
+That's not it. This mod features a bunch of cross-mod content already from the likes of More Fluff, Card Sleeves, Partners, and more!
+
+## I haven't even said a thing yet
+Oh.
+
+## I wanted to ask if I can spell swear words when playing the so called Scrabble?
+That's for you to find out! Download now!
+
+## What if I have more questions?
+Feel free to ask in [Discord Server](https://discord.gg/JVg8Bynm7k) for the mod or open an issue!
+
+## Credits
+`@larantula_l` on Discord for their art contributions
+`@eggymari` on Discord for their ?????? Joker Art
+
+@nh_6574 for his Card UI code
+
+Balatro Discord for everything else
\ No newline at end of file
diff --git a/mods/Aikoyori@Aikoyoris-Shenanigans/meta.json b/mods/Aikoyori@Aikoyoris-Shenanigans/meta.json
new file mode 100644
index 00000000..d45c687f
--- /dev/null
+++ b/mods/Aikoyori@Aikoyoris-Shenanigans/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Aikoyori's Shenanigans",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Aikoyori",
+ "repo": "https://github.com/Aikoyori/Balatro-Aikoyoris-Shenanigans",
+ "downloadURL": "https://github.com/Aikoyori/Balatro-Aikoyoris-Shenanigans/archive/refs/heads/stable.zip",
+ "automatic-version-check": true,
+ "version": "bc8db9a",
+ "last-updated": 1762694522
+}
diff --git a/mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg b/mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg
new file mode 100644
index 00000000..2f0f3600
Binary files /dev/null and b/mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg differ
diff --git a/mods/AppleMania@Maniatro/description.md b/mods/AppleMania@Maniatro/description.md
new file mode 100644
index 00000000..2b7bc01f
--- /dev/null
+++ b/mods/AppleMania@Maniatro/description.md
@@ -0,0 +1,72 @@
+# Maniatro
+
+## ¿Qué es Maniatro?
+
+Maniatro es un mod para el juego Balatro que añade nuevos Jokers y más para hacer la experiencia de juego más caótica.
+
+## Jokers
+
+De momento, hay 45 Jokers, 2 cartas de Tarot y 2 cartas mejoradas para disfrutar en este momento.
+
+Cada actualización añadirá de 12 a 17 Jokers, los cuales vendrán en forma de Waves. Varios de estos Jokers han sido creados gracias a las ideas de amigos y más, por lo que esté mod no sería el mismo sin ellos. En el mod estarán las personas que han estado involucradas en esto, con su respectivo agradecimiento.
+
+El mod depende de Talisman, aqui un link para poder descargarlo: https://github.com/SpectralPack/Talisman
+
+## Waves
+### Wave 1 - Maniatro Basics (1.0.0)
+| # | Joker | Mecánica |
+|----|----------------------|--------------------------------------------------------------------------|
+| 1 | Manzana Verde | Si juegas exactamente 5 cartas, ganas +3$ y +5 multi por esa mano.|
+| 2 | Ushanka | Obtienes +1 espacio de Joker pero tu mano se reduce a -1 carta.|
+| 3 | Xifox | X2 multi por cada 7 que puntúe.|
+| 4 | Net | Si la mano jugada tiene exactamente tres palos distintos, NET dará X2 chips.|
+| 5 | Keep Rollin' | Cualquier carta de picas jugada tiene un 25% de probabilidad de retriggearse. Si acierta, lo vuelve a intentar en la misma carta.|
+| 6 | Loss | Si la mano usada tiene exactamente 4 cartas en este orden: As, 2, 2, 2, gana X3 multi.|
+| 7 | Insomnio | X1.5 multi. Al comenzar una ronda, tiene 50% de ganar +0,5X. Si falla, se destruye.|
+| 8 | Red Dead Redemption II | Si ganas la ronda en tu primer intento, +15 multi Si usas más de un intento, -5 multi al acabar la ronda.|
+| 9 | Minion Pigs | Por cada Joker de rareza común adquirido, este Joker contiene +15 multi.|
+| 10 | Ale | Cada vez que juegas una mano, hay una probabilidad del 50% de darte +50 chips o quitarte -50 chips.|
+| 11 | Nauiyo | +0.2X por cada carta más en tu baraja. -0.2X por cada carta menos en tu baraja.|
+| 12 | Tablet | Si repites el mismo tipo de mano en dos jugadas seguidas, el multiplicador pasa a X2.5. Aumenta +0.5X por cada repetición adicional.|
+| 13 | Amongla | X3 multi. 0.125% de probabilidad de cerrar el juego.|
+| 14 | Fatal | . . . |
+| 15 | Proto | Por cada ronda, copia la habilidad de un Joker aleatorio. |
+
+### Wave 2 - Cat Attack (2.0.0)
+| # | Joker | Mecánica |
+|----|----------------------|--------------------------------------------------------------------------|
+| 16 | Rufino | +3 multi por cada consumible usado.|
+| 17 | Pisu | Por cada gato que tengas comprado, +2X chips.|
+| 18 | EVIL Pisu | X1 multi. Aumenta +0.01X por cada segundo transcurrido.|
+| 19 | Sappho | X2 multi si la mano jugada no contiene ninguna figura.|
+| 20 | Mia | Si ganas la ronda sin hacer ningún descarte, gana +25 chips. Si descartas, perderás todo el progreso.|
+| 21 | Parabettle | Por cada 10 descartes, gana +25 chips permanentes.|
+| 22 | Joker tributario | Si tienes menos de 20$, este joker te dará +3$ por cada mano jugada. Si tienes más, no surgirá efecto.|
+| 23 | Mr. (Ant)Tenna | Todo lo que hay en la tienda tiene un 50% de descuento.|
+| 24 | BALATRO TOMORROW | Gana +0.25X chips por cada ronda ganada.|
+| 25 | Weezer | Este Joker se duplica cada 3 rondas. Por cada Weezer repetido, ganará +0.5X multi.|
+| 26 | Pride | Gana +69 multi por cada carta policromo que poseas.|
+| 27 | Lata de cerveza | Empieza con +50 multi. Pierde -5 multi por cada mano jugada.|
+| 28 | Paquete de cigarros | Al final de cada ronda: Si tienes dinero acumulado, pierdes -1$ y este gana +3 multi |
+| 29 | Caja vacía | . . . |
+| 30 | Julio | +24 multi. Cada 4 manos jugadas, el multi se eleva al cuadrado. |
+| 31 | Nuevo comienzo | Al final de cada ronda: Destruye un Joker al azar y gana +0.5X chips |
+| 32 | Determinación | Este Joker aplica X5 multi Cuántas más manos juegues, más fuerte se vuelve.|
+
+### Wave 3 - Burned Memories (3.0.0)
+| # | Joker | Mecánica |
+|----|----------------------|--------------------------------------------------------------------------|
+| 33 | Ushanka desgastado | Cada 4 rondas, hay un 25% de probabilidad de conseguir +1 espacio para Jokers.|
+| 34 | Xifox desgastado | Si juegas un 7, hay un 10% de probabilidad de volverlo policromo.|
+| 35 | Obituary | Cada As o 2 jugado dará +4 multi.|
+| 36 | Amongla desgastado | X6 multi. 25% de probabilidad de cerrar el juego.|
+| 37 | Diédrico | Una mano cuenta como 2 manos. |
+| 38 | Pendrive | Cada minuto, este dará +5 chips. Alcanza un límite de hasta 100 chips.|
+| 39 | Gafas de Spamton | Si tienes menos de 20$, este joker te dará +3$ por cada mano jugada. Si tienes más, no surgirá efecto.|
+| 40 | Euro | +1$ por cada mano jugada.|
+| 41 | Frutos del bosque |+30 chips o +15 multi.|
+| 42 | Nira | ^1 multi. Si la mano jugada solo contiene corazones, aumenta en +0.2^ multi.|
+| 43 | Matkrov | Cada Joker raro que tengas dará X5 chips.|
+| 44 | Drokstav | Al acabar la mano, crea una carta mejorada aleatoria y la añade directamente a tu mano.|
+| 45 | Letko | Aplica N! multi basado en el número de cartas en tu primera mano.
+
diff --git a/mods/AppleMania@Maniatro/meta.json b/mods/AppleMania@Maniatro/meta.json
new file mode 100644
index 00000000..f31c5f31
--- /dev/null
+++ b/mods/AppleMania@Maniatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Maniatro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "Applemania",
+ "repo": "https://github.com/AppleMania30/Maniatro",
+ "downloadURL": "https://github.com/AppleMania30/Maniatro/archive/refs/tags/4.5.0.zip",
+ "folderName": "Maniatro",
+ "version": "4.5.0",
+ "automatic-version-check": true,
+ "last-updated": 1761322897
+}
diff --git a/mods/AppleMania@Maniatro/thumbnail.jpg b/mods/AppleMania@Maniatro/thumbnail.jpg
new file mode 100644
index 00000000..1b59905e
Binary files /dev/null and b/mods/AppleMania@Maniatro/thumbnail.jpg differ
diff --git a/mods/Arashi Fox@Arashicoolstuff/description.md b/mods/Arashi Fox@Arashicoolstuff/description.md
new file mode 100644
index 00000000..af83d034
--- /dev/null
+++ b/mods/Arashi Fox@Arashicoolstuff/description.md
@@ -0,0 +1,5 @@
+# Arashicoolstuff
+
+Some jokers I made with Joker Forge.
+
+If you want to add your joker ideas to the mod, just join my Discord server!
\ No newline at end of file
diff --git a/mods/Arashi Fox@Arashicoolstuff/meta.json b/mods/Arashi Fox@Arashicoolstuff/meta.json
new file mode 100644
index 00000000..fe7b8e96
--- /dev/null
+++ b/mods/Arashi Fox@Arashicoolstuff/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Arashicoolstuff",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Joker"
+ ],
+ "author": "Arashi Fox",
+ "repo": "https://github.com/ArashiFox/Arashicoolstuff",
+ "downloadURL": "https://github.com/ArashiFox/Arashicoolstuff/archive/refs/heads/main.zip",
+ "folderName": "Arashicoolstuff",
+ "version": "228226f",
+ "automatic-version-check": true,
+ "last-updated": 1757153689
+}
diff --git a/mods/Arashi Fox@Arashicoolstuff/thumbnail.jpg b/mods/Arashi Fox@Arashicoolstuff/thumbnail.jpg
new file mode 100644
index 00000000..6c4bb26a
Binary files /dev/null and b/mods/Arashi Fox@Arashicoolstuff/thumbnail.jpg differ
diff --git a/mods/BKM@BalatroCommunityCollegePack/description.md b/mods/BKM@BalatroCommunityCollegePack/description.md
new file mode 100644
index 00000000..e8a7229d
--- /dev/null
+++ b/mods/BKM@BalatroCommunityCollegePack/description.md
@@ -0,0 +1,3 @@
+a **vanilla-like** mod with 25+ new jokers intended to maintain the original balance of the base game. Also includes new challenges. Inspired by Rofflatro & Extra Credit consider us the cheaper, worse, but still homely alternative to BalatroU. Follow ow development & updates [@BalatroCC](https://www.youtube.com/@BalatroCC) on YouTube!
+
+### by BKM (BalatroCC)
\ No newline at end of file
diff --git a/mods/BKM@BalatroCommunityCollegePack/meta.json b/mods/BKM@BalatroCommunityCollegePack/meta.json
new file mode 100644
index 00000000..af29ee62
--- /dev/null
+++ b/mods/BKM@BalatroCommunityCollegePack/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Balatro Community College",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "BKM",
+ "repo": "https://github.com/beckcarver/balatro-cc-pack/",
+ "downloadURL": "https://github.com/beckcarver/balatro-cc-pack/releases/latest/download/balatro-cc-pack.zip",
+ "folderName": "BalatroCC",
+ "version": "1.0.2",
+ "automatic-version-check": true,
+ "last-updated": 1758158121
+}
diff --git a/mods/BKM@BalatroCommunityCollegePack/thumbnail.jpg b/mods/BKM@BalatroCommunityCollegePack/thumbnail.jpg
new file mode 100644
index 00000000..708c0a91
Binary files /dev/null and b/mods/BKM@BalatroCommunityCollegePack/thumbnail.jpg differ
diff --git a/mods/BakersDozenBagels@Bakery/meta.json b/mods/BakersDozenBagels@Bakery/meta.json
index f3ea84fe..4732c63b 100644
--- a/mods/BakersDozenBagels@Bakery/meta.json
+++ b/mods/BakersDozenBagels@Bakery/meta.json
@@ -11,5 +11,6 @@
"repo": "https://github.com/BakersDozenBagels/BalatroBakery",
"downloadURL": "https://github.com/BakersDozenBagels/BalatroBakery/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "488197e"
+ "version": "be4264d",
+ "last-updated": 1757472794
}
diff --git a/mods/BakersDozenBagels@ValleyOfTheKings/description.md b/mods/BakersDozenBagels@ValleyOfTheKings/description.md
new file mode 100644
index 00000000..5b4811bd
--- /dev/null
+++ b/mods/BakersDozenBagels@ValleyOfTheKings/description.md
@@ -0,0 +1,5 @@
+# Valley of the Kings
+
+Adds 20 Egyptian God themed jokers, made for Osiris' birthday.
+
+Ideas come from Maple Maelstrom and Reaperkun; Coding was done by BakersDozenBagels and Revo
diff --git a/mods/BakersDozenBagels@ValleyOfTheKings/meta.json b/mods/BakersDozenBagels@ValleyOfTheKings/meta.json
new file mode 100644
index 00000000..08f1b06e
--- /dev/null
+++ b/mods/BakersDozenBagels@ValleyOfTheKings/meta.json
@@ -0,0 +1,11 @@
+{
+ "title": "Valley of the Kings",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content", "Joker"],
+ "author": "BakersDozenBagels",
+ "repo": "https://github.com/BakersDozenBagels/balatroValleyOfTheKings/",
+ "downloadURL": "https://github.com/BakersDozenBagels/balatroValleyOfTheKings/archive/refs/tags/v0.1.0.zip",
+ "version": "0.1.0"
+}
+
diff --git a/mods/BarrierTrio@Cardsauce/meta.json b/mods/BarrierTrio@Cardsauce/meta.json
index c7e2bb3b..803554f5 100644
--- a/mods/BarrierTrio@Cardsauce/meta.json
+++ b/mods/BarrierTrio@Cardsauce/meta.json
@@ -12,5 +12,5 @@
"downloadURL": "https://github.com/BarrierTrio/Cardsauce/archive/refs/heads/main.zip",
"folderName": "Cardsauce",
"automatic-version-check": true,
- "version": "8094b16"
+ "version": "71485d9"
}
diff --git a/mods/BestSpark687090@SparkLatro/description.md b/mods/BestSpark687090@SparkLatro/description.md
new file mode 100644
index 00000000..75f6e864
--- /dev/null
+++ b/mods/BestSpark687090@SparkLatro/description.md
@@ -0,0 +1,11 @@
+# SparkLatro
+
+A mod that kinda made me go insane while making it.
+
+### Requires Talisman, I guess.
+
+## uhh credits i guess
+
+most stuff by me
+
+unless shown on the joker's tooltip, it was made by me
diff --git a/mods/BestSpark687090@SparkLatro/meta.json b/mods/BestSpark687090@SparkLatro/meta.json
new file mode 100644
index 00000000..081611fb
--- /dev/null
+++ b/mods/BestSpark687090@SparkLatro/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "SparkLatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "BestSpark687090",
+ "repo": "https://github.com/BestSpark687090/SparkLatro",
+ "downloadURL": "https://github.com/BestSpark687090/SparkLatro/archive/refs/heads/main.zip",
+ "folderName": "SparkLatro",
+ "version": "01603e4",
+ "automatic-version-check": true,
+ "last-updated": 1758158121
+}
diff --git a/mods/BestSpark687090@SparkLatro/thumbnail.jpg b/mods/BestSpark687090@SparkLatro/thumbnail.jpg
new file mode 100644
index 00000000..847a384b
Binary files /dev/null and b/mods/BestSpark687090@SparkLatro/thumbnail.jpg differ
diff --git a/mods/Beverage@FantaJokers/description.md b/mods/Beverage@FantaJokers/description.md
new file mode 100644
index 00000000..ccfa26a2
--- /dev/null
+++ b/mods/Beverage@FantaJokers/description.md
@@ -0,0 +1,21 @@
+ _____ _ _ _ ____ _
+| ___|_ _ _ __ | |_ __ _ | |_| |__ ___ / ___| | _____ ___ __
+| |_ / _` | '_ \| __/ _` | | __| '_ \ / _ \ | | | |/ _ \ \ /\ / / '_ \
+| _| (_| | | | | || (_| | | |_| | | | __/ | |___| | (_) \ V V /| | | |
+|_| \__,_|_|_|_|\__\__,_| \__|_| |_|\___| \____|_|\___/ \_/\_/ |_| |_|
+ | | ___ | | _____ _ __ ___
+ _ | |/ _ \| |/ / _ \ '__/ __|
+| |_| | (_) | < __/ | \__ \
+ \___/ \___/|_|\_\___|_| |___/ Resource Pack!
+
+--- Art by Beverage --- v1.1
+
+A furry resource pack that changes 96 of the 150 Jokers in the game and a couple other misc textures.
+Brief list of Retextures:
+ - 2 Vouchers
+ - 4 Seals
+ - 3 Booster Packs
+ - 3 Tags
+ - 2 Spectral Cards
+ - 96 Jokers
+
diff --git a/mods/Beverage@FantaJokers/meta.json b/mods/Beverage@FantaJokers/meta.json
new file mode 100644
index 00000000..c28daabb
--- /dev/null
+++ b/mods/Beverage@FantaJokers/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Fanta the Clown Jokers",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "Beverage",
+ "repo": "https://github.com/BeverageArt/fanta-jokers",
+ "downloadURL": "https://github.com/BeverageArt/fanta-jokers/archive/refs/heads/main.zip",
+ "folderName": "FantaJokers",
+ "version": "8a40082",
+ "automatic-version-check": true,
+ "last-updated": 1758784625
+}
diff --git a/mods/Beverage@FantaJokers/thumbnail.jpg b/mods/Beverage@FantaJokers/thumbnail.jpg
new file mode 100644
index 00000000..3357160a
Binary files /dev/null and b/mods/Beverage@FantaJokers/thumbnail.jpg differ
diff --git a/mods/Blazingulag@Prism/meta.json b/mods/Blazingulag@Prism/meta.json
index cbd448ee..2ea3c311 100644
--- a/mods/Blazingulag@Prism/meta.json
+++ b/mods/Blazingulag@Prism/meta.json
@@ -10,5 +10,6 @@
"downloadURL": "https://github.com/blazingulag/Prism/archive/refs/heads/main.zip",
"folderName": "Prism",
"automatic-version-check": true,
- "version": "e94b9bc"
+ "version": "6bbdc5f",
+ "last-updated": 1761246836
}
diff --git a/mods/Blizzow@ThemedJokersRetriggered/description.md b/mods/Blizzow@ThemedJokersRetriggered/description.md
new file mode 100644
index 00000000..c19dd56f
--- /dev/null
+++ b/mods/Blizzow@ThemedJokersRetriggered/description.md
@@ -0,0 +1,39 @@
+# Themed Jokers:Retriggered
+
+A new and updated version of my old mod Themed Jokers.
+This time the jokers are more in line with vanilla jokers.
+Feel free to leave feedback and suggestions for more themes.
+
+## Overview
+
+### Combat Ace
+Join the Combat Aces on the battlefield.
+Recruit Aces to your deck and increase their strenght my promoting them.
+- 7 Jokers (3 Common, 2 Uncommon, 2 Rare)
+- 1 Tarot Card
+- 1 Deck (Back)
+- 1 Blind
+
+### Infected
+A deadly Infection spreads.
+Use Infected Cards in special pokerhands to unleash their full potential.
+- 9 Jokers (2 Common, 4 Uncommon, 2 Rare, 1 Legendary)
+- 1 Spectral Card
+- 1 Tarot Card
+- 1 Deck (Back)
+- 1 Enhancement
+- 5 Poker Hands
+
+### Jurassic
+Dinosaurs rise again!
+Use Dinosaurs to beat the blinds. Harness their power when they get extinct again!
+- 13 Jokers (2 Common, 8 Uncommon, 3 Rare)
+- 1 Spectral Card
+- 1 Tarot Card
+- 1 Deck (Back)
+
+### Mischief
+???
+- 6 Jokers (5 Common, 1 Legendary)
+- 1 Tarot Card
+- 2 Vouchers
\ No newline at end of file
diff --git a/mods/Blizzow@ThemedJokersRetriggered/meta.json b/mods/Blizzow@ThemedJokersRetriggered/meta.json
new file mode 100644
index 00000000..044d0ba4
--- /dev/null
+++ b/mods/Blizzow@ThemedJokersRetriggered/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Themed Jokers: Retriggered",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Blizzow",
+ "repo": "https://github.com/BlizzowX/Themed-Joker-Retriggered",
+ "downloadURL": "https://github.com/BlizzowX/Themed-Joker-Retriggered/releases/latest/download/ThemedJokersRetriggered.zip",
+ "folderName": "Themed Jokers Retriggered",
+ "version": "1.2.0",
+ "automatic-version-check": true,
+ "last-updated": 1757607637
+}
diff --git a/mods/Blizzow@ThemedJokersRetriggered/thumbnail.jpg b/mods/Blizzow@ThemedJokersRetriggered/thumbnail.jpg
new file mode 100644
index 00000000..58e07af4
Binary files /dev/null and b/mods/Blizzow@ThemedJokersRetriggered/thumbnail.jpg differ
diff --git a/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json
index 761d8aa6..8c2adaa7 100644
--- a/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json
+++ b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json
@@ -8,6 +8,6 @@
"author": "ButterSpaceship",
"repo": "https://github.com/ButterSpaceship/Glowypumpkin-Community-Mod",
"downloadURL": "https://github.com/ButterSpaceship/Glowypumpkin-Community-Mod/releases/latest/download/GlowyPumpkin-Custom-Deck.zip",
- "version": "V4.4",
+ "version": "V5.0",
"automatic-version-check": true
}
diff --git a/mods/CampfireCollective@ExtraCredit/meta.json b/mods/CampfireCollective@ExtraCredit/meta.json
index 910bfc0f..32266730 100644
--- a/mods/CampfireCollective@ExtraCredit/meta.json
+++ b/mods/CampfireCollective@ExtraCredit/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/GuilloryCraft/ExtraCredit",
"downloadURL": "https://github.com/GuilloryCraft/ExtraCredit/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "94bd9fb"
+ "version": "0855210"
}
diff --git a/mods/CelestinGaming@BalatrinGamingDeck/description.md b/mods/CelestinGaming@BalatrinGamingDeck/description.md
new file mode 100644
index 00000000..15b44a74
--- /dev/null
+++ b/mods/CelestinGaming@BalatrinGamingDeck/description.md
@@ -0,0 +1,6 @@
+# Balatrin Gaming Deck
+Deck design for Balatro cards inspired by [Ratatin Gaming](https://www.youtube.com/@RatatinGaming). Requires [Steamodded](https://github.com/Steamopollys/Steamodded).
+
+
+Made by [Celestin Gaming](https://x.com/CG64_oficial)
+
diff --git a/mods/CelestinGaming@BalatrinGamingDeck/meta.json b/mods/CelestinGaming@BalatrinGamingDeck/meta.json
new file mode 100644
index 00000000..1e47c9df
--- /dev/null
+++ b/mods/CelestinGaming@BalatrinGamingDeck/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "BalatrinGamingDeck",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "Celestin Gaming",
+ "repo": "https://github.com/CelestinGaming/BalatrinGamingDeck",
+ "downloadURL": "https://github.com/CelestinGaming/BalatrinGamingDeck/archive/refs/heads/main.zip",
+ "folderName": "BalatrinGamingDeck",
+ "automatic-version-check": true,
+ "version": "d1bc486"
+}
diff --git a/mods/CelestinGaming@BalatrinGamingDeck/thumbnail.jpg b/mods/CelestinGaming@BalatrinGamingDeck/thumbnail.jpg
new file mode 100644
index 00000000..07c64fe6
Binary files /dev/null and b/mods/CelestinGaming@BalatrinGamingDeck/thumbnail.jpg differ
diff --git a/mods/CountKiro@PMBalatroMod/description.md b/mods/CountKiro@PMBalatroMod/description.md
new file mode 100644
index 00000000..14092185
--- /dev/null
+++ b/mods/CountKiro@PMBalatroMod/description.md
@@ -0,0 +1,28 @@
+
+# Project Moon Balatro Texture Pack
+A Balatro Mod that adds custom made textures with Project Moon related characters, abnormalities and themes
+
+## To install
+
+1. Download and install, [Steammodded](https://github.com/Steamodded/smods), [Lovely](https://github.com/ethangreen-dev/lovely-injector) and [Malverk](https://github.com/Eremel/Malverk)
+
+2. [Ignore this step if you're downloading via the mod manager] Download the desired ProjectMoonTexturePack.zip file from Releases on the right menu (default has black backgrounds for playing cards, WhiteVersion has white backgrounds), extract it and then place it in your Mods folder. You'll know it's correct if you open the ProjectMoonTexturePack folder and there's an assets, localization and .lua file inside
+
+3. [Optional] Repeat step 2 for the ProjectMoonMusicAddon.zip if you desire to include the music
+
+5. [Optional] If you want to add the custom Balatro logo, you'll have to use 7zip to open up the Balatro.exe file located in the installation folder (Steam\steamapps\common\Balatro), navigate to resources -> textures -> 1x and replace the Balatro logo there. I provided the custom Balatro.png in my mod folder, inside the assets folder
+
+6. Go to Options -> Texture click on the custom Eternal sprite and hit Enable. It'll move up top, meaning the custom Spectral textures are enabled
+
+7. Enjoy the mod!
+
+
+## Known issues
+
+- Certain UI elements are still using the old colour schemes
+
+## Special Thanks
+
+Special thanks to Novell, [Dawni](https://x.com/hidawnihere), Sans, Simon and Oath for testing out the mod and giving suggestions!
+
+Also thanks to [DB](https://x.com/Despair_Bears) for showcasing my work on Twitter and in Detroit and everyone in the RegretfulDiscord and MentalBlock servers for the support!
diff --git a/mods/CountKiro@PMBalatroMod/meta.json b/mods/CountKiro@PMBalatroMod/meta.json
new file mode 100644
index 00000000..bd511306
--- /dev/null
+++ b/mods/CountKiro@PMBalatroMod/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Project Moon Texture Pack",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Resource Packs"],
+ "author": "Kiro",
+ "repo": "https://github.com/CountKiro/PMBalatroMod",
+ "downloadURL": "https://github.com/CountKiro/PMBalatroMod/releases/download/v1.0/ProjectMoonTexturePack_v1.0.1.zip",
+ "folderName": "ProjectMoonTexturePack",
+ "version": "1.0",
+ "automatic-version-check": false
+}
diff --git a/mods/CountKiro@PMBalatroMod/thumbnail.jpg b/mods/CountKiro@PMBalatroMod/thumbnail.jpg
new file mode 100644
index 00000000..18d1755a
Binary files /dev/null and b/mods/CountKiro@PMBalatroMod/thumbnail.jpg differ
diff --git a/mods/Cybernetic@poopoofart/description.md b/mods/Cybernetic@poopoofart/description.md
new file mode 100644
index 00000000..7f8c39e8
--- /dev/null
+++ b/mods/Cybernetic@poopoofart/description.md
@@ -0,0 +1 @@
+I poopoo my pants and this mod came out
diff --git a/mods/Cybernetic@poopoofart/meta.json b/mods/Cybernetic@poopoofart/meta.json
new file mode 100644
index 00000000..b84435cd
--- /dev/null
+++ b/mods/Cybernetic@poopoofart/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "poopoofart",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "cybernetic",
+ "repo": "https://github.com/Cybernetic2884/PooPooFart",
+ "downloadURL": "https://github.com/Cybernetic2884/PooPooFart/releases/latest/download/poopoofart.zip",
+ "folderName": "poopoofart",
+ "version": "v1.0",
+ "automatic-version-check": true,
+ "last-updated": 1757553458
+}
diff --git a/mods/Cybernetic@poopoofart/thumbnail.jpg b/mods/Cybernetic@poopoofart/thumbnail.jpg
new file mode 100644
index 00000000..7be9b6f2
Binary files /dev/null and b/mods/Cybernetic@poopoofart/thumbnail.jpg differ
diff --git a/mods/Danitskkj@Lost_Edition/description.md b/mods/Danitskkj@Lost_Edition/description.md
new file mode 100644
index 00000000..d801e0bf
--- /dev/null
+++ b/mods/Danitskkj@Lost_Edition/description.md
@@ -0,0 +1,20 @@
+# Lost Edition
+
+Lost Edition is a Vanilla+ expansion for Balatro, carefully crafted to keep the original game's spirit while introducing plenty of fresh content to discover!
+
+## Features
+- 🃏 70+ new Jokers to shake up your runs
+- 💀 Challenging new Boss Blinds
+- ✨ New Enhancements to expand your strategies
+- ⭐ New Editions to explore
+- ♠️ Extra Decks for even more playstyles
+- 🎟️ New Vouchers to change up your game
+- 🎨 Exciting new themed and collaborative Friend of Jimbo skins
+- **And much more!**
+
+This mod requires [Steamodded](https://github.com/Steamopollys/Steamodded) and [Lovely](https://github.com/ethangreen-dev/lovely-injector).
+
+## Credits
+Created by **ClickNoPaulo** & **Danitskkj**
+
+Detailed credits for everyone else who contributed to the mod can be found in-game. Thank you to all collaborators and artists who helped make Lost Edition a reality! ❤️
\ No newline at end of file
diff --git a/mods/Danitskkj@Lost_Edition/meta.json b/mods/Danitskkj@Lost_Edition/meta.json
new file mode 100644
index 00000000..6a3e395f
--- /dev/null
+++ b/mods/Danitskkj@Lost_Edition/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Lost Edition",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Quality of Life"
+ ],
+ "author": "ClicknoPaulo & Danitskkj",
+ "repo": "https://github.com/Danitskkj/Lost_Edition",
+ "downloadURL": "https://github.com/Danitskkj/Lost_Edition/archive/refs/heads/main.zip",
+ "folderName": "Lost_Edition",
+ "automatic-version-check": true,
+ "version": "58567c7"
+}
diff --git a/mods/Danitskkj@Lost_Edition/thumbnail.jpg b/mods/Danitskkj@Lost_Edition/thumbnail.jpg
new file mode 100644
index 00000000..2d1418b9
Binary files /dev/null and b/mods/Danitskkj@Lost_Edition/thumbnail.jpg differ
diff --git a/mods/Deco@Pokerleven/description.md b/mods/Deco@Pokerleven/description.md
new file mode 100644
index 00000000..77aa26e0
--- /dev/null
+++ b/mods/Deco@Pokerleven/description.md
@@ -0,0 +1,6 @@
+# What is Pokerleven?
+Pokerleven is an overhaul mod for Balatro based on Inazuma Eleven series. Currently it is in alpha state, be aware of bugs.
+
+It adds new small, big and boss blinds, as well as jokers and completely new mechanics.
+It is intended to play this mod without balatro content for the best experience.
+> by Deco
diff --git a/mods/Deco@Pokerleven/meta.json b/mods/Deco@Pokerleven/meta.json
new file mode 100644
index 00000000..264cf11d
--- /dev/null
+++ b/mods/Deco@Pokerleven/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Pokerleven",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Deco",
+ "folderName": "Pokerleven",
+ "repo": "https://github.com/DecoXFE/PokerLeven",
+ "downloadURL": "https://github.com/DecoXFE/PokerLeven/releases/latest/download/PokerLeven.zip",
+ "automatic-version-check": true,
+ "version": "v0.1.3-BETA",
+ "last-updated": 1761066976
+}
diff --git a/mods/Deco@Pokerleven/thumbnail.jpg b/mods/Deco@Pokerleven/thumbnail.jpg
new file mode 100644
index 00000000..ae15ac72
Binary files /dev/null and b/mods/Deco@Pokerleven/thumbnail.jpg differ
diff --git a/mods/DigitalDetective47@CustomSuitOrder/meta.json b/mods/DigitalDetective47@CustomSuitOrder/meta.json
index 13fa9a5b..f908a8ee 100644
--- a/mods/DigitalDetective47@CustomSuitOrder/meta.json
+++ b/mods/DigitalDetective47@CustomSuitOrder/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/DigitalDetective47/suit-order",
"downloadURL": "https://github.com/DigitalDetective47/suit-order/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "0b2f126"
+ "version": "cb74896",
+ "last-updated": 1757369749
}
diff --git a/mods/DigitalDetective47@Justice/description.md b/mods/DigitalDetective47@Justice/description.md
new file mode 100644
index 00000000..d591cb3a
--- /dev/null
+++ b/mods/DigitalDetective47@Justice/description.md
@@ -0,0 +1,3 @@
+#  Justice
+
+Customize how numbers appear in Balatro.
diff --git a/mods/DigitalDetective47@Justice/meta.json b/mods/DigitalDetective47@Justice/meta.json
new file mode 100644
index 00000000..8c8b5e18
--- /dev/null
+++ b/mods/DigitalDetective47@Justice/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Justice",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "DigitalDetective47",
+ "repo": "https://github.com/DigitalDetective47/justice",
+ "downloadURL": "https://github.com/DigitalDetective47/justice/archive/refs/heads/main.zip",
+ "automatic-version-check": true,
+ "version": "fb6e09e",
+ "last-updated": 1761873664
+}
diff --git a/mods/DigitalDetective47@Justice/thumbnail.jpg b/mods/DigitalDetective47@Justice/thumbnail.jpg
new file mode 100644
index 00000000..cdbb1472
Binary files /dev/null and b/mods/DigitalDetective47@Justice/thumbnail.jpg differ
diff --git a/mods/DigitalDetective47@NextAntePreview/meta.json b/mods/DigitalDetective47@NextAntePreview/meta.json
index 512df936..8a28d6aa 100644
--- a/mods/DigitalDetective47@NextAntePreview/meta.json
+++ b/mods/DigitalDetective47@NextAntePreview/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/DigitalDetective47/next-ante-preview",
"downloadURL": "https://github.com/DigitalDetective47/next-ante-preview/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "72c035a"
+ "version": "86f76df",
+ "last-updated": 1757369749
}
diff --git a/mods/DigitalDetective47@StrangeLibrary/meta.json b/mods/DigitalDetective47@StrangeLibrary/meta.json
index 83aea226..c462a1b6 100644
--- a/mods/DigitalDetective47@StrangeLibrary/meta.json
+++ b/mods/DigitalDetective47@StrangeLibrary/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/DigitalDetective47/strange-library",
"downloadURL": "https://github.com/DigitalDetective47/strange-library/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "aa9ef89"
+ "version": "89fb9e1",
+ "last-updated": 1762575595
}
diff --git a/mods/DigitalDetective47@StrangePencil/meta.json b/mods/DigitalDetective47@StrangePencil/meta.json
index 7318bea2..def68aa8 100644
--- a/mods/DigitalDetective47@StrangePencil/meta.json
+++ b/mods/DigitalDetective47@StrangePencil/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/DigitalDetective47/strange-pencil",
"downloadURL": "https://github.com/DigitalDetective47/strange-pencil/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "df43a20"
+ "version": "bf2a6ce",
+ "last-updated": 1762590050
}
diff --git a/mods/DivvyCr@Balatro-Preview/description.md b/mods/DivvyCr@Balatro-Preview/description.md
new file mode 100644
index 00000000..1703920c
--- /dev/null
+++ b/mods/DivvyCr@Balatro-Preview/description.md
@@ -0,0 +1,3 @@
+Simulate the score and the dollars that you will get by playing the selected cards!
+
+This mod simulates **VANILLA JOKERS ONLY**. It is **not compatible with modded jokers** and it likely never will be, sorry!
diff --git a/mods/DivvyCr@Balatro-Preview/meta.json b/mods/DivvyCr@Balatro-Preview/meta.json
new file mode 100644
index 00000000..5ba3b7a4
--- /dev/null
+++ b/mods/DivvyCr@Balatro-Preview/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Divvy's Preview",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "Divvy C.",
+ "repo": "https://github.com/DivvyCr/Balatro-Preview",
+ "downloadURL": "https://github.com/DivvyCr/Balatro-Preview/releases/latest/download/DVPreview_BMM.zip",
+ "folderName": "DVPreview",
+ "version": "v4.1",
+ "automatic-version-check": true,
+ "fixed-release-tag-updates": false
+}
diff --git a/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md
new file mode 100644
index 00000000..d5aa33b2
--- /dev/null
+++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md
@@ -0,0 +1,18 @@
+# Another Stupid Balatro Mod
+welcome to Another Stupid Balatro Mod in this mod you will find many interesting Jokers and others that look like crap. This mod contains. more than 160 new Jokers, consumables and more content
+(some other Joker is based on Spanish jokes)
+
+
+
+For the creation of jokers, consumables, seals, enchantments, and editions the following was used [JOKER FORGE](https://jokerforge.jaydchw.com/overview)
+
+# Installation
+This mod requires [Talisman](https://github.com/SpectralPack/Talisman)
+
+
+
+
+
+
+
+
diff --git a/mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json b/mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json
new file mode 100644
index 00000000..6fb13b1d
--- /dev/null
+++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "Another Stupid Balatro Mod",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "Dogg Fly",
+ "repo": "https://github.com/Dogg-Fly/Another-Stupid-Balatro-Mod",
+ "downloadURL": "https://github.com/Dogg-Fly/Another-Stupid-Balatro-Mod/releases/latest/download/anotherstupidbalatromod.zip",
+ "folderName": "anotherstupidbalatromod",
+ "version": "v4.2.1",
+ "automatic-version-check": true,
+ "last-updated": 1762719459
+}
diff --git a/mods/Dogg_Fly@AnotherStupidBalatroMod/thumbnail.jpg b/mods/Dogg_Fly@AnotherStupidBalatroMod/thumbnail.jpg
new file mode 100644
index 00000000..d98786cc
Binary files /dev/null and b/mods/Dogg_Fly@AnotherStupidBalatroMod/thumbnail.jpg differ
diff --git a/mods/Dogg_Fly@Kloun/description.md b/mods/Dogg_Fly@Kloun/description.md
new file mode 100644
index 00000000..e8af4f2d
--- /dev/null
+++ b/mods/Dogg_Fly@Kloun/description.md
@@ -0,0 +1,6 @@
+# Kloun
+Kloun is an alternate universe in which more clowns are added to the game as a replacement for jokers and jesters. In this universe, money is important.
+Right now, it's like a demo that adds 22 jokers and a set of consumables, a scoring system with money and etc. If you encounter an error or crash, please report it.
+
+
+
diff --git a/mods/Dogg_Fly@Kloun/meta.json b/mods/Dogg_Fly@Kloun/meta.json
new file mode 100644
index 00000000..00f288d8
--- /dev/null
+++ b/mods/Dogg_Fly@Kloun/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "Kloun",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "Dogg Fly",
+ "repo": "https://github.com/Dogg-Fly/Kloun",
+ "downloadURL": "https://github.com/Dogg-Fly/Kloun/releases/latest/download/kloun.zip",
+ "folderName": "kloun",
+ "version": "v1.1.1",
+ "automatic-version-check": true,
+ "last-updated": 1759702472
+}
diff --git a/mods/ECLA17@PixelPerfect/description.md b/mods/ECLA17@PixelPerfect/description.md
new file mode 100644
index 00000000..83922874
--- /dev/null
+++ b/mods/ECLA17@PixelPerfect/description.md
@@ -0,0 +1,2 @@
+A (un)balanced balatro mod made in jokerforge through pain, suffering, and peanut butter.
+requires steammodded and talisman
\ No newline at end of file
diff --git a/mods/ECLA17@PixelPerfect/meta.json b/mods/ECLA17@PixelPerfect/meta.json
new file mode 100644
index 00000000..710b8bb4
--- /dev/null
+++ b/mods/ECLA17@PixelPerfect/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "pixelperfect",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "ecla17",
+ "repo": "https://github.com/MacPlayz12/Pixel-Perfect",
+ "downloadURL": "https://github.com/MacPlayz12/Pixel-Perfect/releases/latest/download/pixelperfect.zip",
+ "folderName": "pixelperfect",
+ "version": "releasev3",
+ "automatic-version-check": true,
+ "last-updated": 1760206815
+}
diff --git a/mods/ECLA17@PixelPerfect/thumbnail.jpg b/mods/ECLA17@PixelPerfect/thumbnail.jpg
new file mode 100644
index 00000000..21a11575
Binary files /dev/null and b/mods/ECLA17@PixelPerfect/thumbnail.jpg differ
diff --git a/mods/ENNWAY@SuperFine/description.md b/mods/ENNWAY@SuperFine/description.md
new file mode 100644
index 00000000..a1f2154a
--- /dev/null
+++ b/mods/ENNWAY@SuperFine/description.md
@@ -0,0 +1,5 @@
+SuperFine!! is a 'Vanilla++' mod - aiming to add content that fits in with vanilla's balance, but stands out on its own.
+
+Currently, it adds 14 Jokers, 2 Spectral cards, 3 Boss Blinds, and one deck.
+
+Feel free to join the SuperFine!! thread in the Balatro Discord to discuss or learn more about the mod!
\ No newline at end of file
diff --git a/mods/ENNWAY@SuperFine/meta.json b/mods/ENNWAY@SuperFine/meta.json
new file mode 100644
index 00000000..e27ba579
--- /dev/null
+++ b/mods/ENNWAY@SuperFine/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "SuperFine!!",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "ENNWAY!",
+ "repo": "https://github.com/energykid/SuperFine",
+ "downloadURL": "https://github.com/energykid/SuperFine/releases/latest/download/SuperFine.zip",
+ "folderName": "SuperFine",
+ "version": "v1.0.5",
+ "automatic-version-check": true
+}
diff --git a/mods/ENNWAY@SuperFine/thumbnail.jpg b/mods/ENNWAY@SuperFine/thumbnail.jpg
new file mode 100644
index 00000000..6081920b
Binary files /dev/null and b/mods/ENNWAY@SuperFine/thumbnail.jpg differ
diff --git a/mods/EasternFarmer@EasternFarmers_corner/description.md b/mods/EasternFarmer@EasternFarmers_corner/description.md
new file mode 100644
index 00000000..ab461bd0
--- /dev/null
+++ b/mods/EasternFarmer@EasternFarmers_corner/description.md
@@ -0,0 +1,3 @@
+# EasternFarmer's corner
+The mod i've been making for the past couple of weeks.
+Enjoy.
\ No newline at end of file
diff --git a/mods/EasternFarmer@EasternFarmers_corner/meta.json b/mods/EasternFarmer@EasternFarmers_corner/meta.json
new file mode 100644
index 00000000..8f28a8de
--- /dev/null
+++ b/mods/EasternFarmer@EasternFarmers_corner/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "EasternFarmer's corner",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content", "Joker"],
+ "author": "EasternFarmer",
+ "repo": "https://github.com/EasternFarmer/EasternFarmers_corner",
+ "downloadURL": "https://github.com/EasternFarmer/EasternFarmers_corner/releases/latest/download/EasternFarmers_corner.zip",
+ "folderName": "EasternFarmers_corner",
+ "version": "v1.0.2",
+ "automatic-version-check": true
+}
diff --git a/mods/EasternFarmer@EasternFarmers_corner/thumbnail.jpg b/mods/EasternFarmer@EasternFarmers_corner/thumbnail.jpg
new file mode 100644
index 00000000..c914a06d
Binary files /dev/null and b/mods/EasternFarmer@EasternFarmers_corner/thumbnail.jpg differ
diff --git a/mods/Eramdam@StickyFingers/meta.json b/mods/Eramdam@StickyFingers/meta.json
index 6e5ea831..65075688 100644
--- a/mods/Eramdam@StickyFingers/meta.json
+++ b/mods/Eramdam@StickyFingers/meta.json
@@ -2,10 +2,13 @@
"title": "Sticky Fingers",
"requires-steamodded": true,
"requires-talisman": false,
- "categories": ["Quality of Life"],
+ "categories": [
+ "Quality of Life"
+ ],
"author": "Eramdam",
"repo": "https://github.com/eramdam/sticky-fingers/",
"downloadURL": "https://github.com/eramdam/sticky-fingers/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "5664de4"
+ "version": "4a73d33",
+ "last-updated": 1758435804
}
diff --git a/mods/Eremel@Galdur/meta.json b/mods/Eremel@Galdur/meta.json
index 2bd73c34..1ef3f0cc 100644
--- a/mods/Eremel@Galdur/meta.json
+++ b/mods/Eremel@Galdur/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/Eremel/Galdur",
"downloadURL": "https://github.com/Eremel/Galdur/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "747c5ce"
+ "version": "c0b9ad3"
}
diff --git a/mods/Eremel@Ortalab/description.md b/mods/Eremel@Ortalab/description.md
new file mode 100644
index 00000000..29d49d08
--- /dev/null
+++ b/mods/Eremel@Ortalab/description.md
@@ -0,0 +1,9 @@
+It's Balatro as you know it, but backwards, and sideways, as if the game was designed in an alternate universe.
+Simply put, it's Balatro, backwards!
+And thus, Ortalab!
+
+With 150 new jokers, 20 new challenges, 8 new stakes, more than 50 new consumables, and way, WAY, more, Ortalab is practically a sequel to Balatro.
+
+Get ready to find new strategies, blow the game out of the water, and maybe no die to The Plant for once.
+
+Have fun!
\ No newline at end of file
diff --git a/mods/Eremel@Ortalab/meta.json b/mods/Eremel@Ortalab/meta.json
new file mode 100644
index 00000000..38d4446c
--- /dev/null
+++ b/mods/Eremel@Ortalab/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Ortalab",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content"],
+ "author": "Ortalab Team",
+ "repo": "https://github.com/EremelMods/Ortalab/",
+ "downloadURL": "https://github.com/EremelMods/Ortalab/releases/latest/download/Ortalab-main.zip",
+ "folderName": "Ortalab",
+ "version": "1.0.1",
+ "automatic-version-check": true
+}
\ No newline at end of file
diff --git a/mods/Eremel@Ortalab/thumbnail.jpg b/mods/Eremel@Ortalab/thumbnail.jpg
new file mode 100644
index 00000000..e22e2e2c
Binary files /dev/null and b/mods/Eremel@Ortalab/thumbnail.jpg differ
diff --git a/mods/EricTheToon@Fortlatro/meta.json b/mods/EricTheToon@Fortlatro/meta.json
index e40af415..ee529d4d 100644
--- a/mods/EricTheToon@Fortlatro/meta.json
+++ b/mods/EricTheToon@Fortlatro/meta.json
@@ -11,5 +11,6 @@
"repo": "https://github.com/EricTheToon/Fortlatro",
"downloadURL": "https://github.com/EricTheToon/Fortlatro/releases/latest/download/Fortlatro.zip",
"automatic-version-check": true,
- "version": "1.1.6"
+ "version": "1.2.0",
+ "last-updated": 1762000347
}
diff --git a/mods/Fantom@Fantom'sPreview/meta.json b/mods/Fantom@Fantom'sPreview/meta.json
index c7210ab0..3f1c0e5f 100644
--- a/mods/Fantom@Fantom'sPreview/meta.json
+++ b/mods/Fantom@Fantom'sPreview/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/Fantom-Balatro/Fantoms-Preview",
"downloadURL": "https://github.com/Fantom-Balatro/Fantoms-Preview/releases/latest/download/Fantoms-Preview.zip",
"folderName": "Fantoms-Preview",
- "version": "v2.3.0",
+ "version": "v2.4.1",
"automatic-version-check": true
}
diff --git a/mods/Finnaware@Finn'sPokécards/description.md b/mods/Finnaware@Finn'sPokécards/description.md
new file mode 100644
index 00000000..dce42767
--- /dev/null
+++ b/mods/Finnaware@Finn'sPokécards/description.md
@@ -0,0 +1,2 @@
+# Finn's Pokécards
+Adds many pokémon themed cards!
diff --git a/mods/Finnaware@Finn'sPokécards/meta.json b/mods/Finnaware@Finn'sPokécards/meta.json
new file mode 100644
index 00000000..29500403
--- /dev/null
+++ b/mods/Finnaware@Finn'sPokécards/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Finn's Pokécards",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "Finnaware",
+ "repo": "https://github.com/Finnaware/Finn-Pokecards",
+ "downloadURL": "https://github.com/Finnaware/Finn-Pokecards/archive/refs/heads/main.zip",
+ "folderName": "Finn's Pokécards",
+ "version": "b0bb7b2",
+ "automatic-version-check": true
+}
diff --git a/mods/Finnaware@Finn'sPokécards/thumbnail.jpg b/mods/Finnaware@Finn'sPokécards/thumbnail.jpg
new file mode 100644
index 00000000..29fbcc1e
Binary files /dev/null and b/mods/Finnaware@Finn'sPokécards/thumbnail.jpg differ
diff --git a/mods/Finnaware@Finn'sPokélatro/meta.json b/mods/Finnaware@Finn'sPokélatro/meta.json
index 23c23312..87dbd79e 100644
--- a/mods/Finnaware@Finn'sPokélatro/meta.json
+++ b/mods/Finnaware@Finn'sPokélatro/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/Finnaware/Finn-Pokelatro",
"downloadURL": "https://github.com/Finnaware/Finn-Pokelatro/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "0e56da3"
+ "version": "edd7cc0"
}
diff --git a/mods/Finnaware@Finn'sPokélatro/thumbnail.jpg b/mods/Finnaware@Finn'sPokélatro/thumbnail.jpg
new file mode 100644
index 00000000..6c2f3dea
Binary files /dev/null and b/mods/Finnaware@Finn'sPokélatro/thumbnail.jpg differ
diff --git a/mods/Finnaware@Kyu-latro!/description.md b/mods/Finnaware@Kyu-latro!/description.md
new file mode 100644
index 00000000..5bb2274e
--- /dev/null
+++ b/mods/Finnaware@Kyu-latro!/description.md
@@ -0,0 +1,4 @@
+# Kyu-latro!
+A texture pack that retextures the game to be Feenekin line related
+
+Requires **Malverk**
\ No newline at end of file
diff --git a/mods/Finnaware@Kyu-latro!/meta.json b/mods/Finnaware@Kyu-latro!/meta.json
new file mode 100644
index 00000000..78e3d774
--- /dev/null
+++ b/mods/Finnaware@Kyu-latro!/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Kyu-latro!",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "Finnaware",
+ "repo": "https://github.com/Finnaware/Kyu-latro",
+ "downloadURL": "https://github.com/Finnaware/Kyu-latro/archive/refs/heads/main.zip",
+ "folderName": "Kyu-latro!",
+ "version": "1de9936",
+ "automatic-version-check": true,
+ "last-updated": 1762384583
+}
diff --git a/mods/Finnaware@Kyu-latro!/thumbnail.jpg b/mods/Finnaware@Kyu-latro!/thumbnail.jpg
new file mode 100644
index 00000000..ecd5dbb3
Binary files /dev/null and b/mods/Finnaware@Kyu-latro!/thumbnail.jpg differ
diff --git a/mods/Firch@Bunco/meta.json b/mods/Firch@Bunco/meta.json
index de8301f4..7bde8e87 100644
--- a/mods/Firch@Bunco/meta.json
+++ b/mods/Firch@Bunco/meta.json
@@ -9,8 +9,9 @@
],
"author": "Firch",
"repo": "https://github.com/jumbocarrot0/Bunco",
- "downloadURL": "https://github.com/jumbocarrot0/Bunco/releases/download/5.2-JumboFork/Bunco.5.2.JumboFork.zip",
+ "downloadURL": "https://github.com/jumbocarrot0/Bunco/archive/refs/tags/v5.4.7a-JumboFork.zip",
"folderName": "Bunco",
- "version": "5.1",
- "automatic-version-check": false
+ "version": "v5.4.7a-JumboFork",
+ "automatic-version-check": true,
+ "last-updated": 1757132345
}
diff --git a/mods/Franciscoarr@Espalatro/description.md b/mods/Franciscoarr@Espalatro/description.md
new file mode 100644
index 00000000..fff6f8d8
--- /dev/null
+++ b/mods/Franciscoarr@Espalatro/description.md
@@ -0,0 +1,17 @@
+# Espalatro
+Un mod de Balatro sobre España creado por:
+- Franciscoarr (X: @PepsiPaco, IG: frxn_arrieta), encargado de la programación.
+- Pelusa (X: @P__Lusa, IG: p__lusa), encargado del arte.
+
+# Créditos
+Queremos dar las gracias tanto al creador del mod BBBalatro que nos sirvió como plantilla para hacer este mod, como a Yahiamice que nos ayudo en algunas dudas que teniamos.
+
+# Reportar errores
+Si encuentras un error, puedes reportarlo directamente abriendo un [Issue en GitHub](https://github.com/Franciscoarr/Espalatro/issues), describe qué ocurrió y cómo reproducirlo si es posible.
+
+# Requisitos
+Se debe tener [Steamodded](https://github.com/Steamodded/smods/wiki) para poder usar Espalatro, extrayendo el .zip en %AppData%\Roaming\Balatro\Mods
+
+¡Gracias por descargar nuestro mod!
+
+
diff --git a/mods/Franciscoarr@Espalatro/meta.json b/mods/Franciscoarr@Espalatro/meta.json
new file mode 100644
index 00000000..00f76524
--- /dev/null
+++ b/mods/Franciscoarr@Espalatro/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Espalatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Joker"
+ ],
+ "author": "Franciscoarr",
+ "repo": "https://github.com/Franciscoarr/Espalatro",
+ "downloadURL": "https://github.com/Franciscoarr/Espalatro/archive/refs/heads/main.zip",
+ "folderName": "Espalatro",
+ "version": "f02168e",
+ "automatic-version-check": true
+}
diff --git a/mods/Franciscoarr@Espalatro/thumbnail.jpg b/mods/Franciscoarr@Espalatro/thumbnail.jpg
new file mode 100644
index 00000000..4c17cee5
Binary files /dev/null and b/mods/Franciscoarr@Espalatro/thumbnail.jpg differ
diff --git a/mods/Fridge@Horizon/meta.json b/mods/Fridge@Horizon/meta.json
index df7edcfd..4e5f3c37 100644
--- a/mods/Fridge@Horizon/meta.json
+++ b/mods/Fridge@Horizon/meta.json
@@ -1,13 +1,14 @@
{
"title": "Horizon Mod",
"requires-steamodded": true,
- "requires-talisman": false,
+ "requires-talisman": true,
"categories": [
- "Joker"
+ "Content"
],
"author": "Microwave",
"repo": "https://github.com/ItsaMicrowave/Horizon-Mod",
- "downloadURL": "https://github.com/ItsaMicrowave/Horizon-Mod/archive/refs/tags/v1.zip",
+ "downloadURL": "https://github.com/ItsaMicrowave/Horizon-Mod/archive/refs/tags/v2.zip",
"automatic-version-check": true,
- "version": "v1"
+ "version": "v2",
+ "last-updated": 1762017176
}
diff --git a/mods/Garb@GARBSHIT/meta.json b/mods/Garb@GARBSHIT/meta.json
index acae61a0..88bd13e3 100644
--- a/mods/Garb@GARBSHIT/meta.json
+++ b/mods/Garb@GARBSHIT/meta.json
@@ -10,5 +10,6 @@
"downloadURL": "https://github.com/Gainumki/GARBSHIT/archive/refs/heads/main.zip",
"folderName": "GARBSHIT",
"automatic-version-check": true,
- "version": "c5c9013"
+ "version": "a22ac30",
+ "last-updated": 1762463763
}
diff --git a/mods/Gfsgfs@Punchline/description.md b/mods/Gfsgfs@Punchline/description.md
new file mode 100644
index 00000000..8de29bb8
--- /dev/null
+++ b/mods/Gfsgfs@Punchline/description.md
@@ -0,0 +1,23 @@
+##Welcome to the Puncline mod !!
+This mod contains 38 jokers and many more on the way (note that "many more on the way" won't be a feature avaible in the future).
+This mod also contains brand new consumables with mystical powers sure to make you outsmart your foes and blablabla its a Balatro mod its not that deep just enjoy.
+
+##Why should you play this mod ?
+Its cool and awsome, actually let me ask YOU a question why should you play anything you can just stay at home in your bed, rotting away and letting the years go by, making no memories no friends and only being remembered in passing by people that could have cared about you.
+
+##What?
+Sorry i just dont know how to make a good description because i added jokers and new consumables like that's it.
+
+##You know what i'll play your mod ok ?
+Thanks.
+
+
+
+
+
+
+
+
+
+
+Also update coming soon
\ No newline at end of file
diff --git a/mods/Gfsgfs@Punchline/meta.json b/mods/Gfsgfs@Punchline/meta.json
new file mode 100644
index 00000000..3af00d0c
--- /dev/null
+++ b/mods/Gfsgfs@Punchline/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Punchline",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "Gfsgfs and EricTheToon",
+ "repo": "https://github.com/gfsgfsPunchlineGuy/Punchline",
+ "downloadURL": "https://github.com/gfsgfsPunchlineGuy/Punchline/archive/refs/heads/main.zip",
+ "folderName": "Punchline",
+ "version": "a963a99",
+ "automatic-version-check": true,
+ "last-updated": 1756700799
+}
diff --git a/mods/Gfsgfs@Punchline/thumbnail.jpg b/mods/Gfsgfs@Punchline/thumbnail.jpg
new file mode 100644
index 00000000..a245d913
Binary files /dev/null and b/mods/Gfsgfs@Punchline/thumbnail.jpg differ
diff --git a/mods/GhostSalt@BFDI/description.md b/mods/GhostSalt@BFDI/description.md
new file mode 100644
index 00000000..9d3a309d
--- /dev/null
+++ b/mods/GhostSalt@BFDI/description.md
@@ -0,0 +1,4 @@
+# BFDI
+
+A mod pack with a bunch of BFDI-related Jokers! (BFDI was created by Cary Huang and Michael Huang.)
+https://balatromods.miraheze.org/wiki/BFDI
\ No newline at end of file
diff --git a/mods/GhostSalt@BFDI/meta.json b/mods/GhostSalt@BFDI/meta.json
new file mode 100644
index 00000000..c69e56d8
--- /dev/null
+++ b/mods/GhostSalt@BFDI/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "BFDI",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "GhostSalt",
+ "repo": "https://github.com/GhostSalt/BFDI",
+ "downloadURL": "https://github.com/GhostSalt/BFDI/archive/refs/heads/main.zip",
+ "folderName": "BFDI",
+ "version": "7601144",
+ "automatic-version-check": true,
+ "last-updated": 1762165241
+}
diff --git a/mods/GhostSalt@Catan/description.md b/mods/GhostSalt@Catan/description.md
new file mode 100644
index 00000000..2bfb1c04
--- /dev/null
+++ b/mods/GhostSalt@Catan/description.md
@@ -0,0 +1,4 @@
+# Catan
+
+Adds Resource cards that can be used to build other consumables! Mechanics are inspired by the board game Catan. This mod used to be a mechanic present in Phanta, but it got large enough to be its own thing.
+https://balatromods.miraheze.org/wiki/Catan
\ No newline at end of file
diff --git a/mods/GhostSalt@Catan/meta.json b/mods/GhostSalt@Catan/meta.json
new file mode 100644
index 00000000..eff2a9bb
--- /dev/null
+++ b/mods/GhostSalt@Catan/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Catan",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "GhostSalt",
+ "repo": "https://github.com/GhostSalt/Catan",
+ "downloadURL": "https://github.com/GhostSalt/Catan/archive/refs/heads/master.zip",
+ "folderName": "Catan",
+ "version": "d097947",
+ "automatic-version-check": true,
+ "last-updated": 1757970882
+}
diff --git a/mods/GhostSalt@Phanta/description.md b/mods/GhostSalt@Phanta/description.md
new file mode 100644
index 00000000..0cd01c94
--- /dev/null
+++ b/mods/GhostSalt@Phanta/description.md
@@ -0,0 +1,4 @@
+# Phanta
+
+A mod pack, containing lots of miscellaneous Jokers, and some decks, enhancements and more! I've tried to keep this pack balanced, so no Cryptidesque shenanigans.
+https://balatromods.miraheze.org/wiki/Phanta
\ No newline at end of file
diff --git a/mods/GhostSalt@Phanta/meta.json b/mods/GhostSalt@Phanta/meta.json
new file mode 100644
index 00000000..c2edfd21
--- /dev/null
+++ b/mods/GhostSalt@Phanta/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Phanta",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "GhostSalt",
+ "repo": "https://github.com/GhostSalt/Phanta",
+ "downloadURL": "https://github.com/GhostSalt/Phanta/archive/refs/heads/main.zip",
+ "folderName": "Phanta",
+ "version": "310a8aa",
+ "automatic-version-check": true,
+ "last-updated": 1762532309
+}
diff --git a/mods/GhostSalt@Phanta/thumbnail.png b/mods/GhostSalt@Phanta/thumbnail.png
new file mode 100644
index 00000000..ab9881bc
Binary files /dev/null and b/mods/GhostSalt@Phanta/thumbnail.png differ
diff --git a/mods/GitNether@Paperback/meta.json b/mods/GitNether@Paperback/meta.json
index c21d944d..0a50ce68 100644
--- a/mods/GitNether@Paperback/meta.json
+++ b/mods/GitNether@Paperback/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/GitNether/paperback",
"downloadURL": "https://github.com/GitNether/paperback/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "07539b3"
+ "version": "9ff4c65",
+ "last-updated": 1758774031
}
diff --git a/mods/Glitchkat10@Cryptposting/meta.json b/mods/Glitchkat10@Cryptposting/meta.json
index f668b29f..a1c2f184 100644
--- a/mods/Glitchkat10@Cryptposting/meta.json
+++ b/mods/Glitchkat10@Cryptposting/meta.json
@@ -10,6 +10,7 @@
"repo": "https://github.com/kierkat10/Cryptposting",
"downloadURL": "https://github.com/kierkat10/Cryptposting/archive/refs/heads/main.zip",
"folderName": "Cryptposting",
- "version": "e4ec8bf",
- "automatic-version-check": true
+ "version": "2a4fea8",
+ "automatic-version-check": true,
+ "last-updated": 1762712543
}
diff --git a/mods/GoonsTowerDefense@Goonlatro/description.md b/mods/GoonsTowerDefense@Goonlatro/description.md
new file mode 100644
index 00000000..21a6cd42
--- /dev/null
+++ b/mods/GoonsTowerDefense@Goonlatro/description.md
@@ -0,0 +1,39 @@
+# Goonlatro - The GTD Balatro Mod
+
+
+
+A mod and texture pack for Balatro that adds various Jokers and Consumables to the game based on GTD Discord references.
+
+Don't expect this to be good cause it's not.
+
+We hope you have fun playing it, we know we did.
+
+Requires [Malverk](https://github.com/Eremel/Malverk), [Steamodded](https://github.com/Steamodded/smods), and [Lovely](https://github.com/ethangreen-dev/lovely-injector)
+
+## Installation
+Get the latest release from [here](https://github.com/GoonsTowerDefense/goonlatro/releases), unzip the file and place it in your Balatro/Mods folder.
+
+Make sure you have all of the requirements installed.
+
+Finally, start Balatro and have fun!
+
+## Additions
+
+### Jokers
+**Crazy Eights** Joker: (based on the LTLVC5/Grunk bit) X8 Mult, gains X8 Mult on round end.
+
+**Playstyle** Joker: (Inside Joke) Flips all **face-down** cards to be **face-up**.
+
+**Click the Bart** Joker: WIP
+
+### Consumables
+**A Big Bag** Spectral Card: With one **cookie** in it.
+
+**Just the Bag** Spectral Card: Gives back **all hands** played.
+
+**Cookie** Spectral Card: Gives back **all discards** used.
+
+### Decks
+**Take my Playstyle** Deck: Starts with all GTD Cards.
+
+**Crazy!** Deck: Starts with 8 **Crazy Eights**.
diff --git a/mods/GoonsTowerDefense@Goonlatro/meta.json b/mods/GoonsTowerDefense@Goonlatro/meta.json
new file mode 100644
index 00000000..c714dfa3
--- /dev/null
+++ b/mods/GoonsTowerDefense@Goonlatro/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Goonlatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Resource Packs"
+ ],
+ "author": "Goons Tower Defense",
+ "repo": "https://github.com/GoonsTowerDefense/Goonlatro",
+ "downloadURL": "https://github.com/GoonsTowerDefense/Goonlatro/archive/refs/heads/main.zip",
+ "folderName": "Goonlatro",
+ "version": "9e4ecf9",
+ "automatic-version-check": true
+}
diff --git a/mods/GoonsTowerDefense@Goonlatro/thumbnail.jpg b/mods/GoonsTowerDefense@Goonlatro/thumbnail.jpg
new file mode 100644
index 00000000..67091c1d
Binary files /dev/null and b/mods/GoonsTowerDefense@Goonlatro/thumbnail.jpg differ
diff --git a/mods/GreenKookie@Sholatro/description.md b/mods/GreenKookie@Sholatro/description.md
new file mode 100644
index 00000000..2351839d
--- /dev/null
+++ b/mods/GreenKookie@Sholatro/description.md
@@ -0,0 +1,17 @@
+# Welcome to Sholatro!
+
+an EXTREMELY unbalanced and stupid mod made by GreenKookie
+requires [Steamodded](https://github.com/Steamodded/smods/releases/latest) and [Talisman](https://github.com/SpectralPack/Talisman/releases/latest)
+
+# What is this mod about?
+
+this is a btd6 mod about everything I found funny/interesting and decided to add into the game, which includes:
+
+* extremely unbalanced ideas
+* inside jokes that are not really funny
+* towers in btd6 old versions that absolutely peaked/sucked during the period
+
+
+
+Also check out [Bloonalatro](https://github.com/Amphiapple/Bloonlatro) for vanilla+ playstyle and [Sholium](https://github.com/GreenKookie56/Sholium) for less inside jokes and more interesting gameplay/content!
+
diff --git a/mods/GreenKookie@Sholatro/meta.json b/mods/GreenKookie@Sholatro/meta.json
new file mode 100644
index 00000000..9af15947
--- /dev/null
+++ b/mods/GreenKookie@Sholatro/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Sholatro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "GreenKookie",
+ "repo": "https://github.com/GreenKookie56/Sholatro",
+ "downloadURL": "https://github.com/GreenKookie56/Sholatro/archive/refs/tags/1.2.4b.zip",
+ "folderName": "Sholatro",
+ "version": "1.2.4b",
+ "automatic-version-check": true,
+ "last-updated": 1758544565
+}
diff --git a/mods/GreenKookie@Sholium/description.md b/mods/GreenKookie@Sholium/description.md
new file mode 100644
index 00000000..b9cc3d2b
--- /dev/null
+++ b/mods/GreenKookie@Sholium/description.md
@@ -0,0 +1,20 @@
+# Welcome to Sholium!
+
+an unbalanced mod made by GreenKookie
+requires [Steamodded](https://github.com/Steamodded/smods/releases/latest), [Talisman](https://github.com/SpectralPack/Talisman/releases/latest) is recommended
+
+# What is this mod about?
+this is a btd6/plague inc related mod about everything I found funny/interesting and decided to add into the game, which includes:
+- unbalanced ideas
+- inside jokes that are not really funny
+- arts that I drew (Some were made just to be funny, some were just me having nothing to do and deciding to waste 2 hours on a 69x91)
+- towers in btd6 old versions that absolutely peaked/sucked during the period
+- plagues that demonstrate their playstyle in the plague inc game
+- seal jokers that reduce hand size by 1 and have the effect of the original seals
+
+# I prefer vanilla balance but i still want to see bloons content...
+Check out [Bloonalatro](https://github.com/Amphiapple/Bloonlatro) for vanilla+ playstyle
+
+# Special thanks!
+- 1.2m^2 Fungus Room, iciclez_, i_am_mee and murpgod for playtesting & contributing ideas
+- jokerforge community and the goat jaydchw, for making the revolutionary balatro mod maker
diff --git a/mods/GreenKookie@Sholium/meta.json b/mods/GreenKookie@Sholium/meta.json
new file mode 100644
index 00000000..f9df01ee
--- /dev/null
+++ b/mods/GreenKookie@Sholium/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Sholium",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "GreenKookie",
+ "repo": "https://github.com/GreenKookie56/Sholium",
+ "downloadURL": "https://github.com/GreenKookie56/Sholium/archive/refs/tags/2.4.8b.zip",
+ "folderName": "Sholium",
+ "version": "2.4.8b",
+ "automatic-version-check": true
+}
diff --git a/mods/GreenKookie@Sholium/thumbnail.jpg b/mods/GreenKookie@Sholium/thumbnail.jpg
new file mode 100644
index 00000000..2596da03
Binary files /dev/null and b/mods/GreenKookie@Sholium/thumbnail.jpg differ
diff --git a/mods/GunnableScum@Visibility/meta.json b/mods/GunnableScum@Visibility/meta.json
index 5cca3917..572df57c 100644
--- a/mods/GunnableScum@Visibility/meta.json
+++ b/mods/GunnableScum@Visibility/meta.json
@@ -11,5 +11,5 @@
"repo": "https://github.com/GunnableScum/Visibility",
"downloadURL": "https://github.com/GunnableScum/Visibility/releases/latest/download/Visibility.zip",
"automatic-version-check": true,
- "version": "demo"
+ "version": "v1.0.2"
}
diff --git a/mods/Hailfire805@2For1Tarrots/description.md b/mods/Hailfire805@2For1Tarrots/description.md
new file mode 100644
index 00000000..a22349ea
--- /dev/null
+++ b/mods/Hailfire805@2For1Tarrots/description.md
@@ -0,0 +1,5 @@
+# 2 For 1 Tarots
+
+Allows Tarot Cards that normally enhance only 1 card to instead enhance 2 cards.
+
+This way you can scale your deck towards your desired win condition faster and it makes it more appealing to consider using some of the less inticing Tarots!
diff --git a/mods/Hailfire805@2For1Tarrots/meta.json b/mods/Hailfire805@2For1Tarrots/meta.json
new file mode 100644
index 00000000..35229c00
--- /dev/null
+++ b/mods/Hailfire805@2For1Tarrots/meta.json
@@ -0,0 +1,10 @@
+{
+ "title": "2 For 1 Tarots",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Quality of Life", "Miscellaneous"],
+ "author": "Hailfire805",
+ "repo": "https://github.com/Hailfire805/2-for-1-Tarots",
+ "downloadURL": "https://github.com/Hailfire805/2-for-1-Tarots/archive/refs/tags/V1.0.0.zip",
+ "version": "1.0.0"
+}
diff --git a/mods/Hailfire805@2For1Tarrots/thumbnail.jpg b/mods/Hailfire805@2For1Tarrots/thumbnail.jpg
new file mode 100644
index 00000000..b33e982b
Binary files /dev/null and b/mods/Hailfire805@2For1Tarrots/thumbnail.jpg differ
diff --git a/mods/Horizon7006@Dumbtro/description.md b/mods/Horizon7006@Dumbtro/description.md
new file mode 100644
index 00000000..b0034178
--- /dev/null
+++ b/mods/Horizon7006@Dumbtro/description.md
@@ -0,0 +1,10 @@
+# Dumbtro
+
+(REQUIRES TALISMAN) Dumbtro is a Balatro mod that adds umm, shitpost jokers! There isnt much things here, but more things will be added!
+
+# Why?
+
+Because yes. Why not?
+
+# HOW TO DOWNLOAD?????
+big obivious green button. enjoy.
\ No newline at end of file
diff --git a/mods/Horizon7006@Dumbtro/meta.json b/mods/Horizon7006@Dumbtro/meta.json
new file mode 100644
index 00000000..2acd7517
--- /dev/null
+++ b/mods/Horizon7006@Dumbtro/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Dumbtro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Joker",
+ "Content"
+ ],
+ "author": "Horizon7006",
+ "repo": "https://github.com/horizon7006/Dumbtro",
+ "downloadURL": "https://github.com/horizon7006/Dumbtro/releases/latest/download/Dumbtro.zip",
+ "folderName": "Dumbtro",
+ "version": "1.1",
+ "automatic-version-check": true,
+ "last-updated": 1758481929
+}
diff --git a/mods/Horizon7006@Dumbtro/thumbnail.jpg b/mods/Horizon7006@Dumbtro/thumbnail.jpg
new file mode 100644
index 00000000..fdf5382f
Binary files /dev/null and b/mods/Horizon7006@Dumbtro/thumbnail.jpg differ
diff --git a/mods/Hoversquid@Condensed_UI/meta.json b/mods/Hoversquid@Condensed_UI/meta.json
index dbedaa50..93b91b1b 100644
--- a/mods/Hoversquid@Condensed_UI/meta.json
+++ b/mods/Hoversquid@Condensed_UI/meta.json
@@ -9,5 +9,6 @@
],
"repo": "https://github.com/Hoversquid/Condensed_UI",
"downloadURL": "https://github.com/Hoversquid/Condensed_UI/archive/refs/tags/v1.2-alpha.zip",
- "version": "v1.2-alpha"
+ "version": "v1.2-alpha",
+ "last-updated": 1759757258
}
diff --git a/mods/HuyTheKiller@LocFixer/meta.json b/mods/HuyTheKiller@LocFixer/meta.json
index 4a2f30f6..3a0b5386 100644
--- a/mods/HuyTheKiller@LocFixer/meta.json
+++ b/mods/HuyTheKiller@LocFixer/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/HuyTheKiller/LocFixer",
"downloadURL": "https://github.com/HuyTheKiller/LocFixer/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "92e99a1"
+ "version": "9eb27f1"
}
diff --git a/mods/HuyTheKiller@SauKhongHuDecks/meta.json b/mods/HuyTheKiller@SauKhongHuDecks/meta.json
index e4e9a1f4..4b688e2e 100644
--- a/mods/HuyTheKiller@SauKhongHuDecks/meta.json
+++ b/mods/HuyTheKiller@SauKhongHuDecks/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/HuyTheKiller/SauKhongHuDecks",
"downloadURL": "https://github.com/HuyTheKiller/SauKhongHuDecks/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "0d57043"
+ "version": "5d7fc48"
}
diff --git a/mods/HuyTheKiller@VietnameseBalatro/meta.json b/mods/HuyTheKiller@VietnameseBalatro/meta.json
index d0cf0698..9be371a1 100644
--- a/mods/HuyTheKiller@VietnameseBalatro/meta.json
+++ b/mods/HuyTheKiller@VietnameseBalatro/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/HuyTheKiller/VietnameseBalatro",
"downloadURL": "https://github.com/HuyTheKiller/VietnameseBalatro/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "e5ebb5c"
+ "version": "795f114",
+ "last-updated": 1758525469
}
diff --git a/mods/IcyEthics@BalatroGoesKino/meta.json b/mods/IcyEthics@BalatroGoesKino/meta.json
index ddd0f2b3..8a4fdf0d 100644
--- a/mods/IcyEthics@BalatroGoesKino/meta.json
+++ b/mods/IcyEthics@BalatroGoesKino/meta.json
@@ -9,6 +9,7 @@
"repo": "https://github.com/icyethics/Kino",
"downloadURL": "https://github.com/icyethics/Kino/archive/refs/heads/main.zip",
"folderName": "Kino",
- "version": "db617a2",
- "automatic-version-check": true
+ "version": "094d3a0",
+ "automatic-version-check": true,
+ "last-updated": 1761769199
}
diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json
index 0adfcc30..93497b32 100644
--- a/mods/InertSteak@Pokermon/meta.json
+++ b/mods/InertSteak@Pokermon/meta.json
@@ -11,5 +11,6 @@
"repo": "https://github.com/InertSteak/Pokermon",
"downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "3e323b8"
+ "version": "da92b4b",
+ "last-updated": 1762719459
}
diff --git a/mods/Itayfeder@FusionJokers/meta.json b/mods/Itayfeder@FusionJokers/meta.json
index e61ca65b..94fae9fd 100644
--- a/mods/Itayfeder@FusionJokers/meta.json
+++ b/mods/Itayfeder@FusionJokers/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/wingedcatgirl/Fusion-Jokers",
"downloadURL": "https://github.com/wingedcatgirl/Fusion-Jokers/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "00674b4"
+ "version": "bd75e4c",
+ "last-updated": 1756954425
}
diff --git a/mods/ItsGraphax@RedditBonanza/description.md b/mods/ItsGraphax@RedditBonanza/description.md
new file mode 100644
index 00000000..19c4c47b
--- /dev/null
+++ b/mods/ItsGraphax@RedditBonanza/description.md
@@ -0,0 +1,94 @@
+[Discord Server](https://discord.gg/yKfuuu9vBg)
+
+# Reddit Bonanza
+Reddit Bonanza is a Balatro Mod that adds Jokers suggested by users on Reddit!
+At the moment there are 50 Jokers in the Mod, so you should try giving it a shot!
+
+NOTE: This Mod is still in early development stages so expect Bugs and Imbalances.
+Feel Free to open an Issue when you find a Problem!
+
+## Jokers
+### Common
+- Abstinent Joker by [submiss1vefemb0y](https://reddit.com/u/submiss1vefemb0y)
+- Album Cover by [Omicra98](https://reddit.com/u/Omicra98)
+- CashBack by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Charitable Joker by [submiss1vefemb0y](https://reddit.com/u/submiss1vefemb0y)
+- Chaste Joker by [submiss1vefemb0y](https://reddit.com/u/submiss1vefemb0y)
+- Engagement Ring by [LittlePetiteGirl](https://reddit.com/u/LittlePetiteGirl)
+- Feelin' by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Hollow Point by [Omicra98](https://reddit.com/u/Omicra98)
+- Kind Joker by [submiss1vefemb0y](https://reddit.com/u/submiss1vefemb0y)
+- Marvin by [BrilliantClerk](https://reddit.com/u/BrilliantClerk)
+- Medusa by [PerfectAstronaut5998](https://reddit.com/u/PerfectAstronaut5998)
+- Phoenix by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Plumber by [Kid4U_Reddit](https://reddit.com/u/Kid4U_Reddit)
+- Slothful Joker by [NeoShard1](https://reddit.com/u/NeoShard1)
+### Uncommon
+- All In by [Kyuuseishu_](https://reddit.com/u/Kyuuseishu_)
+- Artist by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Bingo! by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Chocolate Treadmill by [jah2277](https://reddit.com/u/jah2277)
+- Contagious Laughter by [Unlikely_Movie_9073](https://reddit.com/u/Unlikely_Movie_9073)
+- Crimson Dawn by [Omicra98](https://reddit.com/u/Omicra98)
+- Diamond Pickaxe by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Double Glazing by [NeoShard1](https://reddit.com/u/NeoShard1)
+- Glass House by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Jimbo\ by [aTOMic_Games](https://reddit.com/u/aTOMic_Games)
+- Laundromat by [PokeAreddit](https://reddit.com/u/PokeAreddit)
+- Match 3 by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Metronome by [Jkjsupremo](https://reddit.com/u/Jkjsupremo)
+- Pier by [Omicra98](https://reddit.com/u/Omicra98)
+- Rainbow Joker by [NeoShard1](https://reddit.com/u/NeoShard1)
+- Sinister Joker by [knockoutn336](https://reddit.com/u/knockoutn336)
+- Sphinx of Black Quartz by [Omicra98](https://reddit.com/u/Omicra98)
+- Superstition by [Omicra98](https://reddit.com/u/Omicra98)
+- Touchdown by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Where is the Joker? by [babisme](https://reddit.com/u/babisme)
+- Wild West by [GreedyHase](https://reddit.com/u/GreedyHase)
+### Rare
+- Ad Break by [Kid4U_Reddit](https://reddit.com/u/Kid4U_Reddit)
+- Blank Joker by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Enigma by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Entangled Joker by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Haunted House by [Ulik](https://reddit.com/u/Ulik)
+- Hi Five by [Thomassaurus](https://reddit.com/u/Thomassaurus)
+- Kleptomaniac by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Lamb by [Beasstvg](https://reddit.com/u/Beasstvg)
+- Legally Distinct by [Princemerkimer](https://reddit.com/u/Princemerkimer)
+- M.A.D. by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Pharaoh by [Omicra98](https://reddit.com/u/Omicra98)
+- Trippy Joker by [WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+- Wizard by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+
+### Legendary
+- Birbal by [TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+
+## Credits
+- Mod Author: [u/ItsGraphax](https://reddit.com/u/ItsGraphax) - [ItsGraphax](github.com/ItsGraphax)
+- Co Author: [u/Natural_Builder_3170](https://reddit.com/u/Natural_Builder_3170) - [mindoftony](https://github.com/Git-i)
+- Artist: [u/TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+- Special Thanks
+ - [u/VALERock](https://reddit.com/u/VALERock) - Thank you for the support <3
+- Jokers:
+ - [u/aTOMic_Games](https://reddit.com/u/aTOMic_Games)
+ - [u/Ulik](https://reddit.com/u/Ulik)
+ - [u/GreedyHase](https://reddit.com/u/GreedyHase)
+ - [u/Jkjsupremo](https://reddit.com/u/Jkjsupremo)
+ - [u/PerfectAstronaut5998](https://reddit.com/u/PerfectAstronaut5998)
+ - [u/NeoShard1](https://reddit.com/u/NeoShard1)
+ - [u/Kid4U_Reddit](https://reddit.com/u/Kid4U_Reddit)
+ - [u/BrilliantClerk](https://reddit.com/u/BrilliantClerk)
+ - [u/LittlePetiteGirl](https://reddit.com/u/LittlePetiteGirl)
+ - [u/WarmTranslator6633](https://reddit.com/u/WarmTranslator6633)
+ - [u/Princemerkimer](https://reddit.com/u/Princemerkimer)
+ - [u/Beasstvg](https://reddit.com/u/Beasstvg)
+ - [u/babisme](https://reddit.com/u/babisme)
+ - [u/Omicra98](https://reddit.com/u/Omicra98)
+ - [u/Kyuuseishu_](https://reddit.com/u/Kyuuseishu_)
+ - [u/jah2277](https://reddit.com/u/jah2277)
+ - [u/Unlikely_Movie_9073](https://reddit.com/u/Unlikely_Movie_9073)
+ - [u/TSAMarioYTReddit](https://reddit.com/u/TSAMarioYTReddit)
+ - [u/submiss1vefemb0y](https://reddit.com/u/submiss1vefemb0y)
+ - [u/knockoutn336](https://reddit.com/u/knockoutn336)
+ - [u/Thomassaurus](https://reddit.com/u/Thomassaurus)
+ - [u/PokeAreddit](https://reddit.com/u/PokeAreddit)
diff --git a/mods/ItsGraphax@RedditBonanza/meta.json b/mods/ItsGraphax@RedditBonanza/meta.json
new file mode 100644
index 00000000..a52acc69
--- /dev/null
+++ b/mods/ItsGraphax@RedditBonanza/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Reddit Bonanza",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "ItsGraphax, mindoftony",
+ "repo": "https://github.com/itsgraphax/reddit-bonanza",
+ "downloadURL": "https://github.com/itsgraphax/reddit-bonanza/releases/latest/download/mod.zip",
+ "folderName": "RedditBonanza",
+ "version": "v1.3.23.1",
+ "automatic-version-check": true,
+ "last-updated": 1756552340
+}
diff --git a/mods/ItsGraphax@RedditBonanza/thumbnail.jpg b/mods/ItsGraphax@RedditBonanza/thumbnail.jpg
new file mode 100644
index 00000000..742cadb5
Binary files /dev/null and b/mods/ItsGraphax@RedditBonanza/thumbnail.jpg differ
diff --git a/mods/JakeyBooBoo@!BooBooBalatro!/meta.json b/mods/JakeyBooBoo@!BooBooBalatro!/meta.json
index 95a0592b..e59c2f41 100644
--- a/mods/JakeyBooBoo@!BooBooBalatro!/meta.json
+++ b/mods/JakeyBooBoo@!BooBooBalatro!/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/Jakey2BooBoo/-BooBooBalatro-",
"downloadURL": "https://github.com/Jakey2BooBoo/-BooBooBalatro-/archive/refs/heads/main.zip",
"folderName": "!BooBooBalatro!",
- "version": "5a13f21",
+ "version": "acedd29",
"automatic-version-check": true
}
diff --git a/mods/Jammbo@Jambatro/description.md b/mods/Jammbo@Jambatro/description.md
new file mode 100644
index 00000000..a511c91b
--- /dev/null
+++ b/mods/Jammbo@Jambatro/description.md
@@ -0,0 +1 @@
+This is the Jambatro Mod! Super easy to install and super easy to understand! Its a bit silly and its a bit funny but its not a "GUUEGGHH BIG NUMBER" ahh mod, yknow?
\ No newline at end of file
diff --git a/mods/Jammbo@Jambatro/meta.json b/mods/Jammbo@Jambatro/meta.json
new file mode 100644
index 00000000..fc86bed7
--- /dev/null
+++ b/mods/Jammbo@Jambatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Jambatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Jammbo",
+ "repo": "https://github.com/the-2nd-olsberg/Jambatro/",
+ "downloadURL": "https://github.com/the-2nd-olsberg/Jambatro/archive/refs/heads/master.zip",
+ "folderName": "Jambatro",
+ "version": "1b338d8",
+ "automatic-version-check": true,
+ "last-updated": 1762432629
+}
diff --git a/mods/Jammbo@Jambatro/thumbnail.jpg b/mods/Jammbo@Jambatro/thumbnail.jpg
new file mode 100644
index 00000000..37f2b832
Binary files /dev/null and b/mods/Jammbo@Jambatro/thumbnail.jpg differ
diff --git a/mods/Jammbo@Jambatro/thumbnail.png b/mods/Jammbo@Jambatro/thumbnail.png
new file mode 100644
index 00000000..8565256c
Binary files /dev/null and b/mods/Jammbo@Jambatro/thumbnail.png differ
diff --git a/mods/Jan@GraceBalatro/description.md b/mods/Jan@GraceBalatro/description.md
new file mode 100644
index 00000000..aa45ba7e
--- /dev/null
+++ b/mods/Jan@GraceBalatro/description.md
@@ -0,0 +1,4 @@
+# GraceBalatro!
+A mod themed around the roblox game, Grace!
+Artwork made by other people is credited in their respective Joker descriptions.
+Over 20 unique Jokers, and many consumables!
\ No newline at end of file
diff --git a/mods/Jan@GraceBalatro/meta.json b/mods/Jan@GraceBalatro/meta.json
new file mode 100644
index 00000000..8a79f98d
--- /dev/null
+++ b/mods/Jan@GraceBalatro/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "GraceBalatro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Joker",
+ "Content"
+ ],
+ "author": "Jan",
+ "repo": "https://github.com/jan-balatro/GraceBalatro",
+ "downloadURL": "https://github.com/jan-balatro/GraceBalatro/archive/refs/heads/main.zip",
+ "folderName": "GraceBalatro",
+ "version": "a25bc2c",
+ "automatic-version-check": true,
+ "last-updated": 1759616045
+}
diff --git a/mods/Jan@GraceBalatro/thumbnail.jpg b/mods/Jan@GraceBalatro/thumbnail.jpg
new file mode 100644
index 00000000..1dd5623a
Binary files /dev/null and b/mods/Jan@GraceBalatro/thumbnail.jpg differ
diff --git a/mods/Jaye@JokeyPony/Thumbnail.jpg b/mods/Jaye@JokeyPony/Thumbnail.jpg
new file mode 100644
index 00000000..0fd2d4ae
Binary files /dev/null and b/mods/Jaye@JokeyPony/Thumbnail.jpg differ
diff --git a/mods/Jaye@JokeyPony/description.md b/mods/Jaye@JokeyPony/description.md
new file mode 100644
index 00000000..d9e2ce06
--- /dev/null
+++ b/mods/Jaye@JokeyPony/description.md
@@ -0,0 +1,3 @@
+A vanilla-style mod that adds several new Jokers, decks, and challenges, based on your favourite pony characters!
+
+Enjoy scoring loads of chips using the power of friendship and magic!!!
diff --git a/mods/Jaye@JokeyPony/meta.json b/mods/Jaye@JokeyPony/meta.json
new file mode 100644
index 00000000..bcd0eb04
--- /dev/null
+++ b/mods/Jaye@JokeyPony/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "JokeyPony",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content", "Joker"],
+ "author": "Jaye",
+ "repo": "https://github.com/Jayeaaaaa/JokeyPony",
+ "downloadURL": "https://github.com/Jayeaaaaa/JokeyPony/archive/refs/tags/25.9.18a.zip",
+ "folderName": "JokeyPony",
+ "version": "25.9.18a",
+ "automatic-version-check": true
+}
diff --git a/mods/Jogla@DebugPlusPlus/description.md b/mods/Jogla@DebugPlusPlus/description.md
new file mode 100644
index 00000000..a34a789f
--- /dev/null
+++ b/mods/Jogla@DebugPlusPlus/description.md
@@ -0,0 +1,3 @@
+A mod to ease some common debugging actions.
+
+Check the repository for more information.
\ No newline at end of file
diff --git a/mods/Jogla@DebugPlusPlus/meta.json b/mods/Jogla@DebugPlusPlus/meta.json
new file mode 100644
index 00000000..761e5ad1
--- /dev/null
+++ b/mods/Jogla@DebugPlusPlus/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "DebugPlusPlus",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life",
+ "Technical"
+ ],
+ "author": "Jogla",
+ "repo": "https://github.com/Joglacraft/DebugPlusPlus",
+ "downloadURL": "https://github.com/Joglacraft/DebugPlusPlus/archive/refs/tags/v1.2.0.zip",
+ "folderName": "DebugPlusPlus",
+ "version": "v1.2.0",
+ "automatic-version-check": true,
+ "last-updated": 1761401654
+}
diff --git a/mods/JosephPB09@CuriLatro/description.md b/mods/JosephPB09@CuriLatro/description.md
new file mode 100644
index 00000000..38b42c1f
--- /dev/null
+++ b/mods/JosephPB09@CuriLatro/description.md
@@ -0,0 +1,4 @@
+# CuriLatro
+This mod changes some jokers to curis created or shared in the Balatro fans Facebook group.
+
+only put this folder into the mod manager folder
diff --git a/mods/JosephPB09@CuriLatro/meta.json b/mods/JosephPB09@CuriLatro/meta.json
new file mode 100644
index 00000000..9640057e
--- /dev/null
+++ b/mods/JosephPB09@CuriLatro/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "CuriLatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "JosephPB09 and Balatro fans",
+ "repo": "https://github.com/JosephPB0909/CuriLatro",
+ "downloadURL": "https://github.com/JosephPB0909/CuriLatro/archive/refs/tags/mod.zip",
+ "folderName": "CuriLatro",
+ "version": "mod",
+ "automatic-version-check": true
+}
diff --git a/mods/JosephPB09@CuriLatro/thumbnail.jpg b/mods/JosephPB09@CuriLatro/thumbnail.jpg
new file mode 100644
index 00000000..3d9df216
Binary files /dev/null and b/mods/JosephPB09@CuriLatro/thumbnail.jpg differ
diff --git a/mods/KROOOL@Tiendita's/meta.json b/mods/KROOOL@Tiendita's/meta.json
index 13809b57..c7f304ab 100644
--- a/mods/KROOOL@Tiendita's/meta.json
+++ b/mods/KROOOL@Tiendita's/meta.json
@@ -10,6 +10,6 @@
"repo": "https://github.com/KROOOL/Tiendita-s-Jokers",
"downloadURL": "https://github.com/KROOOL/Tiendita-s-Jokers/archive/refs/heads/main.zip",
"folderName": "Tiendita's Jokers",
- "version": "8c9fe84",
+ "version": "7c01a1e",
"automatic-version-check": true
}
diff --git a/mods/Kars³p@HandsomeDevils/meta.json b/mods/Kars³p@HandsomeDevils/meta.json
index e9eb4f40..6fcc8705 100644
--- a/mods/Kars³p@HandsomeDevils/meta.json
+++ b/mods/Kars³p@HandsomeDevils/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/AlexanderAndersonAmenAmen/Handsome-Devils-Vanilla-mod-",
"downloadURL": "https://github.com/AlexanderAndersonAmenAmen/Handsome-Devils-Vanilla-mod-/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "d9039c2"
+ "version": "7d1b211",
+ "last-updated": 1762705141
}
diff --git a/mods/Kooluve@BetterMouseAndGamepad/meta.json b/mods/Kooluve@BetterMouseAndGamepad/meta.json
index 3f164203..ba7167ca 100644
--- a/mods/Kooluve@BetterMouseAndGamepad/meta.json
+++ b/mods/Kooluve@BetterMouseAndGamepad/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/Kooluve/Better-Mouse-And-Gamepad",
"downloadURL": "https://github.com/Kooluve/Better-Mouse-And-Gamepad/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "308c8e9"
+ "version": "8b98475"
}
diff --git a/mods/Larswijn@CardSleeves/meta.json b/mods/Larswijn@CardSleeves/meta.json
index 4744c403..4f85c9ec 100644
--- a/mods/Larswijn@CardSleeves/meta.json
+++ b/mods/Larswijn@CardSleeves/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/larswijn/CardSleeves",
"downloadURL": "https://github.com/larswijn/CardSleeves/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "342307d"
+ "version": "00f26d6",
+ "last-updated": 1759432408
}
diff --git a/mods/LazyTurtle33@FireBotModList/description.md b/mods/LazyTurtle33@FireBotModList/description.md
new file mode 100644
index 00000000..d9f5e114
--- /dev/null
+++ b/mods/LazyTurtle33@FireBotModList/description.md
@@ -0,0 +1,36 @@
+This is a mod that will allow a firebot command to display your active mods.
+
+# setup
+
+## balatro
+
+Make sure you have [Steamodded](https://github.com/Steamodded/smods) and [lovely](https://github.com/ethangreen-dev/lovely-injector) installed.
+Add BalatroFireBotModList to your mods folder and launch the game.
+You can test if it's working by opening a terminal and running:
+
+```
+ curl http://localhost:8080/mods
+```
+
+The output should have a "Content" area and your active mods should be there.
+If you see your mods, then you're done on the Balatro side.
+
+## FireBot
+
+First, ensure that you have Firebot set up and working.
+Next, go to commands and create a new custom command.
+Make the trigger !mods or something similar.
+Fill the description with something like "List active mods in Balatro when in game."
+Switch to advanced mode.
+Under restrictions, add a new restriction, select category/game, add it then search for Balatro.
+
+Next, add a new effect.
+Search for HTTP Request
+Set the URL to "http://localhost:8080/mods" and the method to get.
+
+(Optional) Add a run effect on error, search for Chat and add an error message.
+
+Save the changes and add a new effect. search for chat and set the "message to send" to "$effectOutput[httpResponse]" and save
+
+Everything is now done and ready for testing.
+Go live, launch Balatro and run your command :3
diff --git a/mods/LazyTurtle33@FireBotModList/meta.json b/mods/LazyTurtle33@FireBotModList/meta.json
new file mode 100644
index 00000000..96ec48b9
--- /dev/null
+++ b/mods/LazyTurtle33@FireBotModList/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "FireBotModList",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Technical"],
+ "author": "LazyTurtle33",
+ "repo": "https://github.com/TheLazyTurtle33/BalatroFireBotModList",
+ "downloadURL": "https://github.com/TheLazyTurtle33/BalatroFireBotModList/releases/latest/download/FireBotModList.zip",
+ "folderName": "FireBotModList",
+ "version": "release",
+ "automatic-version-check": true
+}
diff --git a/mods/LazyTurtle33@FireBotModList/thumbnail.png b/mods/LazyTurtle33@FireBotModList/thumbnail.png
new file mode 100644
index 00000000..43cacb2c
Binary files /dev/null and b/mods/LazyTurtle33@FireBotModList/thumbnail.png differ
diff --git a/mods/LazyTurtle33@Smokey/description.md b/mods/LazyTurtle33@Smokey/description.md
new file mode 100644
index 00000000..771d9f7a
--- /dev/null
+++ b/mods/LazyTurtle33@Smokey/description.md
@@ -0,0 +1 @@
+Replaces Lucky Cat with DJ Soup and Salad's cat, Smokey.
diff --git a/mods/LazyTurtle33@Smokey/meta.json b/mods/LazyTurtle33@Smokey/meta.json
new file mode 100644
index 00000000..e1a48531
--- /dev/null
+++ b/mods/LazyTurtle33@Smokey/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Smokey",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Resource Packs"],
+ "author": "LazyTurtle33",
+ "repo": "https://github.com/TheLazyTurtle33/Smokey",
+ "downloadURL": "https://github.com/TheLazyTurtle33/Smokey/releases/latest/download/Smokey.zip",
+ "folderName": "Smokey",
+ "version": "release",
+ "automatic-version-check": false
+}
diff --git a/mods/LazyTurtle33@Solar/description.md b/mods/LazyTurtle33@Solar/description.md
new file mode 100644
index 00000000..c84a4649
--- /dev/null
+++ b/mods/LazyTurtle33@Solar/description.md
@@ -0,0 +1 @@
+Replaces Space Joker with Solar
diff --git a/mods/LazyTurtle33@Solar/meta.json b/mods/LazyTurtle33@Solar/meta.json
new file mode 100644
index 00000000..ae518d26
--- /dev/null
+++ b/mods/LazyTurtle33@Solar/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Solar",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Resource Packs"],
+ "author": "LazyTurtle33",
+ "repo": "https://github.com/TheLazyTurtle33/SolarBalatro",
+ "downloadURL": "https://github.com/TheLazyTurtle33/SolarBalatro/releases/latest/download/Solar.zip",
+ "folderName": "Solar",
+ "version": "release",
+ "automatic-version-check": false
+}
diff --git a/mods/LazyTurtle33@TurtlesChallenges/description.md b/mods/LazyTurtle33@TurtlesChallenges/description.md
new file mode 100644
index 00000000..94aee3d1
--- /dev/null
+++ b/mods/LazyTurtle33@TurtlesChallenges/description.md
@@ -0,0 +1,106 @@
+Adds some Challenges made by LazyTurtle33 and others ^^
+
+## Challenges include:
+
+### AAAA
+
+- deck has only 4 aces
+- you cant change the deck
+
+### AAAA (but fuck you)
+
+- same as AAAA but harder
+
+### Avoidance
+
+- Gets harder the more you play :3
+- X3 blind reward
+
+### Cookie Clicker
+
+- Clicking on a card increases blind requirements (excluding the blind your in)
+
+### Empty Orbit
+
+- no leveling up hands
+
+### NOPE
+
+- 1 in 4 chance for any action to NOT HAPPEN
+
+### The Run Aways
+
+- the opposite of abandoned deck
+
+### Solar
+
+- start with space joker
+- no planets
+- no discards
+
+### Stock Market
+
+- Instead of blind rewards, earn from -75% to 150% of money
+
+### Blackjack
+
+- no base chips
+- don't go over 21
+
+### Bocadolia
+
+- every round is The Mouth,
+- each level-up grants +1 extra levels
+
+### Celestial Fusion
+
+- on plasma deck
+- no scoring jokers
+
+### Claustrophobia
+
+- 7 hands and discards
+- 4 consumable slots
+- 5 Shop slots
+- 7 Joker slots
+- After every boss beaten: -1 hand (until 1 hand left) -1 discard, -1 consumable slot, -1 shop slot (until 1) -1 joker slot
+
+### Deck Builder
+
+- empty deck
+- start with 5 standard tag
+- 1 in 2 chance played cards get destroyed
+- start with magic trick
+
+### Needle Snake
+
+- mix of The Needle and The Serpent
+
+### Plain Jane
+
+- its all so plain...
+
+### SpeedRun
+
+- reach ante 5 to win
+- antes scale faster
+- start with 3 diet colas
+
+### Thief
+
+- you can steal cards
+- but at a cost
+
+### Poker Purgatory
+
+- this is hell
+- i don't think this is beatable
+- good luck :3
+
+Most challenges has been beaten by ether me or a play tester and I rebalance then as needed
+
+I hope to add many more challenges and if you have an idea for a challenge make a suggestion on the [github](https://github.com/TheLazyTurtle33/TurtlesChallenges) or my [discord](https://discord.gg/GJpybRAEq5) :3
+
+If you like my work you can support me on my [KoFi](https://ko-fi.com/lasyturtle33) >.<
+
+special thanks to Dessi for a munch of challenge ideas and DJSoupAndSalad for play testing :3
diff --git a/mods/LazyTurtle33@TurtlesChallenges/meta.json b/mods/LazyTurtle33@TurtlesChallenges/meta.json
new file mode 100644
index 00000000..b816bfb8
--- /dev/null
+++ b/mods/LazyTurtle33@TurtlesChallenges/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "TurtlesChallenges",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "LazyTurtle33",
+ "repo": "https://github.com/TheLazyTurtle33/TurtlesChallenges",
+ "downloadURL": "https://github.com/TheLazyTurtle33/TurtlesChallenges/releases/latest/download/TurtlesChallenges.zip",
+ "folderName": "TurtlesChallenges",
+ "version": "1.5.3",
+ "automatic-version-check": true
+}
diff --git a/mods/Lily@VallKarri/description.md b/mods/Lily@VallKarri/description.md
new file mode 100644
index 00000000..196b79bd
--- /dev/null
+++ b/mods/Lily@VallKarri/description.md
@@ -0,0 +1,3 @@
+# VallKarri
+Yet another expansion upon Cryptid, expanding on it's content and adding lots of new ideas!
+Over 90 new Jokers, 4 new consumable types, totalling over 80 consumables, alongside many new vouchers and decks!
diff --git a/mods/Lily@VallKarri/meta.json b/mods/Lily@VallKarri/meta.json
new file mode 100644
index 00000000..4030e9ef
--- /dev/null
+++ b/mods/Lily@VallKarri/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "VallKarri",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "Lily",
+ "repo": "https://github.com/real-niacat/VallKarri",
+ "downloadURL": "https://github.com/real-niacat/VallKarri/archive/refs/heads/master.zip",
+ "folderName": "VallKarri",
+ "version": "e2f9abe",
+ "automatic-version-check": true,
+ "last-updated": 1762715544
+}
diff --git a/mods/Lily@VallKarri/thumbnail.jpg b/mods/Lily@VallKarri/thumbnail.jpg
new file mode 100644
index 00000000..979c42b2
Binary files /dev/null and b/mods/Lily@VallKarri/thumbnail.jpg differ
diff --git a/mods/Lime_Effy@CelestialFunk/meta.json b/mods/Lime_Effy@CelestialFunk/meta.json
index 0e28164a..ba155af0 100644
--- a/mods/Lime_Effy@CelestialFunk/meta.json
+++ b/mods/Lime_Effy@CelestialFunk/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/LimeEffy/Celestial-Funk",
"downloadURL": "https://github.com/LimeEffy/Celestial-Funk/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "0c7e095"
+ "version": "0cd8f89"
}
diff --git a/mods/Maelmc@Pokermon-Maelmc/description.md b/mods/Maelmc@Pokermon-Maelmc/description.md
new file mode 100644
index 00000000..d0f7697c
--- /dev/null
+++ b/mods/Maelmc@Pokermon-Maelmc/description.md
@@ -0,0 +1 @@
+A Pokermon extension, that adds Pokémon-related jokers, consumables and other things that aren't (yet) featured in InertSteak's Pokermon mod.
\ No newline at end of file
diff --git a/mods/Maelmc@Pokermon-Maelmc/meta.json b/mods/Maelmc@Pokermon-Maelmc/meta.json
new file mode 100644
index 00000000..f0859670
--- /dev/null
+++ b/mods/Maelmc@Pokermon-Maelmc/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Pokermon-Maelmc",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Maelmc",
+ "repo": "https://github.com/Maelmc/Pokermon-Maelmc",
+ "downloadURL": "https://github.com/Maelmc/Pokermon-Maelmc/archive/refs/heads/main.zip",
+ "folderName": "Pokermon-Maelmc",
+ "version": "9aaff83",
+ "automatic-version-check": true,
+ "last-updated": 1762532309
+}
diff --git a/mods/Maelmc@Pokermon-Maelmc/thumbnail.jpg b/mods/Maelmc@Pokermon-Maelmc/thumbnail.jpg
new file mode 100644
index 00000000..bc857d35
Binary files /dev/null and b/mods/Maelmc@Pokermon-Maelmc/thumbnail.jpg differ
diff --git a/mods/MathIsFun0@Ankh/description.md b/mods/MathIsFun0@Ankh/description.md
new file mode 100644
index 00000000..93a54c3c
--- /dev/null
+++ b/mods/MathIsFun0@Ankh/description.md
@@ -0,0 +1,12 @@
+# Ankh
+An in-game timer, autosplitter, and replay mod for Balatro.
+
+## Using Ankh
+All runs uploaded to Speedrun.com with this mod must use its Official Mode, which you can find in the profile selection menu.
+To reset runs with multiple segments, hold down Control+R instead of just R.
+
+# Beta 2.0.0
+Note: This is a beta version of Ankh, so expect bugs! Additionally, it is also not recommended in Speedrun.com submissions.
+Special thanks to @OceanRamen for their help in the development process of 2.0.0.
+
+There is an [FAQ Doc](https://docs.google.com/document/d/1bBCoUyFRuezepSOG2u0so5UJD-7u81b_JHw-fyyQUcc/edit?tab=t.0) for more assistance.
\ No newline at end of file
diff --git a/mods/MathIsFun0@Ankh/meta.json b/mods/MathIsFun0@Ankh/meta.json
new file mode 100644
index 00000000..d32ced9c
--- /dev/null
+++ b/mods/MathIsFun0@Ankh/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Ankh",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Miscellaneous"
+ ],
+ "author": "MathIsFun0 & OceanRamen",
+ "repo": "https://github.com/SpectralPack/Ankh/",
+ "downloadURL": "https://github.com/SpectralPack/Ankh/releases/download/v2.0.0-beta3/MathIsFun0-Ankh.zip",
+ "folderName": "Ankh",
+ "automatic-version-check": false,
+ "version": "v2.0.0-beta3"
+}
diff --git a/mods/MathIsFun0@Ankh/thumbnail.jpg b/mods/MathIsFun0@Ankh/thumbnail.jpg
new file mode 100644
index 00000000..ec41aedc
Binary files /dev/null and b/mods/MathIsFun0@Ankh/thumbnail.jpg differ
diff --git a/mods/MathIsFun0@Cryptid/meta.json b/mods/MathIsFun0@Cryptid/meta.json
index f6e0c894..d1684c2b 100644
--- a/mods/MathIsFun0@Cryptid/meta.json
+++ b/mods/MathIsFun0@Cryptid/meta.json
@@ -7,8 +7,9 @@
],
"author": "MathIsFun0",
"repo": "https://github.com/MathIsFun0/Cryptid",
- "downloadURL": "https://github.com/MathIsFun0/Cryptid/archive/refs/tags/v0.5.8.zip",
+ "downloadURL": "https://github.com/MathIsFun0/Cryptid/archive/refs/tags/v0.5.13.zip",
"folderName": "Cryptid",
"automatic-version-check": true,
- "version": "v0.5.8"
+ "version": "v0.5.13",
+ "last-updated": 1761274696
}
diff --git a/mods/MathIsFun0@Talisman/meta.json b/mods/MathIsFun0@Talisman/meta.json
index 969dde0a..9dc97b6e 100644
--- a/mods/MathIsFun0@Talisman/meta.json
+++ b/mods/MathIsFun0@Talisman/meta.json
@@ -9,8 +9,9 @@
],
"author": "MathIsFun0",
"repo": "https://github.com/MathIsFun0/Talisman",
- "downloadURL": "https://github.com/MathIsFun0/Talisman/releases/latest/download/Talisman.zip",
+ "downloadURL": "https://github.com/MathIsFun0/Talisman/archive/refs/heads/main.zip",
"folderName": "Talisman",
"automatic-version-check": true,
- "version": "v2.2.0c"
+ "version": "62934b5",
+ "last-updated": 1761658121
}
diff --git a/mods/Mathguy@CruelBlinds/meta.json b/mods/Mathguy@CruelBlinds/meta.json
index 9facf6b8..00ca33b0 100644
--- a/mods/Mathguy@CruelBlinds/meta.json
+++ b/mods/Mathguy@CruelBlinds/meta.json
@@ -2,8 +2,12 @@
"title": "Cruel Blinds",
"requires-steamodded": true,
"requires-talisman": false,
- "categories": ["Content"],
+ "categories": [
+ "Content"
+ ],
"author": "Mathguy",
"repo": "https://github.com/Mathguy23/Cruel-Blinds",
+ "automatic-version-check": true,
+ "version": "fff1d37",
"downloadURL": "https://github.com/Mathguy23/Cruel-Blinds/archive/refs/heads/main.zip"
}
diff --git a/mods/Mathguy@Grim/meta.json b/mods/Mathguy@Grim/meta.json
index 32ffb9aa..ddca4665 100644
--- a/mods/Mathguy@Grim/meta.json
+++ b/mods/Mathguy@Grim/meta.json
@@ -2,8 +2,13 @@
"title": "Grim",
"requires-steamodded": true,
"requires-talisman": false,
- "categories": ["Content"],
+ "categories": [
+ "Content"
+ ],
"author": "Mathguy",
"repo": "https://github.com/Mathguy23/Grim",
- "downloadURL": "https://github.com/Mathguy23/Grim/archive/refs/heads/main.zip"
+ "automatic-version-check": true,
+ "version": "a855573",
+ "downloadURL": "https://github.com/Mathguy23/Grim/archive/refs/heads/main.zip",
+ "last-updated": 1758392434
}
diff --git a/mods/Mathguy@Hit/meta.json b/mods/Mathguy@Hit/meta.json
index c37936cd..1a46559d 100644
--- a/mods/Mathguy@Hit/meta.json
+++ b/mods/Mathguy@Hit/meta.json
@@ -9,6 +9,7 @@
"repo": "https://github.com/Mathguy23/Hit",
"downloadURL": "https://github.com/Mathguy23/Hit/archive/refs/heads/main.zip",
"folderName": "Hit",
- "version": "e93b589",
- "automatic-version-check": true
+ "version": "abf2c4f",
+ "automatic-version-check": true,
+ "last-updated": 1757974473
}
diff --git a/mods/MothBall@ModOfTheseus/description.md b/mods/MothBall@ModOfTheseus/description.md
new file mode 100644
index 00000000..2650824c
--- /dev/null
+++ b/mods/MothBall@ModOfTheseus/description.md
@@ -0,0 +1 @@
+Community driven content mod with Cryptid/Entropy-style balance
\ No newline at end of file
diff --git a/mods/MothBall@ModOfTheseus/meta.json b/mods/MothBall@ModOfTheseus/meta.json
new file mode 100644
index 00000000..e757946a
--- /dev/null
+++ b/mods/MothBall@ModOfTheseus/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Mod of Theseus",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "MothBall",
+ "repo": "https://github.com/Mod-Of-Theseus/Mod-Of-Theseus",
+ "downloadURL": "https://github.com/Mod-Of-Theseus/Mod-Of-Theseus/archive/refs/heads/main.zip",
+ "folderName": "ModOfTheseus",
+ "version": "a6b5366",
+ "automatic-version-check": true,
+ "last-updated": 1757559496
+}
diff --git a/mods/MothBall@ModOfTheseus/thumbnail.jpg b/mods/MothBall@ModOfTheseus/thumbnail.jpg
new file mode 100644
index 00000000..a60db8ba
Binary files /dev/null and b/mods/MothBall@ModOfTheseus/thumbnail.jpg differ
diff --git a/mods/MrChickenDude@LGBTmultCards/meta.json b/mods/MrChickenDude@LGBTmultCards/meta.json
index 365874bc..ee9328f6 100644
--- a/mods/MrChickenDude@LGBTmultCards/meta.json
+++ b/mods/MrChickenDude@LGBTmultCards/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/Catzzadilla/LGBT-Mult-Cards",
"downloadURL": "https://github.com/Catzzadilla/LGBT-Mult-Cards/archive/refs/heads/main.zip",
"folderName": "LGBT Mult Cards",
- "version": "04e98bd",
+ "version": "ecedd96",
"automatic-version-check": true
}
diff --git a/mods/Mysthaps@LobotomyCorp/meta.json b/mods/Mysthaps@LobotomyCorp/meta.json
index 7c1889ef..a323d6a9 100644
--- a/mods/Mysthaps@LobotomyCorp/meta.json
+++ b/mods/Mysthaps@LobotomyCorp/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/Mysthaps/LobotomyCorp",
"downloadURL": "https://github.com/Mysthaps/LobotomyCorp/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "78d4c68"
+ "version": "6bcb3e3",
+ "last-updated": 1761960311
}
diff --git a/mods/Neato@NeatoJokers/meta.json b/mods/Neato@NeatoJokers/meta.json
index e4392db4..52e0a680 100644
--- a/mods/Neato@NeatoJokers/meta.json
+++ b/mods/Neato@NeatoJokers/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/neatoqueen/NeatoJokers",
"downloadURL": "https://github.com/neatoqueen/NeatoJokers/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "177d41e"
+ "version": "9bb678b"
}
diff --git a/mods/Nxkoo@Tangents/description.md b/mods/Nxkoo@Tangents/description.md
new file mode 100644
index 00000000..ec109d7d
--- /dev/null
+++ b/mods/Nxkoo@Tangents/description.md
@@ -0,0 +1,66 @@
+# Tangents
+ Shenanigans and Randomness had a hot steamy intimate time.
+
+# ABOUT THIS MOD
+Once upon a time, a **LEGEND** was whispered among us.
+
+It was a **LEGEND** of **CRYPTID**.
+
+It was a **LEGEND** of ~ALMANAC~ **ENTROPY**.
+
+It was a **LEGEND** of **BUNCO**.
+
+It was a **LEGEND** of **EXTRA CREDITS**.
+
+This is the legend of **TANGENTS**.
+
+For millenia, **UNBALANCED** and **VANILLA+** have lived in *balance*,
+Bringing peace to the *LOVELY STEAM*.
+But if this harmony were to shatter...
+
+a terrible conflict would occur.
+
+The background will run grey with t**ERROR**.
+
+And the instance will crash with 50+ Mods installed.
+
+Then, her heart pierced...
+**BALATRO** will draw her final hands.
+Only then, shining with *polychrome*...
+
+Three **HEROES** appear at **MODDING CHAT**.
+
+AN **ARTIST**,
+
+A **CODER**,
+
+And a **CLUELESS PERSON WHO NEEDS HELP WITH THEIR GAME CRASHING**.
+
+Only they can seal the crash logs
+And banish the **TABLE'S COMPARISON**.
+Only then will balance be restored,
+And **BALATRO** saved from destruction.
+Today, the **FOUNTAIN OF SHITPOST**-
+The geyser that gives this land form-
+Stands tall at the center of the BMM.
+But recently, another fountain has appeared on the horizon...
+And with it, the balance of **VANILLA+** and **UNBALANCED** begins to shift...
+
+it's a shitpost mod if you cant tell, has around 90+ Jokers, more to come really soon!
+
+ # CREDITS TO THESE PEOPLE WHO HELPED ME/FOR THEIR CODES REFERENCE
+- N' (@nh6574 on discord)
+- Somethingcom515 (on discord)
+- BepisFever (on discord)
+- HeavenPierceHer (@kxeine_ on discord)
+- Freh (on discord) [for their timer code]
+- Aikoyori (on discord) [for their SMODS.Font tutorial]
+- PERKOLATED (on discord) [for the card title screen code]
+- SleepyG11 (on discord)
+- HuyTheKiller (on discord)
+- senfinbrare (on discord)
+- Victin (on discord)
+- Breezebuilder (on discord)
+
+# HOW TO DOWNLOAD??????????
+green big obvious button on top, below the thumnbail, press, enjyo
diff --git a/mods/Nxkoo@Tangents/meta.json b/mods/Nxkoo@Tangents/meta.json
new file mode 100644
index 00000000..c767770a
--- /dev/null
+++ b/mods/Nxkoo@Tangents/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "Tangents",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Joker",
+ "Content",
+ "Miscellaneous"
+ ],
+ "author": "Nxkoo",
+ "repo": "https://github.com/Clickseee/Tangents",
+ "downloadURL": "https://github.com/Clickseee/Tangents/archive/refs/heads/main.zip",
+ "folderName": "Tangents",
+ "version": "1119a31",
+ "automatic-version-check": true,
+ "last-updated": 1762676386
+}
diff --git a/mods/Nxkoo@Tangents/thumbnail.jpg b/mods/Nxkoo@Tangents/thumbnail.jpg
new file mode 100644
index 00000000..ff26bf26
Binary files /dev/null and b/mods/Nxkoo@Tangents/thumbnail.jpg differ
diff --git a/mods/OceanRamen@Saturn/description.md b/mods/OceanRamen@Saturn/description.md
new file mode 100644
index 00000000..bab4a236
--- /dev/null
+++ b/mods/OceanRamen@Saturn/description.md
@@ -0,0 +1,22 @@
+# Saturn - Quality of life mod for Balatro
+
+**Saturn** is a lovely mod for [Balatro](https://www.playbalatro.com/) which introduces some Quality of Life features for better game expirience on endless mode.
+
+## Features
+
+- **Animation Control**
+
+ - **Game Speed:** Allow increase game speed up to 16x.
+ - **Remove Animations:** Eliminate in-game animations to speed up game loop in later antes.
+ - **Pause after scoring:** Provides some time to shuffle jokers during scoring
+
+- **Consumable Management**
+
+ - **Stacking:** Stacking of consumable cards. Merge all negative copies of planets, tarots or other consumables to reduce lag.
+
+- **Enhanced Deck Viewer**
+ - **Hide Played Cards:** hide played cards in deck view.
+
+## Contributing
+
+Contributions are welcome! If you found any bug or want a new feature, [make an issue](https://github.com/OceanRamen/Saturn/issues).
\ No newline at end of file
diff --git a/mods/OceanRamen@Saturn/meta.json b/mods/OceanRamen@Saturn/meta.json
new file mode 100644
index 00000000..86f5f323
--- /dev/null
+++ b/mods/OceanRamen@Saturn/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Saturn",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Technical",
+ "Miscellaneous"
+ ],
+ "author": "Saturn",
+ "repo": "https://github.com/OceanRamen/Saturn",
+ "downloadURL": "https://github.com/OceanRamen/Saturn/archive/refs/tags/alpha-0.2.2-E-qf3.zip",
+ "folderName": "Saturn",
+ "version": "alpha-0.2.2-E-qf3",
+ "automatic-version-check": true
+}
diff --git a/mods/OceanRamen@Saturn/thumbnail.jpg b/mods/OceanRamen@Saturn/thumbnail.jpg
new file mode 100644
index 00000000..7e0920bb
Binary files /dev/null and b/mods/OceanRamen@Saturn/thumbnail.jpg differ
diff --git a/mods/Omnilax@GoFish/description.md b/mods/Omnilax@GoFish/description.md
new file mode 100644
index 00000000..feee98fe
--- /dev/null
+++ b/mods/Omnilax@GoFish/description.md
@@ -0,0 +1,5 @@
+- Go Fish mod that adds 3 Booster packs that as you to select a card in hand and creates a random joker.
+- Adds 80 unique "Fish" Jokers that can be created from these packs, fish jokers do not take up joker slots but can be hard to catch!
+- Also adds 2 vouchers that make it easier to find the card you are looking for while opening a pack.
+
+This is my first mod, and its not so polished but please let me know any suggestions or bugs!
diff --git a/mods/Omnilax@GoFish/meta.json b/mods/Omnilax@GoFish/meta.json
new file mode 100644
index 00000000..92c68971
--- /dev/null
+++ b/mods/Omnilax@GoFish/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Go Fish",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Omnilax",
+ "repo": "https://github.com/Omnilax/GoFishBalatro",
+ "downloadURL": "https://github.com/omnilax/Gofishbalatro/releases/latest/download/go-fish.zip",
+ "folderName": "GoFish",
+ "version": "v0.1.0",
+ "automatic-version-check": true
+}
diff --git a/mods/Omnilax@GoFish/thumbnail.jpg b/mods/Omnilax@GoFish/thumbnail.jpg
new file mode 100644
index 00000000..3f602524
Binary files /dev/null and b/mods/Omnilax@GoFish/thumbnail.jpg differ
diff --git a/mods/OneSuchKeeper@Hunatro/description.md b/mods/OneSuchKeeper@Hunatro/description.md
index 810a8b1e..c4792205 100644
--- a/mods/OneSuchKeeper@Hunatro/description.md
+++ b/mods/OneSuchKeeper@Hunatro/description.md
@@ -7,16 +7,21 @@
# Features
- 24 Deck Skins
-- 83 Jokers
+- 84 Jokers
- 30 Blinds (Dates)
- 4 Seals
- 4 Suits
-- 1 Deck Back
+- 7 Deck Backs
- 2 Vouchers
- 3 Tarots
- 2 Planets
- 1 Spectral
- 1 Enhancement
+
+# Notes:
+
+This mod does **NOT** require [Malverk](https://github.com/Eremel/Malverk), but it is compatible with it and will add itself as a texture pack if [Malverk](https://github.com/Eremel/Malverk) is also installed.
+
# Credits
Textures modified from textures in **[Huniepop 2: Double Date](https://huniepop2doubledate.com/)** and **[Huniecam Studio](https://huniecamstudio.com/)** are used with permission from the developer. These textures are owned by **[Huniepot](https://huniepot.com/)**.
diff --git a/mods/OneSuchKeeper@Hunatro/meta.json b/mods/OneSuchKeeper@Hunatro/meta.json
index 65b4a093..01fc0db7 100644
--- a/mods/OneSuchKeeper@Hunatro/meta.json
+++ b/mods/OneSuchKeeper@Hunatro/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/onesuchkeeper/Hunatro",
"downloadURL": "https://github.com/onesuchkeeper/hunatro/releases/latest/download/hunatro.zip",
"automatic-version-check": true,
- "version": "v1.0.2"
+ "version": "v1.1.1"
}
diff --git a/mods/OneSuchKeeper@TelepurteCards/description.md b/mods/OneSuchKeeper@TelepurteCards/description.md
new file mode 100644
index 00000000..1986106f
--- /dev/null
+++ b/mods/OneSuchKeeper@TelepurteCards/description.md
@@ -0,0 +1,13 @@
+## Telepurte Cards
+
+# Features
+- 4 Deck Skins
+- 4 Joker Skins
+
+# Notes
+This mod does **NOT** require [Malverk](https://github.com/Eremel/Malverk), but it is compatible with it and will add itself as a texture pack if [Malverk](https://github.com/Eremel/Malverk) is also installed.
+
+# Credits
+Nila pixel art, origional suit joker art and characters by **[Telepurte](https://x.com/Telepeturtle)**
+
+Development and all other textures are by **[OneSuchKeeper](https://www.youtube.com/@onesuchkeeper8389)**
\ No newline at end of file
diff --git a/mods/OneSuchKeeper@TelepurteCards/meta.json b/mods/OneSuchKeeper@TelepurteCards/meta.json
new file mode 100644
index 00000000..50f896d0
--- /dev/null
+++ b/mods/OneSuchKeeper@TelepurteCards/meta.json
@@ -0,0 +1,13 @@
+{
+ "title": "Telepurte Cards",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "OneSuchKeeper",
+ "repo": "https://github.com/onesuchkeeper/telepurtedeck",
+ "downloadURL": "https://github.com/onesuchkeeper/telepurtedeck/releases/latest/download/TelepurteCards.zip",
+ "automatic-version-check": true,
+ "version": "v1.0.1"
+}
diff --git a/mods/OneSuchKeeper@TelepurteCards/thumbnail.jpg b/mods/OneSuchKeeper@TelepurteCards/thumbnail.jpg
new file mode 100644
index 00000000..3ca050e0
Binary files /dev/null and b/mods/OneSuchKeeper@TelepurteCards/thumbnail.jpg differ
diff --git a/mods/Opal@ChallengerDeep/meta.json b/mods/Opal@ChallengerDeep/meta.json
index eac407e0..8cf1f708 100644
--- a/mods/Opal@ChallengerDeep/meta.json
+++ b/mods/Opal@ChallengerDeep/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/OOkayOak/Challenger-Deep",
"downloadURL": "https://github.com/OOkayOak/Challenger-Deep/releases/latest/download/ChallengerDeep.zip",
"automatic-version-check": true,
- "version": "v1.3.5"
+ "version": "v1.4.2"
}
diff --git a/mods/Opal@ChallengerExamples/meta.json b/mods/Opal@ChallengerExamples/meta.json
index 8f4b501a..556b5ab4 100644
--- a/mods/Opal@ChallengerExamples/meta.json
+++ b/mods/Opal@ChallengerExamples/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/OOkayOak/Challenger-Examples",
"downloadURL": "https://github.com/OOkayOak/Challenger-Examples/releases/latest/download/ChallengerExamples.zip",
"automatic-version-check": true,
- "version": "v1.0.0"
+ "version": "v1.1.0"
}
diff --git a/mods/Pinktheone@RegalsMod/description.md b/mods/Pinktheone@RegalsMod/description.md
new file mode 100644
index 00000000..357b41dd
--- /dev/null
+++ b/mods/Pinktheone@RegalsMod/description.md
@@ -0,0 +1,12 @@
+# Regals Mod
+
+A mod containing 45 brand new jokers and 5 new decks with custom artwork and vanilla balancing in mind. My first attempt at a mod for this game so hope it goes well!
+
+# Compatability
+
+Requires steamodded. May not be compatable with certain mods, if you run into an issue with compatability or any other bugs submit it as an issue on the [Github](https://github.com/mpa-LHutchinson/Regals-Mod) OR report it in the Regals Mod thread in the official Balatro Discord server. We will try to resolve it as soon as possible.
+
+# Credits
+
+- Pinktheone(Regal): Developer
+- FoxboxRay(Ray): Artist
\ No newline at end of file
diff --git a/mods/Pinktheone@RegalsMod/meta.json b/mods/Pinktheone@RegalsMod/meta.json
new file mode 100644
index 00000000..1de9561c
--- /dev/null
+++ b/mods/Pinktheone@RegalsMod/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Regals Mod",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Pinktheone",
+ "repo": "https://github.com/mpa-LHutchinson/Regals-Mod",
+ "downloadURL": "https://github.com/mpa-LHutchinson/Regals-Mod/archive/refs/heads/main.zip",
+ "folderName": "RegalsMod",
+ "version": "7000970",
+ "automatic-version-check": true,
+ "last-updated": 1762722850
+}
diff --git a/mods/Pinktheone@RegalsMod/thumbnail.jpg b/mods/Pinktheone@RegalsMod/thumbnail.jpg
new file mode 100644
index 00000000..78b49c95
Binary files /dev/null and b/mods/Pinktheone@RegalsMod/thumbnail.jpg differ
diff --git a/mods/PokTux@RosesDumbassBalatroMod/description.md b/mods/PokTux@RosesDumbassBalatroMod/description.md
new file mode 100644
index 00000000..0fe8b380
--- /dev/null
+++ b/mods/PokTux@RosesDumbassBalatroMod/description.md
@@ -0,0 +1 @@
+A silly content mod that adds about 40 Jokers as well as a few other things like decks and consumable
diff --git a/mods/PokTux@RosesDumbassBalatroMod/meta.json b/mods/PokTux@RosesDumbassBalatroMod/meta.json
new file mode 100644
index 00000000..8989368b
--- /dev/null
+++ b/mods/PokTux@RosesDumbassBalatroMod/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Rose's Dumbass Balatro Mod",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Rose",
+ "repo": "https://github.com/PokTux/Rose-s-Dumbass-Balatro-Mod",
+ "downloadURL": "https://github.com/PokTux/Rose-s-Dumbass-Balatro-Mod/archive/refs/heads/main.zip",
+ "folderName": "rosemod2",
+ "version": "2e863c0",
+ "automatic-version-check": true,
+ "last-updated": 1762503868
+}
diff --git a/mods/PokTux@RosesDumbassBalatroMod/thumbnail.jpg b/mods/PokTux@RosesDumbassBalatroMod/thumbnail.jpg
new file mode 100644
index 00000000..09156f6a
Binary files /dev/null and b/mods/PokTux@RosesDumbassBalatroMod/thumbnail.jpg differ
diff --git a/mods/RattlingSnow353@Familiar/meta.json b/mods/RattlingSnow353@Familiar/meta.json
index 6f9ef529..73a885d2 100644
--- a/mods/RattlingSnow353@Familiar/meta.json
+++ b/mods/RattlingSnow353@Familiar/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/RattlingSnow353/Familiar/tree/main",
"downloadURL": "https://github.com/RattlingSnow353/Familiar/archive/refs/heads/BetterCalc-Fixes.zip",
"automatic-version-check": true,
- "version": "b5a9715"
+ "version": "0dcd89b"
}
diff --git a/mods/RattlingSnow353@SnowsMods/meta.json b/mods/RattlingSnow353@SnowsMods/meta.json
index c3ae43a6..03af26cb 100644
--- a/mods/RattlingSnow353@SnowsMods/meta.json
+++ b/mods/RattlingSnow353@SnowsMods/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/RattlingSnow353/Snow-s-Mods",
"downloadURL": "https://github.com/RattlingSnow353/Snow-s-Mods/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "a58e7f3"
+ "version": "0b38ad9"
}
diff --git a/mods/Refuge@Bloonlatro/description.md b/mods/Refuge@Bloonlatro/description.md
new file mode 100644
index 00000000..19c2a468
--- /dev/null
+++ b/mods/Refuge@Bloonlatro/description.md
@@ -0,0 +1,3 @@
+# Bloonlatro
+
+A Balatro mod that incorporates Bloons Tower Defense into the base game
diff --git a/mods/Refuge@Bloonlatro/meta.json b/mods/Refuge@Bloonlatro/meta.json
new file mode 100644
index 00000000..1ddc7905
--- /dev/null
+++ b/mods/Refuge@Bloonlatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Bloonlatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Refuge",
+ "repo": "https://github.com/Amphiapple/Bloonlatro",
+ "downloadURL": "https://github.com/Amphiapple/Bloonlatro/releases/latest/download/Bloonlatro.zip",
+ "version": "v0.3.2",
+ "automatic-version-check": true,
+ "last-updated": 1761553475
+}
diff --git a/mods/Refuge@Bloonlatro/thumbnail.jpg b/mods/Refuge@Bloonlatro/thumbnail.jpg
new file mode 100644
index 00000000..cd027c81
Binary files /dev/null and b/mods/Refuge@Bloonlatro/thumbnail.jpg differ
diff --git a/mods/Revo@Revo'sVault/meta.json b/mods/Revo@Revo'sVault/meta.json
index a7d99259..109f5e01 100644
--- a/mods/Revo@Revo'sVault/meta.json
+++ b/mods/Revo@Revo'sVault/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/Cdrvo/Revos-Vault---Balatro-Mod",
"downloadURL": "https://github.com/Cdrvo/Revos-Vault---Balatro-Mod/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "6571f86"
+ "version": "e6eb4c0",
+ "last-updated": 1759162657
}
diff --git a/mods/RoffleChat@Rofflatro/meta.json b/mods/RoffleChat@Rofflatro/meta.json
index 5aba69ae..6cff58a8 100644
--- a/mods/RoffleChat@Rofflatro/meta.json
+++ b/mods/RoffleChat@Rofflatro/meta.json
@@ -8,8 +8,8 @@
],
"author": "Roffle's Chat",
"repo": "https://github.com/MamiKeRiko/Rofflatro",
- "downloadURL": "https://github.com/MamiKeRiko/Rofflatro/archive/refs/tags/v1.1.2.zip",
+ "downloadURL": "https://github.com/MamiKeRiko/Rofflatro/archive/refs/tags/v1.2.0b.zip",
"folderName": "Rofflatro",
- "version": "v1.1.2",
+ "version": "v1.2.0b",
"automatic-version-check": true
}
diff --git a/mods/SDM0@SDM_0-s-Stuff/meta.json b/mods/SDM0@SDM_0-s-Stuff/meta.json
index ab26987e..40a71b04 100644
--- a/mods/SDM0@SDM_0-s-Stuff/meta.json
+++ b/mods/SDM0@SDM_0-s-Stuff/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/SDM0/SDM_0-s-Stuff",
"downloadURL": "https://github.com/SDM0/SDM_0-s-Stuff/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "3f2a119"
+ "version": "3a0e52b"
}
diff --git a/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json b/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
index 0213d123..3c6b37a7 100644
--- a/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
+++ b/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
@@ -10,6 +10,7 @@
"repo": "https://github.com/smg9000/Cryptid-MoreMarioJokers",
"downloadURL": "https://github.com/smg9000/Cryptid-MoreMarioJokers/archive/refs/heads/main.zip",
"folderName": "Cryptid-MoreMarioJokers",
- "version": "5505084",
- "automatic-version-check": true
+ "version": "cd7d7df",
+ "automatic-version-check": true,
+ "last-updated": 1757542504
}
diff --git a/mods/SNC@UTY/description.md b/mods/SNC@UTY/description.md
index 82d67835..ffb8b791 100644
--- a/mods/SNC@UTY/description.md
+++ b/mods/SNC@UTY/description.md
@@ -1,8 +1,8 @@
# Kevin's Undertale Yellow
### by SurelyNotClover
-An Undertale Yellow mod featuring 45 new Jokers heavily based on the characters from the game as well as 10 new challenges centered around them
+## V2 UPDATE!
+- 10 new Jokers
+- Balance Changes
-This mod has compatibility with:
-* Joker Display
-* Partner
+An Undertale Yellow mod featuring 55 new Jokers heavily based on the characters from the game as well as 10 new challenges centered around them
diff --git a/mods/SNC@UTY/meta.json b/mods/SNC@UTY/meta.json
index c7f8f2c4..a6d2a3ed 100644
--- a/mods/SNC@UTY/meta.json
+++ b/mods/SNC@UTY/meta.json
@@ -5,8 +5,10 @@
"categories": ["Content","Joker"],
"author": "SurelyNotClover",
"repo": "https://github.com/SurelyNotClover/Kevin-s-UTY-Balatro-Mod",
- "downloadURL": "https://github.com/SurelyNotClover/Kevin-s-UTY-Balatro-Mod/releases/download/Release/KevinsUTY.zip",
+ "downloadURL": "https://github.com/SurelyNotClover/Kevin-s-UTY-Balatro-Mod/releases/download/V2.1/KevinsUTY.zip",
"folderName": "KevinsUTY",
- "version": "1.0.0",
+ "version": "2.1.0",
"automatic-version-check": false
+
}
+
diff --git a/mods/SNC@UTY/thumbnail.jpg b/mods/SNC@UTY/thumbnail.jpg
index bdfdc1de..c4773823 100644
Binary files a/mods/SNC@UTY/thumbnail.jpg and b/mods/SNC@UTY/thumbnail.jpg differ
diff --git a/mods/SadCube@ArtBox/description.md b/mods/SadCube@ArtBox/description.md
new file mode 100644
index 00000000..9ee6ebfb
--- /dev/null
+++ b/mods/SadCube@ArtBox/description.md
@@ -0,0 +1 @@
+An art themed mod adding all kinds of stuff! Especially new ways of modifying playing cards.
\ No newline at end of file
diff --git a/mods/SadCube@ArtBox/meta.json b/mods/SadCube@ArtBox/meta.json
new file mode 100644
index 00000000..54ad59fe
--- /dev/null
+++ b/mods/SadCube@ArtBox/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "ArtBox",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "SadCube",
+ "repo": "https://github.com/SadCubeArt/ArtBox",
+ "downloadURL": "https://github.com/SadCubeArt/ArtBox/archive/refs/heads/main.zip",
+ "version": "0eeff95",
+ "automatic-version-check": true,
+ "last-updated": 1761658121
+}
diff --git a/mods/SamTB@BalatroGardens/description.md b/mods/SamTB@BalatroGardens/description.md
new file mode 100644
index 00000000..84959662
--- /dev/null
+++ b/mods/SamTB@BalatroGardens/description.md
@@ -0,0 +1,2 @@
+# Balatro Gardens
+A Balatro mod themed around the Ghost Gardens album by Unlike Pluto. This mod adds a new joker rarity and 16 new items of content, 15 of which are based on the songs in the album.
\ No newline at end of file
diff --git a/mods/SamTB@BalatroGardens/meta.json b/mods/SamTB@BalatroGardens/meta.json
new file mode 100644
index 00000000..1d14f799
--- /dev/null
+++ b/mods/SamTB@BalatroGardens/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Balatro Gardens",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "SamTB",
+ "repo": "https://github.com/samtabareh/Balatro-Gardens",
+ "downloadURL": "https://github.com/samtabareh/Balatro-Gardens/archive/refs/heads/main.zip",
+ "folderName": "BalatroGardens",
+ "version": "952c0ba",
+ "automatic-version-check": true,
+ "last-updated": 1760908442
+}
diff --git a/mods/SamTB@BalatroGardens/thumbnail.jpg b/mods/SamTB@BalatroGardens/thumbnail.jpg
new file mode 100644
index 00000000..ab212f98
Binary files /dev/null and b/mods/SamTB@BalatroGardens/thumbnail.jpg differ
diff --git a/mods/SebasContre@Sebalatro/description.md b/mods/SebasContre@Sebalatro/description.md
new file mode 100644
index 00000000..0c79900b
--- /dev/null
+++ b/mods/SebasContre@Sebalatro/description.md
@@ -0,0 +1,3 @@
+# Sebalatro
+A simple mod for me and some friends, add some spanish speaking Vtubers as face cards as collabs to the game.
+Starts with just a few cards added, but more will be adding weekly until we have the full set (King, Queen, and Jack of each suit).
\ No newline at end of file
diff --git a/mods/SebasContre@Sebalatro/meta.json b/mods/SebasContre@Sebalatro/meta.json
new file mode 100644
index 00000000..47338a5b
--- /dev/null
+++ b/mods/SebasContre@Sebalatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Sebalatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "SebasContre",
+ "repo": "https://github.com/sebascontre/sebalatro",
+ "downloadURL": "https://github.com/sebascontre/sebalatro/archive/refs/heads/main.zip",
+ "folderName": "Sebalatro",
+ "automatic-version-check": true,
+ "version": "6d5f81d",
+ "last-updated": 1761344176
+}
diff --git a/mods/SebasContre@Sebalatro/thumbnail.jpg b/mods/SebasContre@Sebalatro/thumbnail.jpg
new file mode 100644
index 00000000..85e0f0bb
Binary files /dev/null and b/mods/SebasContre@Sebalatro/thumbnail.jpg differ
diff --git a/mods/Shenanigans@ShenanigansDecks/description.md b/mods/Shenanigans@ShenanigansDecks/description.md
new file mode 100644
index 00000000..83a4c169
--- /dev/null
+++ b/mods/Shenanigans@ShenanigansDecks/description.md
@@ -0,0 +1,40 @@
+# Shenanigans's Decks
+This mod currently adds 15 decks to the game (and 15 corresponding sleeves with unique effects, if using CardSleeves). You can either discover the effects yourself or read below for each deck's description.
+
+5 decks are themed after the legendary jokers:
+ - **Canio Deck**: Discarded cards have a 1 in 7 (increasable by Oops! All 6s) chance to be destroyed.
+ - **Triboulet Deck**: Retrigger all Kings and Queens.
+ - **Yorick Deck**: Discarded cards trigger their end of round effects. This works with Mime/Red Seal.
+ - **Chicot Deck**: During the Boss Blind, your rightmost Joker triggers an additional time.
+ - **Perkeo Deck**: After using four consumables, get a negative copy of one of them (chosen randomly).
+
+The other current decks are themed after existing jokers/vouchers:
+ - **Dusk Deck**: -1 hand per round, but each final hand is retriggered twice.
+ - **Gros Michel Deck**: The leftmost non-eternal Joker has a 1 in 6 chance to be destroyed at end of round. Start with a Gros Michel.
+ - **Hieroglyph Deck**: Start at ante 0, but must reach ante 10 to win.
+ - **Freaky Deck**: Jokers are now freaky. (Each Joker is assigned as a 'Freaky 6', or 'Freaky 9'. After scoring, any 'Freaky 6' adjacent to a 'Freaky 9' gives 1.5x mult)
+ - **Showman Deck**: Allows duplicate cards to appear, increases odds of that happening (every card generation has a chance to take from the pool of eligible cards you have instead of the regular pool)
+ - **Snakeskin Deck**: After play or discard, always draw 3 cards (constant effect of The Serpent boss blind).
+ - **Turtle Bean Deck**: +5 hand size, this bonus decreases by 1 after each discard/hand played. Resets after defeating the Boss Blind.
+ - **Cartomancer Deck**: Create a specific Tarot card when Blind is selected, changes each Ante (so you essentially get 3 copies of it per Ante if you don't skip).
+ - **Diplopia Deck**: Start with 2 copies of each card.
+ - **Riff-raff Deck**: Start with ANY random eternal joker. (instead of taking pool weights into consideration every joker has equal odds of appearing, including legendaries!) (the joker needs to have eternal compat)
+
+There is support for Card Sleeves! Every deck has its associated sleeve with an unique effect when using it with that deck. Sleeve unique effects are:
+ - **Canio Sleeve**: +1 hand size for every 5 cards destroyed.
+ - **Triboulet Sleeve**: Jacks are converted into Kings or Queens (chosen randomly) (jacks effectively never appear).
+ - **Yorick Sleeve**: After playing 2 hands, gain 1 discard.
+ - **Chicot Sleeve**: Prevent death during the Boss Blind (once per run).
+ - **Perkeo Sleeve**: The fourth consumable will always be the one copied.
+ - **Dusk Sleeve**: -1 hand per round, each played card is retriggered once.
+ - **Gros Michel Sleeve**: The 2nd leftmost non-eternal Joker has a 1 in 6 chance to be destroyed at end of round. +1 Joker Slot
+ - **Hieroglyph Sleeve**: Start at ante -1, blind size increases by x0.2 each Ante.
+ - **Freaky Sleeve**: Jokers are now freakier. (They can be assigned numbers from 0 to 9, and if adjacent jokers' numbers are ascending you get the bonus. You can also go for the 420 bonus...)
+ - **Showman Sleeve**: Booster Packs always contain a card you own, if possible. (currently very likely doesn't work for modded booster packs)
+ - **Snakeskin Sleeve**: Rerolling adds a card to the shop instead of replacing existing cards.
+ - **Turtle Bean Sleeve**: +1 shop slots, -1 shop slots at the end of the shop. Resets after the Boss Blind.
+ - **Cartomancer Sleeve**: Tarot cards you get have a 1 in 3 chance to become Negative.
+ - **Diplopia Sleeve**: +1 Joker Slot. When you get a Joker, duplicate it. When a Joker is sold or destroyed, destroy all copies of it.
+ - **Riff-raff Sleeve**: If the Joker from Riff-raff Deck has blueprint compat, get a copy of it. Otherwise, get ANY other random eternal Joker.
+
+Some deck textures taken from https://discord.com/channels/1116389027176787968/1238654488131272729
diff --git a/mods/Shenanigans@ShenanigansDecks/meta.json b/mods/Shenanigans@ShenanigansDecks/meta.json
new file mode 100644
index 00000000..a6732129
--- /dev/null
+++ b/mods/Shenanigans@ShenanigansDecks/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Shenanigans's Decks",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Shenanigans",
+ "repo": "https://github.com/ShenanigansBunul/balatro-shenanigans-decks",
+ "downloadURL": "https://github.com/ShenanigansBunul/balatro-shenanigans-decks/archive/refs/tags/1.1.2.zip",
+ "version": "1.1.2",
+ "automatic-version-check": true,
+ "last-updated": 1760998546
+}
diff --git a/mods/Shenanigans@ShenanigansDecks/thumbnail.jpg b/mods/Shenanigans@ShenanigansDecks/thumbnail.jpg
new file mode 100644
index 00000000..d1f4a1a5
Binary files /dev/null and b/mods/Shenanigans@ShenanigansDecks/thumbnail.jpg differ
diff --git a/mods/SimplyRanAShotist@IsraeliStreamerMod/description.md b/mods/SimplyRanAShotist@IsraeliStreamerMod/description.md
new file mode 100644
index 00000000..2d703a05
--- /dev/null
+++ b/mods/SimplyRanAShotist@IsraeliStreamerMod/description.md
@@ -0,0 +1 @@
+Play your fav streamers jokers!
\ No newline at end of file
diff --git a/mods/SimplyRanAShotist@IsraeliStreamerMod/meta.json b/mods/SimplyRanAShotist@IsraeliStreamerMod/meta.json
new file mode 100644
index 00000000..b7479de2
--- /dev/null
+++ b/mods/SimplyRanAShotist@IsraeliStreamerMod/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Israeli Streamer Mod",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content"],
+ "author": "SimplyRan & Shotist",
+ "repo": "https://github.com/SimplyRan/IsraeliStreamerMod",
+ "downloadURL": "https://github.com/SimplyRan/IsraeliStreamerMod/releases/download/v1/IsraelStreamerMod.zip",
+ "folderName": "IsraeliStreamerMod",
+ "version": "1.0.0",
+ "automatic-version-check": false
+}
diff --git a/mods/SirMaiquis@Baldatro/description.md b/mods/SirMaiquis@Baldatro/description.md
new file mode 100644
index 00000000..d709b687
--- /dev/null
+++ b/mods/SirMaiquis@Baldatro/description.md
@@ -0,0 +1,26 @@
+# Baldatro Mod for Balatro
+
+Baldatro is a mod that makes all the jokers bald, thats it, enjoy!
+
+## Features
+
+- **Makes almost all Jokers bald**: Thats it, not much to say.
+
+## Installation
+
+To install the "Baldatro" mod, follow these steps:
+
+1. This mod requires [Steamodded](https://github.com/Steamodded/smods).
+2. Just the download the "Baldatro-vx.zip" file from releases of the mod and extract it in your C:\Users\\AppData\Roaming\Balatro\Mods or %appdata%\Balatro\Mods directory.
+
+## Support
+
+If you encounter any problems or have questions, please open an issue in this repository. Feedback and suggestions are always appreciated!
+
+Thank you for using or contributing to the Stickers Always Shown mod!
+
+## Contributors
+
+Special thanks to the mod contributors:
+
+- [@SirMaiquis](https://github.com/SirMaiquis) - Main developer and maintainer of the mod.
diff --git a/mods/SirMaiquis@Baldatro/meta.json b/mods/SirMaiquis@Baldatro/meta.json
new file mode 100644
index 00000000..7a333f71
--- /dev/null
+++ b/mods/SirMaiquis@Baldatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Baldatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs",
+ "Joker"
+ ],
+ "author": "SirMaiquis",
+ "repo": "https://github.com/SirMaiquis/Balatro-Baldatro",
+ "downloadURL": "https://github.com/SirMaiquis/Balatro-Baldatro/releases/latest/download/Baldatro.zip",
+ "folderName": "Baldatro",
+ "automatic-version-check": true,
+ "version": "v1.2.0"
+}
diff --git a/mods/SirMaiquis@Baldatro/thumbnail.jpg b/mods/SirMaiquis@Baldatro/thumbnail.jpg
new file mode 100644
index 00000000..5369e9eb
Binary files /dev/null and b/mods/SirMaiquis@Baldatro/thumbnail.jpg differ
diff --git a/mods/SirMaiquis@TagManager/description.md b/mods/SirMaiquis@TagManager/description.md
new file mode 100644
index 00000000..f62a4601
--- /dev/null
+++ b/mods/SirMaiquis@TagManager/description.md
@@ -0,0 +1,28 @@
+# Tag Manager Mod for Balatro
+
+Tag Manager is a mod to control tags in the game, you can manage the Ante when they can start appearing!
+
+## Features
+
+- **Control when tags appear**: Configure at which Ante level specific tags start appearing in your runs, giving you more control over game progression and strategy.
+
+## Installation
+
+To install the "Tag Manager" mod, follow these steps:
+
+1. This mod requires [Steamodded](https://github.com/Steamodded/smods).
+2. Just the download the "Tag Manager-vx.zip" file from releases of the mod and extract it in your C:\Users\\AppData\Roaming\Balatro\Mods or %appdata%\Balatro\Mods directory.
+
+## Support
+
+If you encounter any problems or have questions, please open an issue in this repository. Feedback and suggestions are always appreciated!
+
+Thank you for using or contributing to the Tag manager mod!
+
+## Contributors
+
+Special thanks to the mod contributors:
+
+- [@SirMaiquis](https://github.com/SirMaiquis) - Main developer and maintainer of the mod.
+
+
\ No newline at end of file
diff --git a/mods/SirMaiquis@TagManager/meta.json b/mods/SirMaiquis@TagManager/meta.json
new file mode 100644
index 00000000..44a3eb68
--- /dev/null
+++ b/mods/SirMaiquis@TagManager/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "TagManager",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life",
+ "Miscellaneous"
+ ],
+ "author": "SirMaiquis",
+ "repo": "https://github.com/SirMaiquis/Balatro-TagManager",
+ "downloadURL": "https://github.com/SirMaiquis/Balatro-TagManager/releases/latest/download/TagManager.zip",
+ "folderName": "TagManager",
+ "automatic-version-check": true,
+ "version": "v1.2.0"
+}
diff --git a/mods/SirMaiquis@TagManager/thumbnail.jpg b/mods/SirMaiquis@TagManager/thumbnail.jpg
new file mode 100644
index 00000000..344f0156
Binary files /dev/null and b/mods/SirMaiquis@TagManager/thumbnail.jpg differ
diff --git a/mods/SkywardTARDIS@ReverseTarotHijinks/meta.json b/mods/SkywardTARDIS@ReverseTarotHijinks/meta.json
index 1cdc50c2..248ab04e 100644
--- a/mods/SkywardTARDIS@ReverseTarotHijinks/meta.json
+++ b/mods/SkywardTARDIS@ReverseTarotHijinks/meta.json
@@ -10,5 +10,5 @@
"downloadURL": "https://github.com/SkywardTARDIS/balatro_reverse_tarots/archive/refs/heads/master.zip",
"folderName": "reverse_tarot",
"automatic-version-check": true,
- "version": "0e3dd38"
+ "version": "60978ac"
}
diff --git a/mods/SleepyG11@HandyBalatro/description.md b/mods/SleepyG11@HandyBalatro/description.md
index 5ac79ba6..cad58914 100644
--- a/mods/SleepyG11@HandyBalatro/description.md
+++ b/mods/SleepyG11@HandyBalatro/description.md
@@ -1,18 +1,15 @@
-Handy - a lovely mod which adds a bunch of new controls designed to make playing Balatro much easier.
-Especially useful with other mods where using or selling thousands of cards and opening hundreds of booster packs is a common gameplay.
-Key features
+Handy - a lovely mod which adds new controls and keybinds to the game
+designed for faster and easier playing Vanilla and Modded Balatro.
- Keybinds for common buttons: "Play", "Discard", "Reroll shop", "Leave shop", "Skip Booster pack", "Skip blind", "Select blind", "Sort hand by rank/suit", "Deselect hand", "Cash out", "Run info", "View deck", "Deck preview";
- Highlight cards in hand on hover + keybind for highlight entire hand;
- Keybinds to move highlight/card in card areas: Jokers, Consumabled, Shop, Booster packs, etc;
- Hold keybinds to quick buy/sell/use cards + unsafe versions for maximum speed;
- In-game ability to adjust game speed (from x1/512 to x512);
- Mods support:
- Not Just Yet: keybind for "End round" button;
- Nopeus: In-game ability to adjust "Fast-Forward" setting (from "Off" to "Unsafe");
- For keybindsб "On press" or "On release" trigger mode can be selected.
- Each feature can be toggled and/or reassigned to any keyboard buttons, mouse buttons and mouse wheel
- No run or game restarts required.
- All listed controls and assigned keybinds listed in mod settings.
- Unsafe controls designed to be speed-first, which can cause bugs/crashes.
- Needs to be enabled separately in mod settings.
+- Vanilla-friendly: no new run required; stability is priority, safe for use in base game and Multiplayer;
+- Works without Steamodded: but included supports for variety of different mods (NotJustYet, Nopeus, Cryptid);
+- Fast hand selection: highlight cards just by hovering them;
+- Keybinds for all vanilla buttons and actions: play, discard, hand sorting, cash out, shop reroll, view deck, and more;
+- Game speed: adjust game speed up to x512 in-run;
+- Animation skip: instant scoring and removing unnecessary animations to speedup game even further;
+- Quick Buy/Sell/Use: controls to buy, sell or use cards faster;
+- Selection movement: more precise management on large amoung of jokers or consumables;
+- Full control: each feature can be disabled/enabled individually, each keybind can be reassigned to any keyboard or mouse button;
+- Gamepad support: most features can be used with gamepad aswell;
+- Presets: save up to 3 mod settings layouts and switch between them in-run to have more freedom with limited amount of buttons;
+- ...and more!
diff --git a/mods/SleepyG11@HandyBalatro/meta.json b/mods/SleepyG11@HandyBalatro/meta.json
index d7493bf7..9b1c2492 100644
--- a/mods/SleepyG11@HandyBalatro/meta.json
+++ b/mods/SleepyG11@HandyBalatro/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/SleepyG11/HandyBalatro",
"downloadURL": "https://github.com/SleepyG11/HandyBalatro/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "edc5735"
+ "version": "7344660",
+ "last-updated": 1762514094
}
diff --git a/mods/SleepyG11@HandyBalatro/thumbnail.jpg b/mods/SleepyG11@HandyBalatro/thumbnail.jpg
new file mode 100644
index 00000000..a74d0c66
Binary files /dev/null and b/mods/SleepyG11@HandyBalatro/thumbnail.jpg differ
diff --git a/mods/Somethingcom515@SealsOnEverything/meta.json b/mods/Somethingcom515@SealsOnEverything/meta.json
index 80409555..b55e4b65 100644
--- a/mods/Somethingcom515@SealsOnEverything/meta.json
+++ b/mods/Somethingcom515@SealsOnEverything/meta.json
@@ -11,5 +11,5 @@
"downloadURL": "https://github.com/Somethingcom515/SealsOnJokers/archive/refs/heads/main.zip",
"folderName": "SealsOnEverything",
"automatic-version-check": true,
- "version": "de31ef4"
+ "version": "8b78702"
}
diff --git a/mods/Somethingcom515@Yorick/description.md b/mods/Somethingcom515@Yorick/description.md
new file mode 100644
index 00000000..d0734e51
--- /dev/null
+++ b/mods/Somethingcom515@Yorick/description.md
@@ -0,0 +1,2 @@
+# Yorick
+A simple non-consumable stacking mod heavily built on Overflow
diff --git a/mods/Somethingcom515@Yorick/meta.json b/mods/Somethingcom515@Yorick/meta.json
new file mode 100644
index 00000000..d3c61553
--- /dev/null
+++ b/mods/Somethingcom515@Yorick/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Yorick",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "Somethingcom515",
+ "repo": "https://github.com/Somethingcom515/Yorick",
+ "downloadURL": "https://github.com/Somethingcom515/Yorick/archive/refs/heads/main.zip",
+ "folderName": "Yorick",
+ "automatic-version-check": true,
+ "version": "8e5fdff"
+}
diff --git a/mods/Sonfive@PokermonPlus/description.md b/mods/Sonfive@PokermonPlus/description.md
new file mode 100644
index 00000000..774e6164
--- /dev/null
+++ b/mods/Sonfive@PokermonPlus/description.md
@@ -0,0 +1 @@
+An add-on for Pokermon, which adds Pokemon that aren't in Pokermon yet, as well as new Decks that explore some of the unique parts of the Pokermon mod
\ No newline at end of file
diff --git a/mods/Sonfive@PokermonPlus/meta.json b/mods/Sonfive@PokermonPlus/meta.json
new file mode 100644
index 00000000..1482b9fe
--- /dev/null
+++ b/mods/Sonfive@PokermonPlus/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Pokermon+",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Sonfive",
+ "repo": "https://github.com/SonfiveTV/PokermonPlus",
+ "downloadURL": "https://github.com/SonfiveTV/PokermonPlus/archive/refs/heads/main.zip",
+ "folderName": "PokermonPlus",
+ "version": "358e44a",
+ "automatic-version-check": true,
+ "last-updated": 1762719459
+}
diff --git a/mods/Sonfive@PokermonPlus/thumbnail.jpg b/mods/Sonfive@PokermonPlus/thumbnail.jpg
new file mode 100644
index 00000000..a5775e2c
Binary files /dev/null and b/mods/Sonfive@PokermonPlus/thumbnail.jpg differ
diff --git a/mods/SparklesRolf@Furlatro/description.md b/mods/SparklesRolf@Furlatro/description.md
new file mode 100644
index 00000000..a5ab680c
--- /dev/null
+++ b/mods/SparklesRolf@Furlatro/description.md
@@ -0,0 +1,39 @@
+# Furlatro. The Furry Balatro Mod!
+THE Furry modpack for balatro. A passion side project brought to life!
+
+Actively taking new submissions for custom Jokers! Join the [Discord](https://discord.gg/fCnxr4dWfh) to submit one! <3
+
+*Submissions are free, but may have applicable fine print
+
+# Additions
+Introduces 20 Furry Jokers, each with unique effects!
+
+Adds a new rarity: Mythic! These are ultra powerful jokers
+that can elevate your score to new heights
+
+# Cross-Mod Content
+Cross-Mod Joker effects (More may release in the future!)
+
+* Current Cross-Mod Content
+ * [Cryptid](https://github.com/SpectralPack/Cryptid) (1 Joker)
+ * [Talisman](https://github.com/SpectralPack/Talisman) (4 Jokers)
+
+There are currently a few additions that have gameplay/QoL changes related to other mods, listed below!
+* [CardSleeves](https://github.com/larswijn/CardSleeves) [*Requires v1.7.8+*](https://github.com/larswijn/CardSleeves/releases/tag/v1.7.8)
+* [JokerDisplay](https://github.com/nh6574/JokerDisplay) [*Requires v1.4.8.2+*](https://github.com/nh6574/JokerDisplay/releases/tag/v1.8.4.2)
+
+# Requirements
+Requires the [minimum](https://github.com/Steamodded/smods/releases/tag/1.0.0-beta-0530b) or [latest](https://github.com/Steamodded/smods/releases/latest) version of steammodded!
+
+# Notes
+With Furlatro v1.1.0 and later, [Talisman](https://github.com/SpectralPack/Talisman/releases/latest) is no longer required
+for the mod to function, but is still reccomended!
+
+With v1.1.0 releasing, I'm happy to announce that I'm planning on hosting a tournament for 4 custom jokers in the future! Details are yet to be compiled
+but will announce details here and in the [Discord](https://discord.gg/fCnxr4dWfh) server when thay are ready! Date of the event is planned to be around
+Halloween week (Week of the 31st of October) but could be earlier or later! Please tell your floofy friends to hop on in and compete with other floofs as
+I would like to have at least 8 players participate in the tournament <3
+
+
+
+
diff --git a/mods/SparklesRolf@Furlatro/meta.json b/mods/SparklesRolf@Furlatro/meta.json
new file mode 100644
index 00000000..16e8acd8
--- /dev/null
+++ b/mods/SparklesRolf@Furlatro/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Furlatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "SparklesRolf",
+ "repo": "https://github.com/SparklesRolf/Furlatro",
+ "downloadURL": "https://github.com/SparklesRolf/Furlatro/releases/latest/download/Furlatro.zip",
+ "folderName": "Furlatro",
+ "version": "v1.1.3",
+ "automatic-version-check": true,
+ "last-updated": 1762096515
+}
diff --git a/mods/SparklesRolf@Furlatro/thumbnail.jpg b/mods/SparklesRolf@Furlatro/thumbnail.jpg
new file mode 100644
index 00000000..ce0618f9
Binary files /dev/null and b/mods/SparklesRolf@Furlatro/thumbnail.jpg differ
diff --git a/mods/Squidguset@TooManyDecks/meta.json b/mods/Squidguset@TooManyDecks/meta.json
index 0f6438f2..c0e95a52 100644
--- a/mods/Squidguset@TooManyDecks/meta.json
+++ b/mods/Squidguset@TooManyDecks/meta.json
@@ -9,6 +9,7 @@
"repo": "https://github.com/Squidguset/TooManyDecks",
"downloadURL": "https://github.com/Squidguset/TooManyDecks/archive/refs/heads/main.zip",
"folderName": "TooManyDecks",
- "version": "8098d0c",
- "automatic-version-check": true
+ "version": "4941963",
+ "automatic-version-check": true,
+ "last-updated": 1757121283
}
diff --git a/mods/StarletDevil@AzzysJokers/meta.json b/mods/StarletDevil@AzzysJokers/meta.json
index b1df9e9a..8f5e80df 100644
--- a/mods/StarletDevil@AzzysJokers/meta.json
+++ b/mods/StarletDevil@AzzysJokers/meta.json
@@ -8,7 +8,7 @@
],
"author": "Starlet Devil",
"repo": "https://github.com/AstrumNativus/AzzysJokers",
- "downloadURL": "https://github.com/AstrumNativus/AzzysJokers/archive/refs/tags/v2.0.0.zip",
+ "downloadURL": "https://github.com/AstrumNativus/AzzysJokers/archive/refs/tags/v2.0.1.zip",
"automatic-version-check": true,
- "version": "v2.0.0"
+ "version": "v2.0.1"
}
diff --git a/mods/Steamodded@smods/meta.json b/mods/Steamodded@smods/meta.json
index 556059f8..b877bd84 100644
--- a/mods/Steamodded@smods/meta.json
+++ b/mods/Steamodded@smods/meta.json
@@ -7,7 +7,8 @@
],
"author": "Steamodded",
"repo": "https://github.com/Steamodded/smods",
- "downloadURL": "https://github.com/Steamodded/smods/archive/refs/heads/main.zip",
+ "downloadURL": "https://github.com/Steamodded/smods/archive/refs/tags/1.0.0-beta-1016c.zip",
"automatic-version-check": true,
- "version": "b20bf5d"
+ "version": "1.0.0-beta-1016c",
+ "last-updated": 1760652796
}
diff --git a/mods/Stellr@FearsAndPhobias/description.md b/mods/Stellr@FearsAndPhobias/description.md
new file mode 100644
index 00000000..efd59432
--- /dev/null
+++ b/mods/Stellr@FearsAndPhobias/description.md
@@ -0,0 +1,3 @@
+A Balatro mod that adds custom jokers, consumables, and more that relates to fears and phobias.
+
+There are currently more than 36 Jokers, 7 Consumables, and 3 Enhancements.
diff --git a/mods/Stellr@FearsAndPhobias/meta.json b/mods/Stellr@FearsAndPhobias/meta.json
new file mode 100644
index 00000000..8e3f272c
--- /dev/null
+++ b/mods/Stellr@FearsAndPhobias/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Fears & Phobias",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Stellr",
+ "repo": "https://github.com/StellrVR/fears-phobias",
+ "downloadURL": "https://github.com/StellrVR/fears-phobias/releases/latest/download/fearsphobias.zip",
+ "folderName": "FearsPhobias",
+ "version": "v1.2.1",
+ "automatic-version-check": true
+}
diff --git a/mods/Survivalaiden@AllinJest/description.md b/mods/Survivalaiden@AllinJest/description.md
index 883b45de..f6639491 100644
--- a/mods/Survivalaiden@AllinJest/description.md
+++ b/mods/Survivalaiden@AllinJest/description.md
@@ -1,12 +1,16 @@
-All in Jest is a mod that hopes to provide a fun balatro experience while keeping things varied and balanced
+All in Jest is a mod which provides a fun and unique balatro experience that expands the Balatro mechanics while keeping things varied and balanced
# Content
The mod currently adds:
-- 65 Jokers, 5 of which being Legendary
+- 200 Jokers, 30 of which being Legendary
+- 5 Tarot Cards
+- 2 New Enhancements and 2 new Editions
- 24 "Moon" Planet cards, which upgrade the base hands by double their normal amount on chips or mult, but have no effect on the other. Also supports [Bunco](https://github.com/jumbocarrot0/Bunco) and [Paperback](https://github.com/Balatro-Paperback/paperback) for their Spectrum Hands
-- 4 new Spectrals
-- A new Enhancement, Tarot Card, and Tag
+- 4 Spectrals
+- 6 Tags
+- A Legendary-themed Deck
+- A very Rare legendary Booster Pack
- Way more to come!
# Requirements
@@ -15,4 +19,4 @@ The mod currently adds:
# Credits
- All art is by by Nevernamed
-- Programming by Survivalaiden
+- Programming by Survivalaiden and RattlingSnow
diff --git a/mods/Survivalaiden@AllinJest/meta.json b/mods/Survivalaiden@AllinJest/meta.json
index b246e64c..269c02b9 100644
--- a/mods/Survivalaiden@AllinJest/meta.json
+++ b/mods/Survivalaiden@AllinJest/meta.json
@@ -7,8 +7,8 @@
],
"author": "Survivalaiden",
"repo": "https://github.com/survovoaneend/All-In-Jest",
- "downloadURL": "https://github.com/survovoaneend/All-In-Jest/archive/refs/tags/0.5.0-pre-beta.4-hotfix.zip",
+ "downloadURL": "https://github.com/survovoaneend/All-In-Jest/archive/refs/tags/0.5.2b.zip",
"folderName": "All-In-Jest",
"automatic-version-check": true,
- "version": "0.5.0-pre-beta.4-hotfix"
+ "version": "0.5.2b"
}
diff --git a/mods/Survivalaiden@AllinJest/thumbnail.jpg b/mods/Survivalaiden@AllinJest/thumbnail.jpg
index 4b73b89a..53b74c36 100644
Binary files a/mods/Survivalaiden@AllinJest/thumbnail.jpg and b/mods/Survivalaiden@AllinJest/thumbnail.jpg differ
diff --git a/mods/TOGAPack@TheOneGoofAli/meta.json b/mods/TOGAPack@TheOneGoofAli/meta.json
index b3640075..88a60fd5 100644
--- a/mods/TOGAPack@TheOneGoofAli/meta.json
+++ b/mods/TOGAPack@TheOneGoofAli/meta.json
@@ -8,7 +8,8 @@
],
"author": "TheOneGoofAli",
"repo": "https://github.com/TheOneGoofAli/TOGAPackBalatro",
- "downloadURL": "https://github.com/TheOneGoofAli/TOGAPackBalatro/archive/refs/heads/main.zip",
+ "downloadURL": "https://github.com/TheOneGoofAli/TOGAPackBalatro/archive/refs/tags/1.11.1a.zip",
"automatic-version-check": true,
- "version": "c8200fe"
+ "version": "1.11.1a",
+ "last-updated": 1762035293
}
diff --git a/mods/TamerSoup625@HighestPriestess/meta.json b/mods/TamerSoup625@HighestPriestess/meta.json
index 2ab08c27..6e29c4af 100644
--- a/mods/TamerSoup625@HighestPriestess/meta.json
+++ b/mods/TamerSoup625@HighestPriestess/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/TamerSoup625/balatro-highest-priestess",
"downloadURL": "https://github.com/TamerSoup625/balatro-highest-priestess/archive/refs/heads/main.zip",
"folderName": "HighestPriestess",
- "version": "8d004f1",
+ "version": "14177db",
"automatic-version-check": true
}
diff --git a/mods/TeamToaster@Plantain/meta.json b/mods/TeamToaster@Plantain/meta.json
index 2e0eda28..1782d1a2 100644
--- a/mods/TeamToaster@Plantain/meta.json
+++ b/mods/TeamToaster@Plantain/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/IcebergLettuce0/Plantain",
"downloadURL": "https://github.com/IcebergLettuce0/Plantain/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "541d16b"
+ "version": "df89d68",
+ "last-updated": 1762392153
}
diff --git a/mods/Th30ne@GrabBag/description.md b/mods/Th30ne@GrabBag/description.md
new file mode 100644
index 00000000..833cef38
--- /dev/null
+++ b/mods/Th30ne@GrabBag/description.md
@@ -0,0 +1,11 @@
+# Grab Bag
+Grab Bag is a Balatro mod that (as of v0.4.11) adds:
+- 46 (+8) Jokers
+- 3 Tarots
+- 1 Spectral
+- 3 Enhancements
+- 15 Boss Blinds
+- 5 Showdown Boss Blinds
+- and 4 Decks.
+
+The content in this mod is supposed to feel vanilla, and I created this new content to be largely in line with the rules and design philosophy that localthunk follows when making Jokers and other content.
diff --git a/mods/Th30ne@GrabBag/meta.json b/mods/Th30ne@GrabBag/meta.json
new file mode 100644
index 00000000..228d5862
--- /dev/null
+++ b/mods/Th30ne@GrabBag/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Grab Bag",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Th30ne",
+ "repo": "https://github.com/thefaketh30ne/grab-bag",
+ "downloadURL": "https://github.com/thefaketh30ne/grab-bag/archive/refs/heads/main.zip",
+ "folderName": "GrabBag",
+ "automatic-version-check": true,
+ "version": "ae98dc7",
+ "last-updated": 1760847643
+}
diff --git a/mods/Th30ne@GrabBag/thumbnail.jpg b/mods/Th30ne@GrabBag/thumbnail.jpg
new file mode 100644
index 00000000..18d4155f
Binary files /dev/null and b/mods/Th30ne@GrabBag/thumbnail.jpg differ
diff --git a/mods/TheMotherfuckingBearodactyl@Insolence/meta.json b/mods/TheMotherfuckingBearodactyl@Insolence/meta.json
index 1a25f7bd..62edf1fe 100644
--- a/mods/TheMotherfuckingBearodactyl@Insolence/meta.json
+++ b/mods/TheMotherfuckingBearodactyl@Insolence/meta.json
@@ -7,8 +7,9 @@
],
"author": "The Motherfucking Bearodactyl",
"repo": "https://github.com/thebearodactyl/insolence-balatro",
- "downloadURL": "https://github.com/thebearodactyl/insolence-balatro/archive/refs/tags/1.1.0.zip",
+ "downloadURL": "https://github.com/thebearodactyl/insolence-balatro/archive/refs/tags/2.1.6.zip",
"folderName": "Insolence",
- "version": "1.1.0",
- "automatic-version-check": true
+ "version": "2.1.6",
+ "automatic-version-check": true,
+ "last-updated": 1757553458
}
diff --git a/mods/ToxicPlayer@Flushtro/description.md b/mods/ToxicPlayer@Flushtro/description.md
new file mode 100644
index 00000000..2f050de5
--- /dev/null
+++ b/mods/ToxicPlayer@Flushtro/description.md
@@ -0,0 +1,4 @@
+### (REQUIRES TALISMAN) (somewhat) Unbalanced and buggy mess i made in **Joker Forge**
+Mod contains:
+- Niche references
+- and other stuff im lazy to mention.
diff --git a/mods/ToxicPlayer@Flushtro/meta.json b/mods/ToxicPlayer@Flushtro/meta.json
new file mode 100644
index 00000000..29938dfd
--- /dev/null
+++ b/mods/ToxicPlayer@Flushtro/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Flushtro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "ToxicPlayer",
+ "repo": "https://github.com/N0tToxicPlayer/Flushtro",
+ "downloadURL": "https://github.com/N0tToxicPlayer/Flushtro/releases/latest/download/flushtro.zip",
+ "folderName": "Flushtro",
+ "version": "v4.1.1",
+ "automatic-version-check": true
+}
diff --git a/mods/ToxicPlayer@Flushtro/thumbnail.jpg b/mods/ToxicPlayer@Flushtro/thumbnail.jpg
new file mode 100644
index 00000000..09caf534
Binary files /dev/null and b/mods/ToxicPlayer@Flushtro/thumbnail.jpg differ
diff --git a/mods/Trif3ctal@LuckyRabbit/description.md b/mods/Trif3ctal@LuckyRabbit/description.md
index 2addcaa1..8c497358 100644
--- a/mods/Trif3ctal@LuckyRabbit/description.md
+++ b/mods/Trif3ctal@LuckyRabbit/description.md
@@ -1,15 +1,16 @@
-Lucky Rabbit is a Vanilla+ content mod that adds new Consumables, Jokers, Decks, a new Card modifier known as Markings, and more to expand upon the base game!
+Lucky Rabbit is a Vanilla+ content mod that adds a new Consumable type, Jokers, Decks, a new Card modifier known as Markings, and more to expand upon the base game!
# Additions
-The mod currently adds:
-- **21** new Silly Consumable cards
-- **23** fun new Jokers
+As of now, this mod adds:
+- **53** fun new Jokers
+- **24** new Silly consumable cards for effective deckfixing
- **3** brand-new card modifiers known as **Markings**
-- **12** upgraded and helpful Vouchers
+- **2** new Enhancements to expand your deck
+- **15** upgraded and helpful Vouchers
- **5** practical Decks
- **4** skip-worthy Tags
- **11** tough new Boss Blinds
-- **3** themed Friends of Jimbo-style card skins
+- **6** themed Friends of Jimbo-style card skins
This mod requires [Steamodded](https://github.com/Steamopollys/Steamodded) and [Lovely](https://github.com/ethangreen-dev/lovely-injector). Be sure to report any issues or feedback in the mod's [Discord thread](https://discord.com/channels/1116389027176787968/1342484578236895274)! A spreadsheet with planned and completed additions can be found [here](https://docs.google.com/spreadsheets/d/1-gmJJKUTY5EP2TqhpfTXqD-P1NzQQxCRvEpoFnwK72g/edit?gid=1809378509#gid=1809378509).
diff --git a/mods/Trif3ctal@LuckyRabbit/meta.json b/mods/Trif3ctal@LuckyRabbit/meta.json
index 7f7579c7..fad38af9 100644
--- a/mods/Trif3ctal@LuckyRabbit/meta.json
+++ b/mods/Trif3ctal@LuckyRabbit/meta.json
@@ -3,12 +3,14 @@
"requires-steamodded": true,
"requires-talisman": false,
"categories": [
- "Content"
+ "Content",
+ "Joker"
],
"author": "Fennex",
"repo": "https://github.com/Trif3ctal/Lucky-Rabbit",
"downloadURL": "https://github.com/Trif3ctal/Lucky-Rabbit/archive/refs/heads/main.zip",
"folderName": "LuckyRabbit",
"automatic-version-check": true,
- "version": "1e6f19b"
+ "version": "ba99192",
+ "last-updated": 1762478523
}
diff --git a/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg b/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg
index d384b4ac..b4b0852c 100644
Binary files a/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg and b/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg differ
diff --git a/mods/Virtualized@Multiplayer/description.md b/mods/Virtualized@Multiplayer/description.md
deleted file mode 100644
index 30baa1d0..00000000
--- a/mods/Virtualized@Multiplayer/description.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# A Balatro Multiplayer Mod
-
-Compete with your friends in Balatro! Developed by Virtualized.
-
-## How it works
-
-Join a lobby with a friend, some blinds will be replaced with PvP Blinds where you must score higher than your opponent or lose a life!
-
-## Do I need to start a server to play with my friends?
-
-No, there is an official server that you will automatically connect to when you start the game with the mod installed, although you can host one yourself if you want to ([download the server files here](https://github.com/V-rtualized/BalatroMultiplayerAPI-Server)). You can also find random people to play with by joining the Balatro Multiplayer discord: https://discord.gg/W22FEqVWsq
\ No newline at end of file
diff --git a/mods/Virtualized@Multiplayer/meta.json b/mods/Virtualized@Multiplayer/meta.json
deleted file mode 100644
index 05fba4fb..00000000
--- a/mods/Virtualized@Multiplayer/meta.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "title": "Multiplayer",
- "requires-steamodded": true,
- "requires-talisman": false,
- "categories": [
- "Content",
- "Technical",
- "Miscellaneous"
- ],
- "author": "Virtualized",
- "repo": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer",
- "downloadURL": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer/releases/latest/download/BalatroMultiplayer.zip",
- "folderName": "Multiplayer",
- "automatic-version-check": true,
- "version": "v0.2.10"
-}
diff --git a/mods/Virtualized@Multiplayer/thumbnail.jpg b/mods/Virtualized@Multiplayer/thumbnail.jpg
deleted file mode 100644
index 7ef01f37..00000000
Binary files a/mods/Virtualized@Multiplayer/thumbnail.jpg and /dev/null differ
diff --git a/mods/WUOTE@MagicSort/description.md b/mods/WUOTE@MagicSort/description.md
new file mode 100644
index 00000000..b085b51e
--- /dev/null
+++ b/mods/WUOTE@MagicSort/description.md
@@ -0,0 +1,20 @@
+# MagicSort
+
+MagicSort intelligently organizes your hand, saving you countless clicks during mid- to lategame.
+The mod adds a new sorting button to the menu.
+
+Here's the [demo of the mod on YouTube](https://www.youtube.com/watch?v=ojnt9M1gzCg)
+
+## Motivation
+
+I love Balatro but hate clicking, that's why I made this mod.
+
+## The MagicSort Algorithm
+
+### Cards in your hand get sorted like this:
+
+1. **Enhancement:** Lucky → Mult → Bonus → Wild → Steel → Glass → Gold → Stone
+2. **Edition:** Polychrome → Foil → Holographic → Base
+3. **Seal:** Red → Gold → Purple → Blue → None
+4. **Suit:** Spades → Hearts → Clubs → Diamonds
+5. **Rank:** King → Queen → Jack → Ace → 10 → 9 → 8 → 7 → 6 → 5 → 4 → 3 → 2
diff --git a/mods/WUOTE@MagicSort/meta.json b/mods/WUOTE@MagicSort/meta.json
new file mode 100644
index 00000000..12526e9b
--- /dev/null
+++ b/mods/WUOTE@MagicSort/meta.json
@@ -0,0 +1,13 @@
+{
+ "title": "MagicSort",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "WUOTE",
+ "repo": "https://github.com/acidflow-balatro/MagicSort",
+ "downloadURL": "https://github.com/acidflow-balatro/MagicSort/releases/latest/download/MagicSort.zip",
+ "automatic-version-check": true,
+ "version": "0.6.9"
+}
diff --git a/mods/WUOTE@MagicSort/thumbnail.jpg b/mods/WUOTE@MagicSort/thumbnail.jpg
new file mode 100644
index 00000000..3be98c3d
Binary files /dev/null and b/mods/WUOTE@MagicSort/thumbnail.jpg differ
diff --git a/mods/WilsontheWolf@DebugPlus/meta.json b/mods/WilsontheWolf@DebugPlus/meta.json
index 9132fc4c..1f454c25 100644
--- a/mods/WilsontheWolf@DebugPlus/meta.json
+++ b/mods/WilsontheWolf@DebugPlus/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/WilsontheWolf/DebugPlus",
"downloadURL": "https://github.com/WilsontheWolf/DebugPlus/releases/latest/download/DebugPlus.zip",
"automatic-version-check": true,
- "version": "v1.4.2"
+ "version": "v1.5.1"
}
diff --git a/mods/Yahiamice@Yahimod/description.md b/mods/Yahiamice@Yahimod/description.md
new file mode 100644
index 00000000..cdf1f857
--- /dev/null
+++ b/mods/Yahiamice@Yahimod/description.md
@@ -0,0 +1,5 @@
+# The Stupidest Balatro Mod on Earth!
+The YAHIMOD's a (somewhat unbalanced) mess of custom jokers, tarots and blinds, loosely themed around [Yahiamice](https://www.youtube.com/@YahiamiceLIVE) (yes, i'm self-centered) with several meta effects that stray from the base game; like throwing a wet trout at your screen or forcing the game speed to be 0.25x
+
+ # DISCLAIMER
+ I didn't build this mod with cross-mod compatibility in mind. Please don't report issues pertaining to crashes related to other mods, thank you.
\ No newline at end of file
diff --git a/mods/Yahiamice@Yahimod/meta.json b/mods/Yahiamice@Yahimod/meta.json
new file mode 100644
index 00000000..9c450b31
--- /dev/null
+++ b/mods/Yahiamice@Yahimod/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "YAHIMOD",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Yahiamice",
+ "repo": "https://github.com/Yahiamice/yahimod-balatro",
+ "downloadURL": "https://github.com/Yahiamice/yahimod-balatro/archive/refs/heads/master.zip",
+ "automatic-version-check": true,
+ "version": "aaffff5",
+ "folderName": "YAHIMOD",
+ "last-updated": 1759583928
+}
diff --git a/mods/Yahiamice@Yahimod/thumbnail.jpg b/mods/Yahiamice@Yahimod/thumbnail.jpg
new file mode 100644
index 00000000..ec2c65e8
Binary files /dev/null and b/mods/Yahiamice@Yahimod/thumbnail.jpg differ
diff --git a/mods/Yaminson@LuckySeven/description.md b/mods/Yaminson@LuckySeven/description.md
new file mode 100644
index 00000000..2ee3d872
--- /dev/null
+++ b/mods/Yaminson@LuckySeven/description.md
@@ -0,0 +1,15 @@
+# Lucky Seven
+
+Lucky Seven adds three new jokers with luck based mechanics.
+
+## Jokers
+
+| **Joker** | **Effect** | **Cost** | **Rarity** |
+| ----------|----------- | -------- | ---------- |
+| **Lucky Seven** | **1 in 7** chance to retrigger allplayed cards **2** additional times(**+1** chance for each scored **7**) | $7 | Uncommon |
+| **Loaded Die** | **Lucky** cards are guaranteed to trigger**1 in 4** chance to destroy **Lucky** card | $7 | Uncommon |
+| **Black Cat** | **1 in 3** chance to **destroy** a random**Joker** and then add **Negative**to a random **Joker** when**Boss Blind** is defeated | $7 | Rare |
+
+## Bonus Deck
+
+This mod also includes a "Lucky Deck" full of Lucky card 7's
diff --git a/mods/Yaminson@LuckySeven/meta.json b/mods/Yaminson@LuckySeven/meta.json
new file mode 100644
index 00000000..705bda1c
--- /dev/null
+++ b/mods/Yaminson@LuckySeven/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Lucky Seven",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Joker"
+ ],
+ "author": "Yaminson",
+ "repo": "https://github.com/JamesGiesbrecht/lucky-seven",
+ "downloadURL": "https://github.com/JamesGiesbrecht/lucky-seven/releases/latest/download/LuckySeven.zip",
+ "automatic-version-check": true,
+ "version": "v0.1.0",
+ "last-updated": 1758449736
+}
diff --git a/mods/Yaminson@LuckySeven/thumbnail.jpg b/mods/Yaminson@LuckySeven/thumbnail.jpg
new file mode 100644
index 00000000..7b448a03
Binary files /dev/null and b/mods/Yaminson@LuckySeven/thumbnail.jpg differ
diff --git a/mods/Zoker@ZokersModMenu/description.md b/mods/Zoker@ZokersModMenu/description.md
new file mode 100644
index 00000000..3b199cde
--- /dev/null
+++ b/mods/Zoker@ZokersModMenu/description.md
@@ -0,0 +1,87 @@
+# ZokersModMenu
+
+A comprehensive customization mod for Balatro that allows you to modify starting conditions, build custom decks, select starting jokers and vouchers, and much more. Compatible with Mika's Mod Collection for expanded joker selection.
+
+## Key Features
+
+### 🎮 Core Customization
+- **Starting Money**: Adjust your starting cash from $0 to $5000
+- **Starting Hands**: Set hands per round (1-25)
+- **Starting Discards**: Configure discards per round (0-25)
+- **Hand Size**: Customize hand size from 1-50 cards
+- **Hand Levels**: Set starting level for all poker hands (1-100)
+- **Free Rerolls**: Toggle unlimited shop rerolls
+- **Joker Slots**: Modify joker capacity (0-100)
+- **Consumable Slots**: Adjust consumable capacity (0-15)
+
+### 🃏 Advanced Deck Builder
+- **Custom Deck Creation**: Build decks with up to 104 cards
+- **Enhanced Cards**: Add enhancements (Bonus, Mult, Wild, Glass, Steel, Stone, Gold, Lucky)
+- **Sealed Cards**: Apply seals (Gold, Red, Blue, Purple)
+- **Card Editions**: Apply editions (Foil, Holographic, Polychrome)
+- **Deck Management**: Save and load custom deck configurations
+- **Proper Card Format**: Uses correct Balatro card IDs (H_2, S_A, etc.)
+
+### 🎯 Give System
+- **Give Items During Runs**: Enable/disable giving items while playing
+- **Give Money**: Add $10, $50, $100, or $1000 instantly
+- **Give Cards**: Create any playing card with custom properties
+- **Give Jokers**: Instantly add any joker (vanilla or Mika's)
+- **Give Consumables**: Add Tarot, Planet, or Spectral cards
+- **Give Vouchers**: Apply any voucher effect immediately
+
+### 🃏 Joker & Voucher Selection
+- **Starting Jokers**: Choose up to **30 copies** of any joker
+- **Starting Vouchers**: Select any vouchers to start with
+- **Mika's Integration**: Automatic detection and support for Mika's Mod Collection jokers
+- **Smart UI**: Color-coded selection and tabbed interface
+
+## Installation & Usage
+
+### Requirements
+- **Steamodded**: Version 0.9.8 or higher (auto-installed via dependency)
+- **Optional**: Mika's Mod Collection (for expanded joker selection)
+
+### Controls
+- **Press 'C'** anywhere in the game to toggle the menu (won't close other menus!)
+- **Console Commands**: Full console integration for precise control (F7)
+- **Hold Buttons**: Hold +/- for rapid value changes
+
+### Menu Features
+- **Non-Intrusive Toggle**: Fixed menu toggle that doesn't interfere with other game menus
+- **Modern UI**: Clean interface with contemporary styling
+- **Smart Card Placement**: Cards go to hand during rounds, deck when in shop
+- **Persistent Storage**: Save deck configurations and settings
+
+## Recent Updates (v1.4.8)
+
+### Critical Bug Fixes
+- **Menu Toggle Fixed**: Menu now properly toggles with 'C' key without interfering with other game menus
+- **Card ID Format Fixed**: Updated all card creation to use correct Balatro format
+- **Enhancement/Seal Cycling**: Fixed cycling functions to properly save and apply
+- **Improved Card Giving**: Better logic for where cards are placed when given
+
+### Technical Improvements
+- Added comprehensive debug logging
+- Enhanced UI stability with delays to prevent flickering
+- Simplified key handling for more reliable behavior
+- Consistent card ID formatting throughout
+
+## Console Commands Examples
+
+```lua
+cs_money(100) -- Set starting money to $100
+cs_hands(8) -- Set starting hands to 8
+cs_hand_size(12) -- Set hand size to 12 cards
+cs_add_joker('credit_card') -- Add Credit Card joker
+cs_add_voucher('overstock_norm') -- Add Overstock voucher
+cs_open() -- Open the mod menu
+```
+
+## Compatibility
+
+Fully compatible with Mika's Mod Collection and designed to work seamlessly with other Balatro mods. The mod includes automatic detection and integration features for enhanced compatibility.
+
+---
+
+*Customize your Balatro experience like never before! 🎲*
\ No newline at end of file
diff --git a/mods/Zoker@ZokersModMenu/meta.json b/mods/Zoker@ZokersModMenu/meta.json
new file mode 100644
index 00000000..ee3e8c99
--- /dev/null
+++ b/mods/Zoker@ZokersModMenu/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "ZokersModMenu",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Technical",
+ "Quality of Life",
+ "Content"
+ ],
+ "author": "Zoker",
+ "repo": "https://github.com/1Zoker/ZokersModMenu",
+ "downloadURL": "https://github.com/1Zoker/ZokersModMenu/releases/latest/download/ZokersModMenu.zip",
+ "folderName": "ZokersModMenu",
+ "version": "Newest",
+ "automatic-version-check": true
+}
diff --git a/mods/Zoker@ZokersModMenu/thumbnail.jpg b/mods/Zoker@ZokersModMenu/thumbnail.jpg
new file mode 100644
index 00000000..b4a26962
Binary files /dev/null and b/mods/Zoker@ZokersModMenu/thumbnail.jpg differ
diff --git a/mods/baimao@Partner/meta.json b/mods/baimao@Partner/meta.json
index 540316ca..1d6f94db 100644
--- a/mods/baimao@Partner/meta.json
+++ b/mods/baimao@Partner/meta.json
@@ -8,7 +8,8 @@
],
"author": "baimao",
"repo": "https://github.com/Icecanno/Partner-API",
- "downloadURL": "https://github.com/Icecanno/Partner-API/archive/refs/tags/1.0.2b.zip",
- "version": "1.0.2b",
- "automatic-version-check": true
+ "downloadURL": "https://github.com/Icecanno/Partner-API/archive/refs/tags/1.0.2g.zip",
+ "version": "1.0.2g",
+ "automatic-version-check": true,
+ "last-updated": 1760250160
}
diff --git a/mods/baltdev@BaltsWarehouse/description.md b/mods/baltdev@BaltsWarehouse/description.md
new file mode 100644
index 00000000..27f2470e
--- /dev/null
+++ b/mods/baltdev@BaltsWarehouse/description.md
@@ -0,0 +1,3 @@
+# BaltsWarehouse
+
+Some miscellaneous additions, including Tarots, Spectrals, Tags, Jokers, etc.
diff --git a/mods/baltdev@BaltsWarehouse/meta.json b/mods/baltdev@BaltsWarehouse/meta.json
new file mode 100644
index 00000000..f9e24246
--- /dev/null
+++ b/mods/baltdev@BaltsWarehouse/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "BaltsWarehouse",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "baltdev",
+ "repo": "https://github.com/balt-dev/BaltsWarehouse",
+ "downloadURL": "https://github.com/balt-dev/BaltsWarehouse/archive/refs/heads/trunk.zip",
+ "folderName": "BaltsWarehouse",
+ "version": "494e997",
+ "automatic-version-check": true,
+ "last-updated": 1761744675
+}
diff --git a/mods/baltdev@Inkbleed/description.md b/mods/baltdev@Inkbleed/description.md
new file mode 100644
index 00000000..c2be45a4
--- /dev/null
+++ b/mods/baltdev@Inkbleed/description.md
@@ -0,0 +1,3 @@
+# Inkbleed
+
+Implements an alternative method of the Misprint deck, entirely separate from Cryptid!
diff --git a/mods/baltdev@Inkbleed/meta.json b/mods/baltdev@Inkbleed/meta.json
new file mode 100644
index 00000000..5a27193e
--- /dev/null
+++ b/mods/baltdev@Inkbleed/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Inkbleed",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "baltdev",
+ "repo": "https://github.com/balt-dev/Inkbleed",
+ "downloadURL": "https://github.com/balt-dev/Inkbleed/archive/refs/heads/master.zip",
+ "folderName": "Inkbleed",
+ "version": "8134370",
+ "automatic-version-check": true,
+ "last-updated": 1761167608
+}
diff --git a/mods/baltdev@Jimbotomy/description.md b/mods/baltdev@Jimbotomy/description.md
new file mode 100644
index 00000000..f54ef51c
--- /dev/null
+++ b/mods/baltdev@Jimbotomy/description.md
@@ -0,0 +1,3 @@
+# Jimbotomy
+
+A bunch of terrible jokers.
diff --git a/mods/baltdev@Jimbotomy/meta.json b/mods/baltdev@Jimbotomy/meta.json
new file mode 100644
index 00000000..8a5f5c13
--- /dev/null
+++ b/mods/baltdev@Jimbotomy/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Jimbotomy",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "baltdev",
+ "repo": "https://github.com/balt-dev/Jimbotomy",
+ "downloadURL": "https://github.com/balt-dev/Jimbotomy/archive/refs/heads/master.zip",
+ "folderName": "Jimbotomy",
+ "version": "7903234",
+ "automatic-version-check": true,
+ "last-updated": 1761167608
+}
diff --git a/mods/cg223@Joker-Loadouts/description.md b/mods/cg223@Joker-Loadouts/description.md
new file mode 100644
index 00000000..25918aca
--- /dev/null
+++ b/mods/cg223@Joker-Loadouts/description.md
@@ -0,0 +1,6 @@
+# Joker Loadouts
+
+Adds buttons above your Joker slots that act as loadouts.
+Switching between these saves the order of your Jokers for that specific slot.
+This heavily simplifies a lot of gameplay involving Joker movement, especially with Blueprint and Brainstorm.
+
diff --git a/mods/cg223@Joker-Loadouts/meta.json b/mods/cg223@Joker-Loadouts/meta.json
new file mode 100644
index 00000000..2e961d8f
--- /dev/null
+++ b/mods/cg223@Joker-Loadouts/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Joker Loadouts",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "cg223",
+ "repo": "https://github.com/cg-223/Joker-Loadouts",
+ "downloadURL": "https://github.com/cg-223/Joker-Loadouts/archive/refs/heads/main.zip",
+ "automatic-version-check": true,
+ "version": "d2bdae4",
+ "last-updated": 1759090606
+}
diff --git a/mods/cg223@Joker-Loadouts/thumbnail.jpg b/mods/cg223@Joker-Loadouts/thumbnail.jpg
new file mode 100644
index 00000000..68a23c73
Binary files /dev/null and b/mods/cg223@Joker-Loadouts/thumbnail.jpg differ
diff --git a/mods/cg223@TooManyJokers/meta.json b/mods/cg223@TooManyJokers/meta.json
index 672740d6..6066da7e 100644
--- a/mods/cg223@TooManyJokers/meta.json
+++ b/mods/cg223@TooManyJokers/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/cg-223/toomanyjokers",
"downloadURL": "https://github.com/cg-223/toomanyjokers/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "a94e032"
+ "version": "e46c9b4",
+ "last-updated": 1761880148
}
diff --git a/mods/cloudzXIII@KHJokers/description.md b/mods/cloudzXIII@KHJokers/description.md
new file mode 100644
index 00000000..27caa2a4
--- /dev/null
+++ b/mods/cloudzXIII@KHJokers/description.md
@@ -0,0 +1,27 @@
+Kingdom Hearts Themed Jokers + more!
+
+Kingdom Hearts Themed Balatro mod that brings new content and unique mechanics based on the videogames!
+
+# Content
+Currently includes:
+- Kingdom Hearts x Friends of Jimbo Face Cards
+- 20+ Jokers
+- 3 Challenges
+- 2 Spectral cards
+- 1 Tarot card
+- 1 Boss Blind
+- 1 Deck
+- 1 Seal
+
+and more to come!
+
+Check additions at https://cloudzxiii.github.io/
+
+# Cross Mod
+Currently adds content for:
+- [JokerDisplay](https://github.com/nh6574/JokerDisplay)
+- [CardSleeves](https://github.com/larswijn/CardSleeves)
+
+# Requirements
+- [Steamodded](https://github.com/Steamopollys/Steamodded)
+- [Lovely](https://github.com/ethangreen-dev/lovely-injector)
diff --git a/mods/cloudzXIII@KHJokers/meta.json b/mods/cloudzXIII@KHJokers/meta.json
new file mode 100644
index 00000000..8e64c028
--- /dev/null
+++ b/mods/cloudzXIII@KHJokers/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "KHJokers",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "cloudzXIII",
+ "repo": "https://github.com/cloudzXIII/KHJokers",
+ "downloadURL": "https://github.com/cloudzXIII/KHJokers/releases/latest/download/KHJokers.zip",
+ "automatic-version-check": true,
+ "version": "v1.1.2"
+}
diff --git a/mods/cloudzXIII@KHJokers/thumbnail.jpg b/mods/cloudzXIII@KHJokers/thumbnail.jpg
new file mode 100644
index 00000000..af909b7f
Binary files /dev/null and b/mods/cloudzXIII@KHJokers/thumbnail.jpg differ
diff --git a/mods/cokeblock@cokelatro/description.md b/mods/cokeblock@cokelatro/description.md
new file mode 100644
index 00000000..9b893fa8
--- /dev/null
+++ b/mods/cokeblock@cokelatro/description.md
@@ -0,0 +1,6 @@
+REQUIRES
+-steamodded
+-talisman
+introducing cokelatro: a mod designed via entirely me and my friends
+this mod is all about references (primarily)
+this mod is kind of unbalanced lol
diff --git a/mods/cokeblock@cokelatro/meta.json b/mods/cokeblock@cokelatro/meta.json
new file mode 100644
index 00000000..660f5044
--- /dev/null
+++ b/mods/cokeblock@cokelatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "cokelatro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "author": "cokeblock",
+ "repo": "https://github.com/cokeblock/Cokelatro",
+ "downloadURL": "https://github.com/cokeblock/Cokelatro/releases/latest/download/cokelatro.zip",
+ "folderName": "cokelatro",
+ "version": "V1.0.0",
+ "automatic-version-check": true,
+ "last-updated": 1762590050
+}
diff --git a/mods/cokeblock@cokelatro/thumbnail.jpg b/mods/cokeblock@cokelatro/thumbnail.jpg
new file mode 100644
index 00000000..bb227800
Binary files /dev/null and b/mods/cokeblock@cokelatro/thumbnail.jpg differ
diff --git a/mods/colonthreeing@CreditLib/description.md b/mods/colonthreeing@CreditLib/description.md
new file mode 100644
index 00000000..e9ef3ab8
--- /dev/null
+++ b/mods/colonthreeing@CreditLib/description.md
@@ -0,0 +1,2 @@
+# CreditLib
+Adds a simple interface for adding credit badges to cards, based on Cryptid's credit system.
\ No newline at end of file
diff --git a/mods/colonthreeing@CreditLib/meta.json b/mods/colonthreeing@CreditLib/meta.json
new file mode 100644
index 00000000..2a87f217
--- /dev/null
+++ b/mods/colonthreeing@CreditLib/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "CreditLib",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "API"
+ ],
+ "author": "colonthreeing",
+ "repo": "https://github.com/colonthreeing/CreditLib",
+ "downloadURL": "https://github.com/colonthreeing/CreditLib/releases/latest/download/CreditLib.zip",
+ "folderName": "CreditLib",
+ "version": "v0.4.1",
+ "automatic-version-check": true
+}
diff --git a/mods/colonthreeing@SealSeal/description.md b/mods/colonthreeing@SealSeal/description.md
new file mode 100644
index 00000000..3fb3e790
--- /dev/null
+++ b/mods/colonthreeing@SealSeal/description.md
@@ -0,0 +1,4 @@
+# SealSeal
+Adds seals (the animal) for your seals (the stamp on your cards)!
+
+Recommended to be used with the mod Malverk but it can run without it.
\ No newline at end of file
diff --git a/mods/colonthreeing@SealSeal/meta.json b/mods/colonthreeing@SealSeal/meta.json
new file mode 100644
index 00000000..baab7c37
--- /dev/null
+++ b/mods/colonthreeing@SealSeal/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "SealSeal",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Resource Packs"],
+ "author": "colonthreeing",
+ "repo": "https://github.com/colonthreeing/SealSealBalatro",
+ "downloadURL": "https://github.com/colonthreeing/SealSealBalatro/releases/latest/download/SealSeal.zip",
+ "folderName": "SealSeal",
+ "version": "1.1.0",
+ "automatic-version-check": true
+}
diff --git a/mods/colonthreeing@glumbus/description.md b/mods/colonthreeing@glumbus/description.md
new file mode 100644
index 00000000..d3b57627
--- /dev/null
+++ b/mods/colonthreeing@glumbus/description.md
@@ -0,0 +1,3 @@
+# glumbus
+
+Makes Lucky Cat into a picture of glumbus (sometimes erroniously referred to as glungus) the cat.
diff --git a/mods/colonthreeing@glumbus/meta.json b/mods/colonthreeing@glumbus/meta.json
new file mode 100644
index 00000000..0e86a268
--- /dev/null
+++ b/mods/colonthreeing@glumbus/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "glumbus",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "colonthreeing",
+ "repo": "https://github.com/colonthreeing/Glumbus",
+ "downloadURL": "https://github.com/colonthreeing/Glumbus/releases/latest/download/Glumbus.zip",
+ "folderName": "glumbus",
+ "version": "glumbus2.4b",
+ "automatic-version-check": true,
+ "last-updated": 1761628689
+}
diff --git a/mods/colonthreeing@glumbus/thumbnail.jpg b/mods/colonthreeing@glumbus/thumbnail.jpg
new file mode 100644
index 00000000..5ada15ec
Binary files /dev/null and b/mods/colonthreeing@glumbus/thumbnail.jpg differ
diff --git a/mods/cozmo496@marco/description.md b/mods/cozmo496@marco/description.md
new file mode 100644
index 00000000..b182a63e
--- /dev/null
+++ b/mods/cozmo496@marco/description.md
@@ -0,0 +1,3 @@
+A resource pack i made that replaces the lucky cat with my cat, Marco!
+
+Requires Malverk-1.1.3a
diff --git a/mods/cozmo496@marco/meta.json b/mods/cozmo496@marco/meta.json
new file mode 100644
index 00000000..62002475
--- /dev/null
+++ b/mods/cozmo496@marco/meta.json
@@ -0,0 +1,13 @@
+{
+ "title": "Marco",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "Cozmo496",
+ "repo": "https://github.com/Cozmo496/marco",
+ "downloadURL": "https://github.com/Cozmo496/marco/archive/refs/tags/marco4monthsold.zip",
+ "automatic-version-check": true,
+ "version": "marco4monthsold"
+}
diff --git a/mods/cozmo496@marco/thumbnail.jpg b/mods/cozmo496@marco/thumbnail.jpg
new file mode 100644
index 00000000..ac29e568
Binary files /dev/null and b/mods/cozmo496@marco/thumbnail.jpg differ
diff --git a/mods/crmykybord@Sculio/description.md b/mods/crmykybord@Sculio/description.md
new file mode 100644
index 00000000..4f8bae99
--- /dev/null
+++ b/mods/crmykybord@Sculio/description.md
@@ -0,0 +1,2 @@
+# Sculio
+A vanilla-esque Balatro Mod containing 45+ new Jokers! It aims to add a collection of jokers that feel faithful to the vanilla artstyle and synergise well with base jokers. Think of it as an unofficial DLC.
diff --git a/mods/crmykybord@Sculio/meta.json b/mods/crmykybord@Sculio/meta.json
new file mode 100644
index 00000000..ff6fee0f
--- /dev/null
+++ b/mods/crmykybord@Sculio/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Sculio",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "crmykybord, BrandonE, chily",
+ "folderName": "Sculio",
+ "repo": "https://github.com/crmykybord/Sculio",
+ "downloadURL": "https://github.com/crmykybord/Sculio/releases/latest/download/Sculio.zip",
+ "automatic-version-check": true,
+ "version": "v1.0.0",
+ "last-updated": 1756948491
+}
diff --git a/mods/crmykybord@Sculio/thumbnail.jpg b/mods/crmykybord@Sculio/thumbnail.jpg
new file mode 100644
index 00000000..e4935e18
Binary files /dev/null and b/mods/crmykybord@Sculio/thumbnail.jpg differ
diff --git a/mods/draconacht@nyankatro/description.md b/mods/draconacht@nyankatro/description.md
new file mode 100644
index 00000000..35080196
--- /dev/null
+++ b/mods/draconacht@nyankatro/description.md
@@ -0,0 +1,3 @@
+# Nyankatro
+
+a fan-made mod with custom jokers (54 as of 0.1.0), bosses (15 as of 0.1.0), and love (a whole lot as of 0.1.0) inspired from The Battle Cats
diff --git a/mods/draconacht@nyankatro/meta.json b/mods/draconacht@nyankatro/meta.json
new file mode 100644
index 00000000..37182fd8
--- /dev/null
+++ b/mods/draconacht@nyankatro/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "nyankatro [a The Battle Cats mod]",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": ["Content", "Joker"],
+ "author": "draconacht",
+ "folderName": "nyankatro",
+ "repo": "https://github.com/nyanko-army-knife/nyankatro",
+ "downloadURL": "https://github.com/nyanko-army-knife/nyankatro/releases/latest/download/nyankatro.zip",
+ "version": "0.1.0",
+ "automatic-version-check": true
+}
diff --git a/mods/draconacht@nyankatro/thumbnail.jpg b/mods/draconacht@nyankatro/thumbnail.jpg
new file mode 100644
index 00000000..0fd5baf5
Binary files /dev/null and b/mods/draconacht@nyankatro/thumbnail.jpg differ
diff --git a/mods/frostice482@imm/description.md b/mods/frostice482@imm/description.md
new file mode 100644
index 00000000..d941f708
--- /dev/null
+++ b/mods/frostice482@imm/description.md
@@ -0,0 +1,11 @@
+## imm (Ingame Mod Manager)
+Lets you install mods in-game. Includes Thunderstore support.
+
+
+
+### Useless Features:
+- Caching
+- Download older versions
+- Automatic disabling problematic mods when startup
+- Automatic download of missing dependencies
+- Dependency / Conflict management
diff --git a/mods/frostice482@imm/meta.json b/mods/frostice482@imm/meta.json
new file mode 100644
index 00000000..6ec2056f
--- /dev/null
+++ b/mods/frostice482@imm/meta.json
@@ -0,0 +1,10 @@
+{
+ "title": "imm",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [ "Technical", "Miscellaneous" ],
+ "author": "frostice482",
+ "repo": "https://github.com/frostice482/balatro-imm",
+ "downloadURL": "https://github.com/frostice482/balatro-imm/releases/latest/download/inmodman.zip",
+ "version": "2.0.3"
+}
diff --git a/mods/frostice482@imm/thumbnail.jpg b/mods/frostice482@imm/thumbnail.jpg
new file mode 100644
index 00000000..65c31cc8
Binary files /dev/null and b/mods/frostice482@imm/thumbnail.jpg differ
diff --git a/mods/hypabeast_@Hypers-Stuff/description.md b/mods/hypabeast_@Hypers-Stuff/description.md
new file mode 100644
index 00000000..5bc93937
--- /dev/null
+++ b/mods/hypabeast_@Hypers-Stuff/description.md
@@ -0,0 +1,3 @@
+# Hyper's Stuff
+
+it doesnt really add much but. there is something there
diff --git a/mods/hypabeast_@Hypers-Stuff/meta.json b/mods/hypabeast_@Hypers-Stuff/meta.json
new file mode 100644
index 00000000..20b38754
--- /dev/null
+++ b/mods/hypabeast_@Hypers-Stuff/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Hyper's Stuff",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "hypabeast_",
+ "repo": "https://github.com/HyperBeast43/Hypers-Stuff",
+ "downloadURL": "https://github.com/HyperBeast43/Hypers-Stuff/archive/refs/heads/main.zip",
+ "folderName": "Hypers-Stuff",
+ "version": "7c035d6",
+ "automatic-version-check": true,
+ "last-updated": 1762139738
+}
diff --git a/mods/hypabeast_@Hypers-Stuff/thumbnail.jpg b/mods/hypabeast_@Hypers-Stuff/thumbnail.jpg
new file mode 100644
index 00000000..64cbe63d
Binary files /dev/null and b/mods/hypabeast_@Hypers-Stuff/thumbnail.jpg differ
diff --git a/mods/its-edalo@slay-the-jokers/meta.json b/mods/its-edalo@slay-the-jokers/meta.json
index 9370e244..d2a1727a 100644
--- a/mods/its-edalo@slay-the-jokers/meta.json
+++ b/mods/its-edalo@slay-the-jokers/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/its-edalo/slay-the-jokers",
"downloadURL": "https://github.com/its-edalo/slay-the-jokers/archive/main.zip",
"folderName": "slay-the-jokers-main",
- "version": "c03bc02",
+ "version": "v0.2",
"automatic-version-check": true
}
diff --git a/mods/jumbocarrot0@ReduxArcanum/meta.json b/mods/jumbocarrot0@ReduxArcanum/meta.json
index 22b7a642..52aeb111 100644
--- a/mods/jumbocarrot0@ReduxArcanum/meta.json
+++ b/mods/jumbocarrot0@ReduxArcanum/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/jumbocarrot0/Redux-Arcanum",
"downloadURL": "https://github.com/jumbocarrot0/Redux-Arcanum/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "cea6dd6"
+ "version": "45bfdf5"
}
diff --git a/mods/kasimeka@mobile-essentials/description.md b/mods/kasimeka@mobile-essentials/description.md
new file mode 100644
index 00000000..a726f75e
--- /dev/null
+++ b/mods/kasimeka@mobile-essentials/description.md
@@ -0,0 +1,35 @@
+a set of essential lovely patches to run the desktop release of Balatro on mobile devices. these patches have no adverse effects on desktop as well.
+
+## included mods
+
+### display-mode
+
+- forces the game to run in landscape only
+- enables hidpi mode for mobile devices
+
+### touch-keyboard
+
+- enables the controller-mode keyboard for devices with touch input
+
+### fps-settings
+
+- disables vsync
+- limits the game's fps to the device's refresh rate on launch (by default)
+- adds an "FPS Limit" option to the graphics settings menu for manual adjustment
+
+### feature-flags
+
+adds feature flags for the 'Android' and 'iOS' platforms that
+
+- disable achievements and crash reports
+- enable the mobile UI and hide the quit button
+- disable window and resolution settings (they're unusable on mobile)
+
+### fix-flame-shader-precision
+
+fixes the score flame effect breaking on relatively low scores when rendered with "OpenGL ES"
+
+## extra recommendations
+
+- [Sticky Fingers](https://github.com/eramdam/sticky-fingers) - a port of the mobile release's touch controls (requires smods)
+- [DismissAlert](https://github.com/Breezebuilder/DismissAlert) - allows the discovery alert icons to be dismissed and hidden by tapping their ❗ icon
diff --git a/mods/kasimeka@mobile-essentials/meta.json b/mods/kasimeka@mobile-essentials/meta.json
new file mode 100644
index 00000000..1ee5524a
--- /dev/null
+++ b/mods/kasimeka@mobile-essentials/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "mobile essentials",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life",
+ "Miscellaneous"
+ ],
+ "author": "kasimeka",
+ "repo": "https://github.com/kasimeka/balatro-mobile-essentials-mod",
+ "downloadURL": "https://github.com/kasimeka/balatro-mobile-essentials-mod/archive/refs/heads/main.zip",
+ "automatic-version-check": true,
+ "version": "85a7dbe",
+ "last-updated": 1757261866
+}
diff --git a/mods/kasimeka@typist/meta.json b/mods/kasimeka@typist/meta.json
index a7fc6f95..74c6ac7a 100644
--- a/mods/kasimeka@typist/meta.json
+++ b/mods/kasimeka@typist/meta.json
@@ -8,7 +8,8 @@
],
"author": "kasimeka",
"repo": "https://github.com/kasimeka/balatro-typist-mod",
- "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.8.1.zip",
+ "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.8.3.zip",
"automatic-version-check": true,
- "version": "1.8.1"
-}
+ "version": "1.8.3",
+ "last-updated": 1756474893
+}
\ No newline at end of file
diff --git a/mods/kcgidw@kcvanilla/meta.json b/mods/kcgidw@kcvanilla/meta.json
index efc13896..d0251e33 100644
--- a/mods/kcgidw@kcvanilla/meta.json
+++ b/mods/kcgidw@kcvanilla/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/kcgidw/kcvanilla",
"downloadURL": "https://github.com/kcgidw/kcvanilla/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "bbf9244"
+ "version": "57a9add",
+ "last-updated": 1760670008
}
diff --git a/mods/kcgidw@kcvanilla/thumbnail.jpg b/mods/kcgidw@kcvanilla/thumbnail.jpg
new file mode 100644
index 00000000..086e4d04
Binary files /dev/null and b/mods/kcgidw@kcvanilla/thumbnail.jpg differ
diff --git a/mods/lammies-yum@slaythespirejokers/description.md b/mods/lammies-yum@slaythespirejokers/description.md
new file mode 100644
index 00000000..272fd6b1
--- /dev/null
+++ b/mods/lammies-yum@slaythespirejokers/description.md
@@ -0,0 +1 @@
+A Balatro mod with cards based on Slay The Spire. (WIP)
\ No newline at end of file
diff --git a/mods/lammies-yum@slaythespirejokers/meta.json b/mods/lammies-yum@slaythespirejokers/meta.json
new file mode 100644
index 00000000..cc2267ca
--- /dev/null
+++ b/mods/lammies-yum@slaythespirejokers/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Slay The Spire Jokers",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Joker"
+ ],
+ "author": "lammies.yum",
+ "repo": "https://github.com/lammies-yum/slaythespirejokers",
+ "downloadURL": "https://github.com/lammies-yum/slaythespirejokers/releases/latest/download/SlayTheSpireJokers.zip",
+ "folderName": "Slay The Spire Jokers",
+ "version": "yownload",
+ "automatic-version-check": true
+}
diff --git a/mods/lammies-yum@slaythespirejokers/thumbnail.jpg b/mods/lammies-yum@slaythespirejokers/thumbnail.jpg
new file mode 100644
index 00000000..deca6f90
Binary files /dev/null and b/mods/lammies-yum@slaythespirejokers/thumbnail.jpg differ
diff --git a/mods/lordruby@Entropy/description.md b/mods/lordruby@Entropy/description.md
index 3e0fffd4..1778c471 100644
--- a/mods/lordruby@Entropy/description.md
+++ b/mods/lordruby@Entropy/description.md
@@ -1,7 +1,20 @@
# Entropy
-An unbalanced cryptid addon for balatro, Built around the madness gameset
+A chaotic Balatro mod
-Note: Entropy currently requires [Cryptid Bignum-Support](https://github.com/MathIsFun0/Cryptid/tree/Big-Num-support) and [Talisman Experimental](https://github.com/MathIsFun0/Talisman/tree/experimental) until the changes get merged into their main branches
+[Download CryptLib](https://github.com/SpectralPack/Cryptlib) (Make sure you download via Code > Download zip)
Entropy currently adds:
-
+
+
+
+
+
+## Wheres all the Other Content?
+Due to me wanting to depart from this mod as a Cryptid addon but not wanting the content to go to waste a lot of existing content has been moved into CrossMod territory, where it will only show up if you have Cryptid enabled. This includes entropic Jokers which are based on Exotics
+
+## What about Ascension Power
+Ascension Power will stay around even without Cryptid enabled due to how much Entropy content relies on it
+I could rename ascension power to further seperate it from Cryptid however I think this is unnecessary as the mechanics will remain the same
+
+## Contact
+For enquiries please join the [Entropy Discord](https://discord.gg/beqqy4Bb7m)
diff --git a/mods/lordruby@Entropy/meta.json b/mods/lordruby@Entropy/meta.json
index 41d400be..8964eac6 100644
--- a/mods/lordruby@Entropy/meta.json
+++ b/mods/lordruby@Entropy/meta.json
@@ -9,6 +9,7 @@
"repo": "https://github.com/lord-ruby/Entropy",
"downloadURL": "https://github.com/lord-ruby/Entropy/archive/refs/heads/main.zip",
"folderName": "Entropy",
- "version": "c6f8291",
- "automatic-version-check": true
+ "version": "d7c28c6",
+ "automatic-version-check": true,
+ "last-updated": 1762737934
}
diff --git a/mods/lordruby@Entropy/thumbnail.jpg b/mods/lordruby@Entropy/thumbnail.jpg
index 7d08cce3..37ba1f36 100644
Binary files a/mods/lordruby@Entropy/thumbnail.jpg and b/mods/lordruby@Entropy/thumbnail.jpg differ
diff --git a/mods/nh6574@JokerDisplay/meta.json b/mods/nh6574@JokerDisplay/meta.json
index f21fece9..cce336ed 100644
--- a/mods/nh6574@JokerDisplay/meta.json
+++ b/mods/nh6574@JokerDisplay/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/nh6574/JokerDisplay",
"downloadURL": "https://github.com/nh6574/JokerDisplay/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "1cdf2b5"
+ "version": "3240406",
+ "last-updated": 1761858947
}
diff --git a/mods/nh6574@JoyousSpring/meta.json b/mods/nh6574@JoyousSpring/meta.json
index dab1fcc9..d69a5083 100644
--- a/mods/nh6574@JoyousSpring/meta.json
+++ b/mods/nh6574@JoyousSpring/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/nh6574/JoyousSpring",
"downloadURL": "https://github.com/nh6574/JoyousSpring/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "4513d7a"
+ "version": "0a5c0f6",
+ "last-updated": 1761772550
}
diff --git a/mods/notmario@MoreFluff/meta.json b/mods/notmario@MoreFluff/meta.json
index 2d6fb7fe..a9ffee6d 100644
--- a/mods/notmario@MoreFluff/meta.json
+++ b/mods/notmario@MoreFluff/meta.json
@@ -10,5 +10,6 @@
"repo": "https://github.com/notmario/MoreFluff",
"downloadURL": "https://github.com/notmario/MoreFluff/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "25db923"
+ "version": "e405b61",
+ "last-updated": 1762590050
}
diff --git a/mods/peakshitposts@peakshitmod/description.md b/mods/peakshitposts@peakshitmod/description.md
new file mode 100644
index 00000000..629509b2
--- /dev/null
+++ b/mods/peakshitposts@peakshitmod/description.md
@@ -0,0 +1,5 @@
+Welcome to peakshitmod!
+This mod adds 45 jokers and counting, all with special, unique abilties the likes of which you have never seen before.
+Thats not all though, new spectral cards, enhancements, decks, and an all new consumable, Missions.
+Most items are references, including several jokers that reference things such as Kanye West, Isaacwhy, Bendy and the Ink Machine, Breaking Bad, The Boys, Tyler The Creator, Henry Stickmin, DougDoug, and more!
+Download today and you will be sure to have a giggle, AT LEAST ONE "HA."
\ No newline at end of file
diff --git a/mods/peakshitposts@peakshitmod/meta.json b/mods/peakshitposts@peakshitmod/meta.json
new file mode 100644
index 00000000..531a6fda
--- /dev/null
+++ b/mods/peakshitposts@peakshitmod/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "peakshitmod",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "peakshitposts",
+ "repo": "https://github.com/peakshitposts/peakshitmod",
+ "downloadURL": "https://github.com/peakshitposts/peakshitmod/releases/latest/download/peakshitmod-main.zip",
+ "folderName": "peakshitmod",
+ "version": "evennewer",
+ "automatic-version-check": true,
+ "last-updated": 1757286839
+}
diff --git a/mods/peakshitposts@peakshitmod/thumbnail.jpg b/mods/peakshitposts@peakshitmod/thumbnail.jpg
new file mode 100644
index 00000000..005fdea6
Binary files /dev/null and b/mods/peakshitposts@peakshitmod/thumbnail.jpg differ
diff --git a/mods/pi_cubed@pi_cubedsJokers/meta.json b/mods/pi_cubed@pi_cubedsJokers/meta.json
index e922ac81..5cb681e8 100644
--- a/mods/pi_cubed@pi_cubedsJokers/meta.json
+++ b/mods/pi_cubed@pi_cubedsJokers/meta.json
@@ -8,6 +8,7 @@
"author": "pi_cubed",
"repo": "https://github.com/pi-cubed-cat/pi_cubeds_jokers",
"downloadURL": "https://github.com/pi-cubed-cat/pi_cubeds_jokers/archive/refs/heads/main.zip",
- "version": "19b9fc5",
- "automatic-version-check": true
+ "version": "74dc22c",
+ "automatic-version-check": true,
+ "last-updated": 1762583059
}
diff --git a/mods/riosodu@black-seal/meta.json b/mods/riosodu@black-seal/meta.json
index 72ef70d1..ab2fb08a 100644
--- a/mods/riosodu@black-seal/meta.json
+++ b/mods/riosodu@black-seal/meta.json
@@ -10,5 +10,7 @@
"downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/black-seal__latest/black-seal.zip",
"folderName": "black-seal",
"automatic-version-check": true,
- "version": "qol-bundle__latest"
+ "fixed-release-tag-updates": true,
+ "version": "20251023_174322",
+ "last-updated": 1761243945
}
diff --git a/mods/riosodu@qol-bundle/description.md b/mods/riosodu@qol-bundle/description.md
index f05a6ba5..e8aa751d 100644
--- a/mods/riosodu@qol-bundle/description.md
+++ b/mods/riosodu@qol-bundle/description.md
@@ -6,11 +6,37 @@ A collection of quality-of-life improvements for Balatro.
This mod provides several small adjustments to gameplay mechanics to enhance the overall experience, particularly when using other mods that add new content.
-## Key Features
+## Features
- **Easier Wheel of Fortune**: Configurable ease for the Wheel of Fortune tarot card. Adjust the chance of hitting the desired outcome (1 = 100% chance, 4 = vanilla 25% chance). Default is 3.
-- **Wildcard Fix**: Prevents Wildcard and Smeared Joker from being negatively affected by suit debuffs when they could match a non-debuffed suit.
+- **Wildcard Fix**: Prevents Wildcard and Smeared Joker from being negatively affected by suit debuffs when they could match a non-debuffed suit. When Paperback mod is installed, Smeared Joker considers light suits and dark suits, respectively, as the same suit.
- **Increased Shop Size**: Increases the base shop size by 1 (default is 2). This helps offset the dilution of the shop pool caused by other mods adding new cards and items.
+- **Unweighted Base Editions**: Makes Foil, Holo, and Polychrome editions equally likely when rolled, while preserving the original probability of Negative editions.
+- **Configurable 8 Ball Joker**: Adjust the chance of the 8 Ball Joker spawning Tarot cards (1 = 100% chance, 4 = vanilla 25% chance). Default is 4.
+- **Reworked Hit the Road Joker**: When enabled, discarded Jacks are returned to the deck alongside the current effect.
+- **Square Joker Modification**: Reworks the Square Joker to give +4 chips if played hand has exactly 4 cards, with each scoring card having a 1 in 2 chance to add +4 more chips. Also changes rarity to Uncommon.
+- **Flower Pot Wildcard Rework**: Flower Pot only appears in shop when Wildcard-enhanced cards exist in deck and triggers when scoring hand contains any Wildcard.
+- **Baron Uncommon**: Makes Baron joker Uncommon rarity with reduced cost ($5 instead of $8).
+- **Mime Rare**: Makes Mime joker Rare rarity with increased cost ($6 instead of $5).
+- **Satellite Joker Rework**: Satellite now gives gold equal to half the highest poker hand level (rounded up).
+- **Controlled Sigil**: Sigil now requires selecting a card first and converts all cards to selected card's suit instead of random suit.
+- **Controlled Ouija**: Ouija now requires selecting a card first and converts all cards to selected card's rank instead of random rank.
+- **Loyalty Card Rounds Mode**: Loyalty Card triggers based on rounds instead of hands played for more predictable timing and easier to plan around.
+- **Splash Joker Retrigger**: Splash Joker additionally retriggers two random scoring cards.
+- **Ceremonial Dagger Common**: Makes Ceremonial Dagger joker Common rarity with reduced cost ($3 instead of $6).
+- **Mail-In Rebate Uncommon**: Makes Mail-In Rebate joker Uncommon rarity (was Common rarity - makes it rarer).
+- **Fortune Teller Cheaper**: Makes Fortune Teller joker cheaper (cost $4 instead of $6).
+- **Erosion X Mult Rework**: Changes Erosion from +4 Mult per card to X0.15 Mult per card below starting amount.
+- **Interest on Skip**: Gain interest when skipping blinds, calculated and awarded before obtaining the tag.
+- **Paperback Compatibility**: Added compatibility for Paperback mod's Jester of Nihil joker and suit considerations for Smeared Joker.
+- **Nerf Hanging Chad**: Makes Hanging Chad joker Uncommon rarity and more expensive (cost $7 instead of $6).
+- **Castle Checkered Reliability**: Castle now counts either Clubs and Spades or Hearts and Diamonds, making it as reliable as in the checkered deck. If Paperback mod is installed, light suits or dark suits will be used instead.
+- **Yorick Enhancement**: Yorick now gains a configurable amount (+1.5x for each 23 cards instead of +1x).
+- **Reworked Magic Trick and Illusion Vouchers**:
+ - Magic Trick is now a "better" Illusion voucher with playing cards in shop appearing with enhancements, editions and seals (actually spawn instead of the bugged vanilla).
+ - Illusion now shows cards that are clones of cards in your deck with ability to reroll their enhancements, editions, and seals (but never lose them).
+ - Improved shop card pricing accounts for enhancements, editions, and seals. Baseline is more expensive and can go up to $6
+ - **Paper Clips Support**: Magic Trick and Illusion vouchers now may apply paper clips to shop playing cards (same as seals) when Paperback mod is installed.
## Installation
diff --git a/mods/riosodu@qol-bundle/meta.json b/mods/riosodu@qol-bundle/meta.json
index 4d852a79..d5464320 100644
--- a/mods/riosodu@qol-bundle/meta.json
+++ b/mods/riosodu@qol-bundle/meta.json
@@ -10,5 +10,7 @@
"downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/qol-bundle__latest/qol-bundle.zip",
"folderName": "qol-bundle",
"automatic-version-check": true,
- "version": "qol-bundle__latest"
+ "fixed-release-tag-updates": true,
+ "version": "20251023_174322",
+ "last-updated": 1761243945
}
diff --git a/mods/riosodu@rebalanced-stakes/description.md b/mods/riosodu@rebalanced-stakes/description.md
index dca4e6df..21e016e7 100644
--- a/mods/riosodu@rebalanced-stakes/description.md
+++ b/mods/riosodu@rebalanced-stakes/description.md
@@ -9,6 +9,7 @@ Instead of introducing entirely new harsh mechanics early on, this mod shifts ex
- **Blue Stake (Stake 5):**
- Removes the `-1 Discard` penalty
- Introduces Perishable Jokers to the shop pool *(effect moved from vanilla Orange Stake)*
+ - Perishable Jokers become negative when they expire alongside being debuffed
- **Orange Stake (Stake 7):**
- Removes the Perishable Joker effect
diff --git a/mods/riosodu@rebalanced-stakes/meta.json b/mods/riosodu@rebalanced-stakes/meta.json
index 5c633c5e..27b5a93e 100644
--- a/mods/riosodu@rebalanced-stakes/meta.json
+++ b/mods/riosodu@rebalanced-stakes/meta.json
@@ -11,5 +11,7 @@
"downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/rebalanced-stakes__latest/rebalanced-stakes.zip",
"folderName": "rebalanced-stakes",
"automatic-version-check": true,
- "version": "qol-bundle__latest"
+ "fixed-release-tag-updates": true,
+ "version": "20251023_174319",
+ "last-updated": 1761243945
}
diff --git a/mods/stupxd@Blueprint/meta.json b/mods/stupxd@Blueprint/meta.json
index 8a0e4686..57f3a3db 100644
--- a/mods/stupxd@Blueprint/meta.json
+++ b/mods/stupxd@Blueprint/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/stupxd/Blueprint",
"downloadURL": "https://github.com/stupxd/Blueprint/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "062b9f3"
+ "version": "4e18c48"
}
diff --git a/mods/stupxd@Cartomancer/meta.json b/mods/stupxd@Cartomancer/meta.json
index c41c41cb..23e82078 100644
--- a/mods/stupxd@Cartomancer/meta.json
+++ b/mods/stupxd@Cartomancer/meta.json
@@ -9,5 +9,6 @@
"repo": "https://github.com/stupxd/Cartomancer",
"downloadURL": "https://github.com/stupxd/Cartomancer/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "662c833"
+ "version": "84571d3",
+ "last-updated": 1760195627
}
diff --git a/mods/termisaal@MainMenuTweaks/meta.json b/mods/termisaal@MainMenuTweaks/meta.json
index b9ce7a88..ae542eca 100644
--- a/mods/termisaal@MainMenuTweaks/meta.json
+++ b/mods/termisaal@MainMenuTweaks/meta.json
@@ -1,6 +1,6 @@
{
"title": "Main Menu Tweaks",
- "requires-steamodded": false,
+ "requires-steamodded": true,
"requires-talisman": false,
"categories": [
"Quality of Life"
@@ -10,5 +10,5 @@
"repo": "https://github.com/Catzzadilla/Main-Menu-Tweaks/",
"downloadURL": "https://github.com/Catzzadilla/Main-Menu-Tweaks/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "8c14dea"
+ "version": "5c976d0"
}
diff --git a/mods/theAstra@HotPotato/description.md b/mods/theAstra@HotPotato/description.md
new file mode 100644
index 00000000..ae2b68b8
--- /dev/null
+++ b/mods/theAstra@HotPotato/description.md
@@ -0,0 +1 @@
+Hot Potato is a Balatro Mod Developer Event where teams were created and given a week on their own to contribute to a mod. Cross-team communication was not allowed outside of major bugfixing efforts. The ordeal took 2 months, and this mod is the culmination of this work.
\ No newline at end of file
diff --git a/mods/theAstra@HotPotato/meta.json b/mods/theAstra@HotPotato/meta.json
new file mode 100644
index 00000000..a8190bfd
--- /dev/null
+++ b/mods/theAstra@HotPotato/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Hot Potato",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content"
+ ],
+ "author": "Various Developers",
+ "repo": "https://github.com/the-Astra/Hot-Potato",
+ "downloadURL": "https://github.com/the-Astra/Hot-Potato/archive/refs/tags/v1.0.7b.zip",
+ "version": "v1.0.7b",
+ "automatic-version-check": true,
+ "last-updated": 1762312190
+}
diff --git a/mods/theAstra@HotPotato/thumbnail.jpg b/mods/theAstra@HotPotato/thumbnail.jpg
new file mode 100644
index 00000000..5f99ce04
Binary files /dev/null and b/mods/theAstra@HotPotato/thumbnail.jpg differ
diff --git a/mods/theAstra@Maximus/description.md b/mods/theAstra@Maximus/description.md
index 18302622..74679513 100644
--- a/mods/theAstra@Maximus/description.md
+++ b/mods/theAstra@Maximus/description.md
@@ -1 +1 @@
-A vanilla-inspired mod that adds many new ideas to Balatro, ranging from new Jokers, Decks, Vouchers, and more! This mod is still very much WIP, so expect things to break!!!
\ No newline at end of file
+Maximus is a Vanilla+ mod that strives to preserve the Vanilla feel of the game (for the most part, looking at you Nuclear deck) while innovating on newer ideas to keep things fresh!
\ No newline at end of file
diff --git a/mods/theAstra@Maximus/meta.json b/mods/theAstra@Maximus/meta.json
index d1c55678..832092c7 100644
--- a/mods/theAstra@Maximus/meta.json
+++ b/mods/theAstra@Maximus/meta.json
@@ -1,13 +1,14 @@
{
"title": "Maximus",
"requires-steamodded": true,
- "requires-talisman": true,
+ "requires-talisman": false,
"categories": [
"Content"
],
"author": "theAstra, Maxiss02",
"repo": "https://github.com/the-Astra/Maximus",
- "downloadURL": "https://github.com/the-Astra/Maximus/archive/refs/heads/main.zip",
+ "downloadURL": "https://github.com/the-Astra/Maximus/releases/latest/download/Maximus-main.zip",
+ "version": "v1.2.3c",
"automatic-version-check": true,
- "version": "238bf49"
+ "last-updated": 1761711878
}
diff --git a/mods/theAstra@SuperRogue/description.md b/mods/theAstra@SuperRogue/description.md
new file mode 100644
index 00000000..85cae26d
--- /dev/null
+++ b/mods/theAstra@SuperRogue/description.md
@@ -0,0 +1 @@
+SuperRogue is a mod designed to add another highly-configurable Rogue-like layer to Balatro by allowing mod content to be unlocked as the run progresses!
\ No newline at end of file
diff --git a/mods/theAstra@SuperRogue/meta.json b/mods/theAstra@SuperRogue/meta.json
new file mode 100644
index 00000000..822d33be
--- /dev/null
+++ b/mods/theAstra@SuperRogue/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "SuperRogue",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Miscellaneous"
+ ],
+ "author": "theAstra",
+ "repo": "https://github.com/the-Astra/SuperRogue",
+ "downloadURL": "https://github.com/the-Astra/SuperRogue/releases/latest/download/SuperRogue-main.zip",
+ "version": "v1.2.3b",
+ "automatic-version-check": true,
+ "last-updated": 1762367153
+}
diff --git a/mods/wingedcatgirl@GoToBedMinty/description.md b/mods/wingedcatgirl@GoToBedMinty/description.md
new file mode 100644
index 00000000..04f4ded1
--- /dev/null
+++ b/mods/wingedcatgirl@GoToBedMinty/description.md
@@ -0,0 +1,2 @@
+## Go to bed, Minty
+Removes the temptation to play "just one more run".
\ No newline at end of file
diff --git a/mods/wingedcatgirl@GoToBedMinty/meta.json b/mods/wingedcatgirl@GoToBedMinty/meta.json
new file mode 100644
index 00000000..14b4a38c
--- /dev/null
+++ b/mods/wingedcatgirl@GoToBedMinty/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "Go to bed, Minty",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life",
+ "Miscellaneous"
+ ],
+ "author": "wingedcatgirl",
+ "repo": "https://github.com/wingedcatgirl/Go-To-Bed--Minty",
+ "downloadURL": "https://github.com/wingedcatgirl/Go-To-Bed--Minty/archive/refs/heads/main.zip",
+ "automatic-version-check": true,
+ "version": "3899f54"
+}
diff --git a/mods/wingedcatgirl@MintysSillyMod/meta.json b/mods/wingedcatgirl@MintysSillyMod/meta.json
index da83a3fc..52310b82 100644
--- a/mods/wingedcatgirl@MintysSillyMod/meta.json
+++ b/mods/wingedcatgirl@MintysSillyMod/meta.json
@@ -7,7 +7,7 @@
],
"author": "wingedcatgirl",
"repo": "https://github.com/wingedcatgirl/MintysSillyMod",
- "downloadURL": "https://github.com/wingedcatgirl/MintysSillyMod/releases/download/v0.6.2/MintysSillyMod-0.6.2.zip",
+ "downloadURL": "https://github.com/wingedcatgirl/MintysSillyMod/archive/refs/tags/v0.7.3.zip",
"automatic-version-check": false,
- "version": "v0.6.2"
+ "version": "v0.7.3"
}
diff --git a/mods/wingedcatgirl@MintysSillyMod/thumbnail.png b/mods/wingedcatgirl@MintysSillyMod/thumbnail.jpg
similarity index 100%
rename from mods/wingedcatgirl@MintysSillyMod/thumbnail.png
rename to mods/wingedcatgirl@MintysSillyMod/thumbnail.jpg
diff --git a/mods/wingedcatgirl@SpectrumFramework/meta.json b/mods/wingedcatgirl@SpectrumFramework/meta.json
index 07aa7584..c5f1b7d6 100644
--- a/mods/wingedcatgirl@SpectrumFramework/meta.json
+++ b/mods/wingedcatgirl@SpectrumFramework/meta.json
@@ -8,7 +8,7 @@
],
"author": "wingedcatgirl",
"repo": "https://github.com/wingedcatgirl/SpectrumFramework",
- "downloadURL": "https://github.com/wingedcatgirl/SpectrumFramework/releases/download/v0.8.0/SpectrumFramework-0.8.0.zip",
+ "downloadURL": "https://github.com/wingedcatgirl/SpectrumFramework/releases/download/v0.8.1/SpectrumFramework-0.8.1.zip",
"automatic-version-check": false,
- "version": "v0.8.0"
+ "version": "v0.8.1"
}
diff --git a/mods/wingedcatgirl@SpectrumFramework/thumbnail.png b/mods/wingedcatgirl@SpectrumFramework/thumbnail.jpg
similarity index 100%
rename from mods/wingedcatgirl@SpectrumFramework/thumbnail.png
rename to mods/wingedcatgirl@SpectrumFramework/thumbnail.jpg
diff --git a/mods/wingedcatgirl@reUnlockAll/description.md b/mods/wingedcatgirl@reUnlockAll/description.md
new file mode 100644
index 00000000..0e3b8542
--- /dev/null
+++ b/mods/wingedcatgirl@reUnlockAll/description.md
@@ -0,0 +1,2 @@
+## re:Unlock All
+Brings back the Unlock All button if you switch mods and need it again.
\ No newline at end of file
diff --git a/mods/wingedcatgirl@reUnlockAll/meta.json b/mods/wingedcatgirl@reUnlockAll/meta.json
new file mode 100644
index 00000000..61bf22dd
--- /dev/null
+++ b/mods/wingedcatgirl@reUnlockAll/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "re:Unlock All",
+ "folderName": "reUnlockAll",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life",
+ "Miscellaneous"
+ ],
+ "author": "wingedcatgirl",
+ "repo": "https://github.com/wingedcatgirl/re-Unlock-All",
+ "downloadURL": "https://github.com/wingedcatgirl/re-Unlock-All/archive/refs/heads/main.zip",
+ "automatic-version-check": true,
+ "version": "3485490",
+ "last-updated": 1760861992
+}
diff --git a/mods/wk@totallybalanced/description.md b/mods/wk@totallybalanced/description.md
new file mode 100644
index 00000000..6ee87969
--- /dev/null
+++ b/mods/wk@totallybalanced/description.md
@@ -0,0 +1,5 @@
+# totally balanced
+This is a Balatro mod that is totally balanced!
+Make sure to make a new game for this.
+
+## i like powers
\ No newline at end of file
diff --git a/mods/wk@totallybalanced/meta.json b/mods/wk@totallybalanced/meta.json
new file mode 100644
index 00000000..c7cb515d
--- /dev/null
+++ b/mods/wk@totallybalanced/meta.json
@@ -0,0 +1,17 @@
+{
+ "title": "totally balanced",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "wk",
+ "repo": "https://github.com/WiktorProj/totally_balanced",
+ "downloadURL": "https://github.com/WiktorProj/totally_balanced/releases/latest/download/totally_balanced.zip",
+ "folderName": "totally_balanced",
+ "version": "1.2.0",
+ "automatic-version-check": true,
+ "last-updated": 1760811710
+}
diff --git a/mods/wk@totallybalanced/thumbnail.jpg b/mods/wk@totallybalanced/thumbnail.jpg
new file mode 100644
index 00000000..ea404498
Binary files /dev/null and b/mods/wk@totallybalanced/thumbnail.jpg differ
diff --git a/schema/meta.schema.json b/schema/meta.schema.json
index 3529a1b6..9cd8caff 100644
--- a/schema/meta.schema.json
+++ b/schema/meta.schema.json
@@ -16,7 +16,15 @@
"type": "array",
"items": {
"type": "string",
- "enum": ["Content", "Joker", "Quality of Life", "Technical", "Miscellaneous", "Resource Packs", "API"]
+ "enum": [
+ "Content",
+ "Joker",
+ "Quality of Life",
+ "Technical",
+ "Miscellaneous",
+ "Resource Packs",
+ "API"
+ ]
},
"minItems": 1,
"uniqueItems": true
@@ -36,13 +44,104 @@
"type": "string",
"pattern": "^[^<>:\"/\\|?*]+$"
},
- "version": {
+ "version": {
"type": "string"
},
- "automatic-version-check": {
+ "automatic-version-check": {
"type": "boolean"
+ },
+ "fixed-release-tag-updates": {
+ "type": "boolean"
+ },
+ "last-updated": {
+ "type": "integer",
+ "minimum": 0,
+ "exclusiveMaximum": 18446744073709551616
}
},
- "required": ["title", "requires-steamodded", "requires-talisman", "categories", "author", "repo", "downloadURL"]
+ "required": [
+ "title",
+ "requires-steamodded",
+ "requires-talisman",
+ "categories",
+ "author",
+ "repo",
+ "downloadURL",
+ "version"
+ ],
+ "allOf": [
+ {
+ "$comment": "This rule prevents accidental freezing of updates",
+ "not": {
+ "allOf": [
+ {
+ "$comment": "'automatic-version-check' is true",
+ "properties": {
+ "automatic-version-check": {
+ "const": true
+ }
+ },
+ "required": [
+ "automatic-version-check"
+ ]
+ },
+ {
+ "$comment": "'downloadURL' points to a specific release asset",
+ "properties": {
+ "downloadURL": {
+ "pattern": "^https?://github\\.com/[^/]+/[^/]+/releases/download/[^/]+/.+$"
+ }
+ },
+ "required": [
+ "downloadURL"
+ ]
+ },
+ {
+ "$comment": "'fixed-release-tag-updates' is NOT true (i.e., it's false, or it's completely missing)",
+ "not": {
+ "properties": {
+ "fixed-release-tag-updates": {
+ "const": true
+ }
+ },
+ "required": [
+ "fixed-release-tag-updates"
+ ]
+ }
+ }
+ ]
+ },
+ "errorMessage": "When 'downloadURL' points to a specific GitHub release asset AND 'automatic-version-check' is true, 'fixed-release-tag-updates' must also be true. This prevents accidental update freezing."
+ },
+ {
+ "$comment": "This rule checks the value of 'fixed-release-tag-updates' and guarantees consistency",
+ "if": {
+ "properties": {
+ "fixed-release-tag-updates": {
+ "const": true
+ }
+ },
+ "required": [
+ "fixed-release-tag-updates"
+ ]
+ },
+ "then": {
+ "$comment": "Conditions when 'fixed-release-tag-updates' is true",
+ "properties": {
+ "automatic-version-check": {
+ "const": true,
+ "errorMessage": "'automatic-version-check' must be true when 'fixed-release-tag-updates' is true."
+ },
+ "downloadURL": {
+ "pattern": "^https?://github\\.com/[^/]+/[^/]+/releases/download/[^/]+/.+$",
+ "errorMessage": "When 'fixed-release-tag-updates' is true, 'downloadURL' must point to a specific GitHub specific release asset (e.g., '/releases/download/v1.0.0/asset.zip'), NOT a branch head or latest release URL."
+ }
+ },
+ "required": [
+ "automatic-version-check"
+ ],
+ "errorMessage": "When 'fixed-release-tag-updates' 'automatic-version-check' must be true, and 'downloadURL' must point to a specific release asset."
+ }
+ }
+ ]
}
-