diff --git a/.github/scripts/update_mod_versions.py b/.github/scripts/update_mod_versions.py
index 6f049dfe..3de6dc24 100755
--- a/.github/scripts/update_mod_versions.py
+++ b/.github/scripts/update_mod_versions.py
@@ -29,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`")
@@ -60,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]
@@ -100,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)
@@ -167,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:
@@ -195,6 +238,8 @@ def process_mod(start_timestamp, name, meta_file):
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
@@ -244,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..7571df50
--- /dev/null
+++ b/mods/ABuffZucchini@GreenerJokers/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "d1624d2",
+ "automatic-version-check": true
+}
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/description.md b/mods/AMY@AMY'sWaifus/description.md
new file mode 100644
index 00000000..4737acf7
--- /dev/null
+++ b/mods/AMY@AMY'sWaifus/description.md
@@ -0,0 +1,8 @@
+# AMY's Waifus
+retexture some jokers with my artstyle
+## Credits
+Updated by me ([AMY](https://github.com/mikamiamy)) to work with [Malverk](https://github.com/Eremel/Malverk)
+## Art
+Art by AMY aka Mikami
+## Requirements
+Requires [Malverk](https://github.com/Eremel/Malverk)
\ No newline at end of file
diff --git a/mods/AMY@AMY'sWaifus/meta.json b/mods/AMY@AMY'sWaifus/meta.json
new file mode 100644
index 00000000..9df3a729
--- /dev/null
+++ b/mods/AMY@AMY'sWaifus/meta.json
@@ -0,0 +1,14 @@
+{
+ "title": "AMY's Waifu",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "author": "AMY",
+ "repo": "https://github.com/mikamiamy/AMY-s-Balatro-texturepack",
+ "downloadURL": "https://github.com/mikamiamy/AMY-s-Balatro-texturepack/archive/refs/heads/main.zip",
+ "folderName": "AMY's Waifu",
+ "automatic-version-check": true,
+ "version": "36785d5"
+}
diff --git a/mods/AMY@AMY'sWaifus/thumbnail.jpg b/mods/AMY@AMY'sWaifus/thumbnail.jpg
new file mode 100644
index 00000000..9d351ef8
Binary files /dev/null and b/mods/AMY@AMY'sWaifus/thumbnail.jpg differ
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 6849035f..f94cb062 100644
--- a/mods/ARandomTank7@Balajeweled/meta.json
+++ b/mods/ARandomTank7@Balajeweled/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/ARandomTank7/Balajeweled",
"downloadURL": "https://github.com/ARandomTank7/Balajeweled/releases/latest/download/Balajeweled.zip",
"automatic-version-check": true,
- "version": "v0.1.2a"
+ "version": "v0.1.3a"
}
diff --git a/mods/ARandomTank7@Balajeweled/thumbnail.jpg b/mods/ARandomTank7@Balajeweled/thumbnail.jpg
index 467600f5..9a0f707d 100644
Binary files a/mods/ARandomTank7@Balajeweled/thumbnail.jpg and b/mods/ARandomTank7@Balajeweled/thumbnail.jpg differ
diff --git a/mods/AbsentAbigail@AbsentDealer/description.md b/mods/AbsentAbigail@AbsentDealer/description.md
new file mode 100644
index 00000000..f2862622
--- /dev/null
+++ b/mods/AbsentAbigail@AbsentDealer/description.md
@@ -0,0 +1,49 @@
+# Absent Dealer
+
+A Balatro mod adding cute plushies and other silly jokers. Also adds new decks and a new Spectral Card that creates new enhancements based on the seven deadly sins. Have fun and remember to pet the plushies when they do well :3
+
+
+## Installation
+
+Requires [Steamodded](https://github.com/Steamodded/smods). See their installation guide for more details
+Download absentdealer.zip from the [latest release](https://github.com/AbsentAbigail/AbsentDealer/releases), extract the contained folder, and place it inside of Balatros mods folder.
+
+## Features
+- Over 30 Jokers
+- 3 new Decks
+- 1 Spectral Card
+- 7 card enhancements
+- Supported Languages
+ - English
+ - German
+- Support for [JokerDisplay](https://github.com/nh6574/JokerDisplay)
+
+
+## Screenshots
+Jokers:
+
+
+
+
+
+
+Decks:
+
+
+
+
+
+
+Sin Spectral Card:
+
+
+
+
+Enhancements:
+
+
+
+## Plushie Deck
+Additionally, if you like the plushies, feel free to also check out the [PlushieDeck](https://github.com/AbsentAbigail/PlushieDeck) mod for plushie reskins of the playing cards
+
+
diff --git a/mods/AbsentAbigail@AbsentDealer/meta.json b/mods/AbsentAbigail@AbsentDealer/meta.json
new file mode 100644
index 00000000..c6d3ca5f
--- /dev/null
+++ b/mods/AbsentAbigail@AbsentDealer/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Absent Dealer",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Absent Abigail",
+ "repo": "https://github.com/AbsentAbigail/AbsentDealer",
+ "downloadURL": "https://github.com/AbsentAbigail/AbsentDealer/releases/latest/download/absentdealer.zip",
+ "folderName": "AbsentDealer",
+ "version": "v1.3.2",
+ "automatic-version-check": true
+}
diff --git a/mods/AbsentAbigail@AbsentDealer/thumbnail.jpg b/mods/AbsentAbigail@AbsentDealer/thumbnail.jpg
new file mode 100644
index 00000000..69c8e91a
Binary files /dev/null and b/mods/AbsentAbigail@AbsentDealer/thumbnail.jpg differ
diff --git a/mods/Agoraaa@FlushHotkeys/meta.json b/mods/Agoraaa@FlushHotkeys/meta.json
index 1f69a1b5..a4b46aec 100644
--- a/mods/Agoraaa@FlushHotkeys/meta.json
+++ b/mods/Agoraaa@FlushHotkeys/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/Agoraaa/FlushHotkeys",
"downloadURL": "https://github.com/Agoraaa/FlushHotkeys/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "dbb7019"
+ "version": "ac9d035"
}
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..276280a1
--- /dev/null
+++ b/mods/Aikoyori@Aikoyoris-Shenanigans/description.md
@@ -0,0 +1,43 @@
+Basically a content mod where I add whatever I feel like adding.
+
+The thumbnail is 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 Maximum numbers
+- 30+ Boss Blinds
+- 10+ Card Enhancements
+- 4 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)
+- 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 Maxwell's Notebook contribution
+
+@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..6f49e168
--- /dev/null
+++ b/mods/Aikoyori@Aikoyoris-Shenanigans/meta.json
@@ -0,0 +1,13 @@
+{
+ "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/main.zip",
+ "automatic-version-check": true,
+ "version": "acfcb5e"
+}
diff --git a/mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg b/mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg
new file mode 100644
index 00000000..afd434f1
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..3e164f26
--- /dev/null
+++ b/mods/AppleMania@Maniatro/meta.json
@@ -0,0 +1,12 @@
+{
+ "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/3.0.0.zip",
+ "folderName": "Maniatro",
+ "version": "3.0.0",
+ "automatic-version-check": true
+}
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..36789a16
--- /dev/null
+++ b/mods/Arashi Fox@Arashicoolstuff/meta.json
@@ -0,0 +1,14 @@
+{
+ "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": "03afcd0",
+ "automatic-version-check": true
+}
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/BakersDozenBagels@Bakery/meta.json b/mods/BakersDozenBagels@Bakery/meta.json
index f3ea84fe..e421f480 100644
--- a/mods/BakersDozenBagels@Bakery/meta.json
+++ b/mods/BakersDozenBagels@Bakery/meta.json
@@ -11,5 +11,5 @@
"repo": "https://github.com/BakersDozenBagels/BalatroBakery",
"downloadURL": "https://github.com/BakersDozenBagels/BalatroBakery/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "488197e"
+ "version": "bc85bf0"
}
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 e9c48c25..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": "a13653e"
+ "version": "71485d9"
}
diff --git a/mods/Blazingulag@Prism/meta.json b/mods/Blazingulag@Prism/meta.json
index 76c84acb..24aa0e2b 100644
--- a/mods/Blazingulag@Prism/meta.json
+++ b/mods/Blazingulag@Prism/meta.json
@@ -10,5 +10,5 @@
"downloadURL": "https://github.com/blazingulag/Prism/archive/refs/heads/main.zip",
"folderName": "Prism",
"automatic-version-check": true,
- "version": "004aed3"
+ "version": "55d0533"
}
diff --git a/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/description.md b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/description.md
new file mode 100644
index 00000000..cfdcde97
--- /dev/null
+++ b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/description.md
@@ -0,0 +1,14 @@
+# Glowypumpkin
+
+This Mod is an overhaul of card textures, centered around the streamer Glowypumpkin and her community
+Changes include:
+-Suits, their names and colours;
+-Jokers;
+-Tarots;
+-Spectrals;
+-Enhancements;
+
+Art was made mainly by Orangesuit1, with some few exceptions made by AngyPeachy
+Technical modding was done by Butterspaceship
+
+THIS MOD REQUIRES STEAMODDED TO WORK
diff --git a/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json
new file mode 100644
index 00000000..8c2adaa7
--- /dev/null
+++ b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/meta.json
@@ -0,0 +1,13 @@
+{
+ "title": "Glowypumpkin Community Deck",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Resource Packs"
+ ],
+ "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": "V5.0",
+ "automatic-version-check": true
+}
diff --git a/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/thumbnail.jpg b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/thumbnail.jpg
new file mode 100644
index 00000000..b7b52ff8
Binary files /dev/null and b/mods/ButterSpaceship-Orangesuit1@Glowypumpkin-Community-Deck/thumbnail.jpg differ
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/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..9dfe2aa2
--- /dev/null
+++ b/mods/Deco@Pokerleven/meta.json
@@ -0,0 +1,15 @@
+{
+ "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.1a-BETA"
+}
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@NextAntePreview/meta.json b/mods/DigitalDetective47@NextAntePreview/meta.json
index 512df936..87cff58b 100644
--- a/mods/DigitalDetective47@NextAntePreview/meta.json
+++ b/mods/DigitalDetective47@NextAntePreview/meta.json
@@ -9,5 +9,5 @@
"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": "eca041d"
}
diff --git a/mods/DigitalDetective47@StrangePencil/meta.json b/mods/DigitalDetective47@StrangePencil/meta.json
index 7318bea2..a90c86d6 100644
--- a/mods/DigitalDetective47@StrangePencil/meta.json
+++ b/mods/DigitalDetective47@StrangePencil/meta.json
@@ -9,5 +9,5 @@
"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": "ea890e9"
}
diff --git a/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md
new file mode 100644
index 00000000..23c99ba9
--- /dev/null
+++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md
@@ -0,0 +1,14 @@
+# 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 155 new Jokers, consumables and more content
+(some other Joker is based on Spanish jokes)
+
+
+
+
+THIS MOD WAS CREATED THROUGH [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..74cb23fa
--- /dev/null
+++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Another Stupid Balatro Mod",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content"
+ ],
+ "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": "v3.3",
+ "automatic-version-check": true
+
+
+}
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/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/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/EricTheToon@Fortlatro/meta.json b/mods/EricTheToon@Fortlatro/meta.json
index cdd3df57..f78f3944 100644
--- a/mods/EricTheToon@Fortlatro/meta.json
+++ b/mods/EricTheToon@Fortlatro/meta.json
@@ -11,5 +11,5 @@
"repo": "https://github.com/EricTheToon/Fortlatro",
"downloadURL": "https://github.com/EricTheToon/Fortlatro/releases/latest/download/Fortlatro.zip",
"automatic-version-check": true,
- "version": "1.1.5"
+ "version": "1.1.8"
}
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 fe1a9a9b..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": "873790c"
+ "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..fa1bf1bf
--- /dev/null
+++ b/mods/Finnaware@Kyu-latro!/meta.json
@@ -0,0 +1,14 @@
+{
+ "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": "45f1e23",
+ "automatic-version-check": true
+}
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..a9736b53 100644
--- a/mods/Firch@Bunco/meta.json
+++ b/mods/Firch@Bunco/meta.json
@@ -9,8 +9,8 @@
],
"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.5c-JumboFork.zip",
"folderName": "Bunco",
- "version": "5.1",
- "automatic-version-check": false
+ "version": "v5.4.5c-JumboFork",
+ "automatic-version-check": true
}
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/Garb@GARBSHIT/meta.json b/mods/Garb@GARBSHIT/meta.json
index ca0f3e23..acae61a0 100644
--- a/mods/Garb@GARBSHIT/meta.json
+++ b/mods/Garb@GARBSHIT/meta.json
@@ -10,5 +10,5 @@
"downloadURL": "https://github.com/Gainumki/GARBSHIT/archive/refs/heads/main.zip",
"folderName": "GARBSHIT",
"automatic-version-check": true,
- "version": "6f227ef"
+ "version": "c5c9013"
}
diff --git a/mods/GitNether@Paperback/meta.json b/mods/GitNether@Paperback/meta.json
index c21d944d..acbf86ef 100644
--- a/mods/GitNether@Paperback/meta.json
+++ b/mods/GitNether@Paperback/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/GitNether/paperback",
"downloadURL": "https://github.com/GitNether/paperback/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "07539b3"
+ "version": "c44d460"
}
diff --git a/mods/Glitchkat10@Cryptposting/description.md b/mods/Glitchkat10@Cryptposting/description.md
new file mode 100644
index 00000000..16bb90c4
--- /dev/null
+++ b/mods/Glitchkat10@Cryptposting/description.md
@@ -0,0 +1,7 @@
+A collection of the Cryptid community's unfunniest shitposts.
+Requires Cryptid, obviously.
+Order of items in the collection is based off of the order that they were created in the [Cryptposting Idea Document](https://docs.google.com/document/d/1toiOWh2qfouhZYUSiBEgHxU91lbzgvMfR46bShg67Qs/edit?pli=1&tab=t.0).
+[Cartomancer](https://github.com/stupxd/Cartomancer) is highly recommended to be used with this mod.
+
+
+Join the [Cryptposting Discord](https://discord.gg/Jk9Q9usrNy)!
\ No newline at end of file
diff --git a/mods/Glitchkat10@Cryptposting/meta.json b/mods/Glitchkat10@Cryptposting/meta.json
new file mode 100644
index 00000000..f869b6c0
--- /dev/null
+++ b/mods/Glitchkat10@Cryptposting/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Cryptposting",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Glitchkat10 and Poker The Poker",
+ "repo": "https://github.com/kierkat10/Cryptposting",
+ "downloadURL": "https://github.com/kierkat10/Cryptposting/archive/refs/heads/main.zip",
+ "folderName": "Cryptposting",
+ "version": "8834802",
+ "automatic-version-check": true
+}
diff --git a/mods/Glitchkat10@Cryptposting/thumbnail.jpg b/mods/Glitchkat10@Cryptposting/thumbnail.jpg
new file mode 100644
index 00000000..edad43e0
Binary files /dev/null and b/mods/Glitchkat10@Cryptposting/thumbnail.jpg differ
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/GunnableScum@Visibility/description.md b/mods/GunnableScum@Visibility/description.md
new file mode 100644
index 00000000..85816aa2
--- /dev/null
+++ b/mods/GunnableScum@Visibility/description.md
@@ -0,0 +1,4 @@
+# Visibility
+Visibility is a Balatro Mod with a vanilla(-ish) style, adding **46** new Jokers, new Hand Types, Enhancements, Seals, and much more!
+
+This mod is aimed at those who are looking for a fun challenge with new Additions, think this sounds like your kinda thing? Give it a try!
\ No newline at end of file
diff --git a/mods/GunnableScum@Visibility/meta.json b/mods/GunnableScum@Visibility/meta.json
new file mode 100644
index 00000000..572df57c
--- /dev/null
+++ b/mods/GunnableScum@Visibility/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Visibility",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker",
+ "Miscellaneous"
+ ],
+ "author": "GunnableScum, InvisibleSides and Monachrome",
+ "repo": "https://github.com/GunnableScum/Visibility",
+ "downloadURL": "https://github.com/GunnableScum/Visibility/releases/latest/download/Visibility.zip",
+ "automatic-version-check": true,
+ "version": "v1.0.2"
+}
diff --git a/mods/GunnableScum@Visibility/thumbnail.jpg b/mods/GunnableScum@Visibility/thumbnail.jpg
new file mode 100644
index 00000000..16d8259a
Binary files /dev/null and b/mods/GunnableScum@Visibility/thumbnail.jpg differ
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 f4234d27..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": "c8ec9d3"
+ "version": "5d7fc48"
}
diff --git a/mods/HuyTheKiller@VietnameseBalatro/meta.json b/mods/HuyTheKiller@VietnameseBalatro/meta.json
index 6a203ff8..e34235d6 100644
--- a/mods/HuyTheKiller@VietnameseBalatro/meta.json
+++ b/mods/HuyTheKiller@VietnameseBalatro/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/HuyTheKiller/VietnameseBalatro",
"downloadURL": "https://github.com/HuyTheKiller/VietnameseBalatro/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "55a3bc2"
+ "version": "1d7b776"
}
diff --git a/mods/IcyEthics@BalatroGoesKino/meta.json b/mods/IcyEthics@BalatroGoesKino/meta.json
index af84ef34..2a471689 100644
--- a/mods/IcyEthics@BalatroGoesKino/meta.json
+++ b/mods/IcyEthics@BalatroGoesKino/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/icyethics/Kino",
"downloadURL": "https://github.com/icyethics/Kino/archive/refs/heads/main.zip",
"folderName": "Kino",
- "version": "fac1117",
+ "version": "b5ace76",
"automatic-version-check": true
}
diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json
index 6e226c57..de76d36f 100644
--- a/mods/InertSteak@Pokermon/meta.json
+++ b/mods/InertSteak@Pokermon/meta.json
@@ -11,5 +11,5 @@
"repo": "https://github.com/InertSteak/Pokermon",
"downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "403a1ca"
+ "version": "0f06e52"
}
diff --git a/mods/Itayfeder@FusionJokers/meta.json b/mods/Itayfeder@FusionJokers/meta.json
index e61ca65b..a17b0a38 100644
--- a/mods/Itayfeder@FusionJokers/meta.json
+++ b/mods/Itayfeder@FusionJokers/meta.json
@@ -10,5 +10,5 @@
"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": "efd4d70"
}
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..76236f35
--- /dev/null
+++ b/mods/ItsGraphax@RedditBonanza/meta.json
@@ -0,0 +1,15 @@
+{
+ "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",
+ "automatic-version-check": true
+}
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 359b61e3..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": "ac5c718",
+ "version": "acedd29",
"automatic-version-check": true
}
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/description.md b/mods/KROOOL@Tiendita's/description.md
new file mode 100644
index 00000000..8c8b193f
--- /dev/null
+++ b/mods/KROOOL@Tiendita's/description.md
@@ -0,0 +1,61 @@
+# Tiendita's
+
+**Tiendita's** Is a Balatro mod that adds a lot of new Jokers and who knows, maybe sometime we may add a lot more than just Jokers. We hope that everyone who comes across this mod finds it enjoyable and fun.
+(In case of finding a bug please tell us ;-;)
+## Features (at V1.0.5)
+- 20 new Jokers
+ - 6 common Jokers
+ - 7 uncommon Jokers
+ - 5 rare Jokers
+ - 2 legendary Jokers
+
+# The Jokers in question
+
+## Common Jokers
+### Alien Joker
+ +10 Chips per Planet Card used in the run
+### Bald Joker
+ +25 Mult, but 1 in 7 chance of getting a X0.8 Mult
+### Balloon
+ +5 Mult each round, the more it grows the most likely it becomes for it to pop
+### Junaluska
+ +120 Chips, 1 in 6 chance for the card to be destroyed
+### Red Delicious
+ X3 Chips, 1 in 1000 chance for the card to be destroyed
+### Piggy Bank
+ This Joker gains $1 of sell value per each $5 that the player owns when exiting the shop
+## Uncommon Jokers
+### D4C
+ If discard hand contains exactly three cards and two of them are of the same rank then all cards are destroyed
+### D6
+ Sell this Joker to destroy all other owned Jokers and create new random Jokers equal to the amount of Jokers destroyed
+### Baby Joker
+ This Joker gains X0.05 Mult each time a 2, 3, 4 or 5 is played
+### Bust
+ Retrigger all played Stone Cards
+### Headshot
+ This Joker gains X0.5 Mult when Blind is defeated using only 1 hand, if Blind isn't defeated then next time this Joker tries to activate it destroys itself
+### Lucky Clover
+ All played Club Cards have 1 in 4 chance to become Lucky Cards when scored
+### Other Half Joker
+ +30 Mult if played hand contains 2 or fewer cards
+## Rare Jokers
+### Damocles
+ X4 Mult, when blind is selected 1 in 6 chance to set play hands to 1 and lose all discards
+### Moai
+ This Joker gains X0.15 Chips when a Stone Card is destroyed and +25 Chips por each played Stone Card
+### Paleta Payaso
+ All Scored Face Cards have 1 in 2 chance to change to another Face Card, 1 in 4 chance to change its Enhancement, 1 in 8 chance to change its Edition
+### Snake
+ If played hand contains only 1 card then each time this card is played +2 hand size in the current round, -1 discard
+### Souls
+ After 7 rounds sell this card to create a free The Soul card
+## Legendary
+### Cepillin
+ Retrigger all played cards 4 additional times if played hand is High Card and contains 5 cards
+### Yu Sze
+ This Joker gains X0.2 Mult each time a stone card is scored
+
+# Requirements
+- [Steamodded](https://github.com/Steamopollys/Steamodded)
+- [Lovely](https://github.com/ethangreen-dev/lovely-injector)
\ No newline at end of file
diff --git a/mods/KROOOL@Tiendita's/meta.json b/mods/KROOOL@Tiendita's/meta.json
new file mode 100644
index 00000000..c7f304ab
--- /dev/null
+++ b/mods/KROOOL@Tiendita's/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Tiendita's",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "KROOOL",
+ "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": "7c01a1e",
+ "automatic-version-check": true
+}
diff --git a/mods/KROOOL@Tiendita's/thumbnail.jpg b/mods/KROOOL@Tiendita's/thumbnail.jpg
new file mode 100644
index 00000000..8b0388bd
Binary files /dev/null and b/mods/KROOOL@Tiendita's/thumbnail.jpg differ
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 418ed652..02848094 100644
--- a/mods/Larswijn@CardSleeves/meta.json
+++ b/mods/Larswijn@CardSleeves/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/larswijn/CardSleeves",
"downloadURL": "https://github.com/larswijn/CardSleeves/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "4250089"
+ "version": "c2a22f0"
}
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..85539e63
--- /dev/null
+++ b/mods/Lily@VallKarri/meta.json
@@ -0,0 +1,16 @@
+{
+ "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": "a331d94",
+ "automatic-version-check": true
+}
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/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 0fe28154..ecf0a58f 100644
--- a/mods/MathIsFun0@Cryptid/meta.json
+++ b/mods/MathIsFun0@Cryptid/meta.json
@@ -7,8 +7,8 @@
],
"author": "MathIsFun0",
"repo": "https://github.com/MathIsFun0/Cryptid",
- "downloadURL": "https://github.com/MathIsFun0/Cryptid/archive/refs/heads/main.zip",
+ "downloadURL": "https://github.com/MathIsFun0/Cryptid/archive/refs/tags/v0.5.12.zip",
"folderName": "Cryptid",
"automatic-version-check": true,
- "version": "6afd0c8"
+ "version": "v0.5.12"
}
diff --git a/mods/MathIsFun0@Talisman/meta.json b/mods/MathIsFun0@Talisman/meta.json
index 922bb005..f66b9a90 100644
--- a/mods/MathIsFun0@Talisman/meta.json
+++ b/mods/MathIsFun0@Talisman/meta.json
@@ -12,5 +12,5 @@
"downloadURL": "https://github.com/MathIsFun0/Talisman/releases/latest/download/Talisman.zip",
"folderName": "Talisman",
"automatic-version-check": true,
- "version": "v2.2.0a"
+ "version": "v2.4"
}
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..a75ae828 100644
--- a/mods/Mathguy@Grim/meta.json
+++ b/mods/Mathguy@Grim/meta.json
@@ -2,8 +2,12 @@
"title": "Grim",
"requires-steamodded": true,
"requires-talisman": false,
- "categories": ["Content"],
+ "categories": [
+ "Content"
+ ],
"author": "Mathguy",
"repo": "https://github.com/Mathguy23/Grim",
+ "automatic-version-check": true,
+ "version": "ba75fdc",
"downloadURL": "https://github.com/Mathguy23/Grim/archive/refs/heads/main.zip"
}
diff --git a/mods/Mathguy@Hit/meta.json b/mods/Mathguy@Hit/meta.json
index 2e576f1e..c854150e 100644
--- a/mods/Mathguy@Hit/meta.json
+++ b/mods/Mathguy@Hit/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/Mathguy23/Hit",
"downloadURL": "https://github.com/Mathguy23/Hit/archive/refs/heads/main.zip",
"folderName": "Hit",
- "version": "e08a254",
+ "version": "13e96f9",
"automatic-version-check": true
}
diff --git a/mods/MeraGenio@UnBlind/meta.json b/mods/MeraGenio@UnBlind/meta.json
index 3019716c..e3dafb97 100644
--- a/mods/MeraGenio@UnBlind/meta.json
+++ b/mods/MeraGenio@UnBlind/meta.json
@@ -7,7 +7,7 @@
],
"author": "MeraGenio",
"repo": "https://github.com/MeraGenio/UnBlind",
- "downloadURL": "https://github.com/MeraGenio/UnBlind/archive/refs/tags/1.1.zip",
+ "downloadURL": "https://github.com/MeraGenio/UnBlind/archive/refs/tags/1.2.1.zip",
"automatic-version-check": true,
- "version": "1.1"
+ "version": "1.2.1"
}
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..af3a0fba
--- /dev/null
+++ b/mods/MothBall@ModOfTheseus/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "2079f72",
+ "automatic-version-check": true
+}
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/Mysthaps@LobotomyCorp/meta.json b/mods/Mysthaps@LobotomyCorp/meta.json
index 11a24da4..659b290c 100644
--- a/mods/Mysthaps@LobotomyCorp/meta.json
+++ b/mods/Mysthaps@LobotomyCorp/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/Mysthaps/LobotomyCorp",
"downloadURL": "https://github.com/Mysthaps/LobotomyCorp/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "3b9561d"
+ "version": "0f1e90b"
}
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..ac754284
--- /dev/null
+++ b/mods/Nxkoo@Tangents/meta.json
@@ -0,0 +1,16 @@
+{
+ "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": "2717cc6",
+ "automatic-version-check": true
+}
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/PinkMaggit@Buffoonery/meta.json b/mods/PinkMaggit@Buffoonery/meta.json
index 1589df1d..c299443e 100644
--- a/mods/PinkMaggit@Buffoonery/meta.json
+++ b/mods/PinkMaggit@Buffoonery/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/pinkmaggit-hub/Buffoonery",
"downloadURL": "https://github.com/pinkmaggit-hub/Buffoonery/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "a028830"
+ "version": "b282125"
}
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..3d7483a2
--- /dev/null
+++ b/mods/Pinktheone@RegalsMod/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "35d5544",
+ "automatic-version-check": true
+}
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/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/Revo@Revo'sVault/meta.json b/mods/Revo@Revo'sVault/meta.json
index 346bfafd..439bcdd5 100644
--- a/mods/Revo@Revo'sVault/meta.json
+++ b/mods/Revo@Revo'sVault/meta.json
@@ -9,5 +9,5 @@
"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": "c287b12"
+ "version": "162f2ce"
}
diff --git a/mods/RoffleChat@Rofflatro/description.md b/mods/RoffleChat@Rofflatro/description.md
new file mode 100644
index 00000000..6ffe7208
--- /dev/null
+++ b/mods/RoffleChat@Rofflatro/description.md
@@ -0,0 +1,4 @@
+# Rofflatro!
+### by AlrexX (Lucky6), Maxx, canicao, GARB and UHadMeAtFood
+
+*Hey folks!* Today we're back with more **Rofflatro**, a vanilla-friendly mod made for streamer and content creator Roffle. This love letter to the community contains 30 new Jokers, a new Streamer Deck, and plenty of custom challenges, all referencing inside jokes in Roffle's chat and the Balatro community as a whole. *Enjoy the video!*
\ No newline at end of file
diff --git a/mods/RoffleChat@Rofflatro/meta.json b/mods/RoffleChat@Rofflatro/meta.json
new file mode 100644
index 00000000..6cff58a8
--- /dev/null
+++ b/mods/RoffleChat@Rofflatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Rofflatro",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Joker"
+ ],
+ "author": "Roffle's Chat",
+ "repo": "https://github.com/MamiKeRiko/Rofflatro",
+ "downloadURL": "https://github.com/MamiKeRiko/Rofflatro/archive/refs/tags/v1.2.0b.zip",
+ "folderName": "Rofflatro",
+ "version": "v1.2.0b",
+ "automatic-version-check": true
+}
diff --git a/mods/RoffleChat@Rofflatro/thumbnail.jpg b/mods/RoffleChat@Rofflatro/thumbnail.jpg
new file mode 100644
index 00000000..77123ca4
Binary files /dev/null and b/mods/RoffleChat@Rofflatro/thumbnail.jpg differ
diff --git a/mods/SDM0@SDM_0-s-Stuff/meta.json b/mods/SDM0@SDM_0-s-Stuff/meta.json
index c7c4857c..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": "7397d5a"
+ "version": "3a0e52b"
}
diff --git a/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json b/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
index 0213d123..7fb36fcf 100644
--- a/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
+++ b/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json
@@ -10,6 +10,6 @@
"repo": "https://github.com/smg9000/Cryptid-MoreMarioJokers",
"downloadURL": "https://github.com/smg9000/Cryptid-MoreMarioJokers/archive/refs/heads/main.zip",
"folderName": "Cryptid-MoreMarioJokers",
- "version": "5505084",
+ "version": "3ff62a1",
"automatic-version-check": true
}
diff --git a/mods/SNC@UTY/description.md b/mods/SNC@UTY/description.md
new file mode 100644
index 00000000..82d67835
--- /dev/null
+++ b/mods/SNC@UTY/description.md
@@ -0,0 +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
+
+This mod has compatibility with:
+* Joker Display
+* Partner
diff --git a/mods/SNC@UTY/meta.json b/mods/SNC@UTY/meta.json
new file mode 100644
index 00000000..c7f8f2c4
--- /dev/null
+++ b/mods/SNC@UTY/meta.json
@@ -0,0 +1,12 @@
+{
+ "title": "Kevin's UTY",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "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",
+ "folderName": "KevinsUTY",
+ "version": "1.0.0",
+ "automatic-version-check": false
+ }
diff --git a/mods/SNC@UTY/thumbnail.jpg b/mods/SNC@UTY/thumbnail.jpg
new file mode 100644
index 00000000..bdfdc1de
Binary files /dev/null and b/mods/SNC@UTY/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..124a11ce
--- /dev/null
+++ b/mods/SebasContre@Sebalatro/meta.json
@@ -0,0 +1,14 @@
+{
+ "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": "ddccb1f"
+}
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/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 9dd6fbd2..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": "722d5d5"
+ "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..c1cdcb52 100644
--- a/mods/SleepyG11@HandyBalatro/meta.json
+++ b/mods/SleepyG11@HandyBalatro/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/SleepyG11/HandyBalatro",
"downloadURL": "https://github.com/SleepyG11/HandyBalatro/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "edc5735"
+ "version": "1d4ba50"
}
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 31528512..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": "16c3f73"
+ "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/SparklesRolf@Furlatro/description.md b/mods/SparklesRolf@Furlatro/description.md
new file mode 100644
index 00000000..fe2ad9ec
--- /dev/null
+++ b/mods/SparklesRolf@Furlatro/description.md
@@ -0,0 +1,23 @@
+# Furlatro. The Furry Balatro Mod!
+
+THE Furry modpack for balatro. A passion side project brought to life!
+
+# Additions
+
+Introduces 15 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!)
+
+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 [Talisman](https://github.com/SpectralPack/Talisman/releases)
\ No newline at end of file
diff --git a/mods/SparklesRolf@Furlatro/meta.json b/mods/SparklesRolf@Furlatro/meta.json
new file mode 100644
index 00000000..2150a633
--- /dev/null
+++ b/mods/SparklesRolf@Furlatro/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "Furlatro",
+ "requires-steamodded": true,
+ "requires-talisman": true,
+ "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.0.7",
+ "automatic-version-check": true
+}
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 ec998960..742673b6 100644
--- a/mods/Squidguset@TooManyDecks/meta.json
+++ b/mods/Squidguset@TooManyDecks/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/Squidguset/TooManyDecks",
"downloadURL": "https://github.com/Squidguset/TooManyDecks/archive/refs/heads/main.zip",
"folderName": "TooManyDecks",
- "version": "4e3061c",
+ "version": "c052cf4",
"automatic-version-check": true
}
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 ab48a46b..fb4cd91d 100644
--- a/mods/Steamodded@smods/meta.json
+++ b/mods/Steamodded@smods/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/Steamodded/smods",
"downloadURL": "https://github.com/Steamodded/smods/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "cca2590"
+ "version": "dfc5cba"
}
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 0dc51b9f..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-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-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 df731832..0546b752 100644
--- a/mods/TOGAPack@TheOneGoofAli/meta.json
+++ b/mods/TOGAPack@TheOneGoofAli/meta.json
@@ -8,7 +8,7 @@
],
"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.9.3.zip",
"automatic-version-check": true,
- "version": "ac81e2b"
+ "version": "1.9.3"
}
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 03776488..2e0eda28 100644
--- a/mods/TeamToaster@Plantain/meta.json
+++ b/mods/TeamToaster@Plantain/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/IcebergLettuce0/Plantain",
"downloadURL": "https://github.com/IcebergLettuce0/Plantain/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "b31199b"
+ "version": "541d16b"
}
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..bec81fa1
--- /dev/null
+++ b/mods/Th30ne@GrabBag/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "52de290"
+}
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..dca3e742 100644
--- a/mods/TheMotherfuckingBearodactyl@Insolence/meta.json
+++ b/mods/TheMotherfuckingBearodactyl@Insolence/meta.json
@@ -7,8 +7,8 @@
],
"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.5.zip",
"folderName": "Insolence",
- "version": "1.1.0",
+ "version": "2.1.5",
"automatic-version-check": true
}
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 ee40874c..354409e4 100644
--- a/mods/Trif3ctal@LuckyRabbit/meta.json
+++ b/mods/Trif3ctal@LuckyRabbit/meta.json
@@ -3,12 +3,13 @@
"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": "2e906d4"
+ "version": "4c7fbab"
}
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/meta.json b/mods/Virtualized@Multiplayer/meta.json
index 264d3cf0..cb9183b0 100644
--- a/mods/Virtualized@Multiplayer/meta.json
+++ b/mods/Virtualized@Multiplayer/meta.json
@@ -9,8 +9,8 @@
],
"author": "Virtualized",
"repo": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer",
- "downloadURL": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer/releases/latest/download/BalatroMultiplayer.zip",
+ "downloadURL": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer/releases/latest/download/BalatroMultiplayer-v0.2.16.zip",
"folderName": "Multiplayer",
"automatic-version-check": true,
- "version": "v0.2.8"
+ "version": "v0.2.16"
}
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/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..6e5484f8 100644
--- a/mods/baimao@Partner/meta.json
+++ b/mods/baimao@Partner/meta.json
@@ -8,7 +8,7 @@
],
"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",
+ "downloadURL": "https://github.com/Icecanno/Partner-API/archive/refs/tags/1.0.2e.zip",
+ "version": "1.0.2e",
"automatic-version-check": true
}
diff --git a/mods/cg223@TooManyJokers/meta.json b/mods/cg223@TooManyJokers/meta.json
index ccb41842..1bcea605 100644
--- a/mods/cg223@TooManyJokers/meta.json
+++ b/mods/cg223@TooManyJokers/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/cg-223/toomanyjokers",
"downloadURL": "https://github.com/cg-223/toomanyjokers/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "bb6942a"
+ "version": "41137d5"
}
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..90692d38
--- /dev/null
+++ b/mods/cokeblock@cokelatro/meta.json
@@ -0,0 +1,14 @@
+{
+ "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": "V0.6.0B",
+ "automatic-version-check": true
+}
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/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/its-edalo@slay-the-jokers/meta.json b/mods/its-edalo@slay-the-jokers/meta.json
index 0aebae37..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": "229bc99",
+ "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@typist/meta.json b/mods/kasimeka@typist/meta.json
index 626b1897..74c6ac7a 100644
--- a/mods/kasimeka@typist/meta.json
+++ b/mods/kasimeka@typist/meta.json
@@ -8,8 +8,8 @@
],
"author": "kasimeka",
"repo": "https://github.com/kasimeka/balatro-typist-mod",
- "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.7.2.zip",
+ "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.8.3.zip",
"automatic-version-check": true,
- "version": "1.7.2",
- "last-updated": 1746669345
-}
+ "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..ce0d3ddc 100644
--- a/mods/kcgidw@kcvanilla/meta.json
+++ b/mods/kcgidw@kcvanilla/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/kcgidw/kcvanilla",
"downloadURL": "https://github.com/kcgidw/kcvanilla/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "bbf9244"
+ "version": "a4a10f8"
}
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 8028c296..9aaa399f 100644
--- a/mods/lordruby@Entropy/meta.json
+++ b/mods/lordruby@Entropy/meta.json
@@ -9,6 +9,6 @@
"repo": "https://github.com/lord-ruby/Entropy",
"downloadURL": "https://github.com/lord-ruby/Entropy/archive/refs/heads/main.zip",
"folderName": "Entropy",
- "version": "49a95c3",
+ "version": "f761cc1",
"automatic-version-check": true
}
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 bc8a074f..909ed0d7 100644
--- a/mods/nh6574@JokerDisplay/meta.json
+++ b/mods/nh6574@JokerDisplay/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/nh6574/JokerDisplay",
"downloadURL": "https://github.com/nh6574/JokerDisplay/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "f29d18b"
+ "version": "e0a2bf3"
}
diff --git a/mods/nh6574@JoyousSpring/meta.json b/mods/nh6574@JoyousSpring/meta.json
index bd8c1f31..6ddfda4d 100644
--- a/mods/nh6574@JoyousSpring/meta.json
+++ b/mods/nh6574@JoyousSpring/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/nh6574/JoyousSpring",
"downloadURL": "https://github.com/nh6574/JoyousSpring/archive/refs/heads/master.zip",
"automatic-version-check": true,
- "version": "1f60413"
+ "version": "6e37600"
}
diff --git a/mods/notmario@MoreFluff/meta.json b/mods/notmario@MoreFluff/meta.json
index 7116f2bf..2655603d 100644
--- a/mods/notmario@MoreFluff/meta.json
+++ b/mods/notmario@MoreFluff/meta.json
@@ -10,5 +10,5 @@
"repo": "https://github.com/notmario/MoreFluff",
"downloadURL": "https://github.com/notmario/MoreFluff/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "bbb3cf1"
+ "version": "a809883"
}
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..8b5d5370
--- /dev/null
+++ b/mods/peakshitposts@peakshitmod/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "newer",
+ "automatic-version-check": true
+}
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/description.md b/mods/pi_cubed@pi_cubedsJokers/description.md
index 187676f5..c9e6ccc5 100644
--- a/mods/pi_cubed@pi_cubedsJokers/description.md
+++ b/mods/pi_cubed@pi_cubedsJokers/description.md
@@ -1,16 +1,52 @@
-Adds a bunch of new vanilla-esc jokers that expand your choices in how you play and craft strong builds! All jokers and their art were personally developed by me, with a great amount of dev help from the Balatro Discord #modding-dev channel.
+Adds a bunch of new vanilla-esque jokers that expand your choices in how you play and craft strong builds! All jokers and their art were personally developed by me, with a great amount of dev help from the Balatro Discord #modding-dev channel.
Most art currently is developer art, and many more jokers (at least 30!) and a few extras are planned to be added too (see the sheet).
### Requirements:
-Steamodded 1.0.0~BETA-0301b or later
+Steamodded 1.0.0~BETA-0530b or newer
## External Links
-### Github Page:
-https://github.com/pi-cubed-cat/pi_cubeds_jokers
+### Modded Wiki Page:
+https://balatromods.miraheze.org/wiki/Pi_cubed%27s_Jokers
### Joker Info, Patch Notes, & Roadmap Sheet:
https://docs.google.com/spreadsheets/d/1s2MFswjKUeVcx3W0Cylmya1ZfFvx2fiQZD42ZThxd5Q/edit?usp=sharing
### Discord Discussion Thread:
https://discord.com/channels/1116389027176787968/1348621804696240201
+
+## Recommended Mods
+### Partner by baimao
+pi_cubed's Jokers adds 4 new Partners!
+https://github.com/Icecanno/Partner-API
+
+### Opandora's Box by opan
+A Joker pack I really enjoy with some interesting synergies, and stellar music.
+https://github.com/ohpahn/opandoras-box
+
+### Extra Credit by CampfireCollective & more
+https://github.com/GuilloryCraft/ExtraCredit
+
+### Neato Jokers by NEATO
+https://github.com/neatoqueen/NeatoJokers
+
+### Paperback by PaperMoon, OppositeWolf770, srockw, GitNether, Victin, BBBalatroMod, & more
+The Bisexual Flag Joker is compatible with additional suits.
+https://github.com/GitNether/paperback
+
+### Cryptid by MathIsFun_ & many more
+I've put a big focus on making sure the Misprint Deck behaves properly with all Jokers!
+https://github.com/SpectralPack/Cryptid
+
+## Config Options
+A game restart is required for Config options to take effect.
+
+### New Spectral Cards
+As of writing, this option simply enables or disables Commander from appearing. In future, this will also affect any additional Spectral cards I plan to add.
+
+### Preorder Bonus' Hook
+Turn this option off to rework the Joker's mechanics very slightly to remove its hook that I (very jankily) implemented. This option may be useful if you're experiencing conflicts regarding setting the cost of Booster Packs.
+
+### Custom Sound Effects
+Enables or disables any custom sound effects I've implemented into the mod. Currently, this affects Rhythmic Joker, Explosher, On-beat, Off-beat, and Pot.
+
diff --git a/mods/pi_cubed@pi_cubedsJokers/meta.json b/mods/pi_cubed@pi_cubedsJokers/meta.json
index c21d3836..cf1d3eac 100644
--- a/mods/pi_cubed@pi_cubedsJokers/meta.json
+++ b/mods/pi_cubed@pi_cubedsJokers/meta.json
@@ -8,6 +8,6 @@
"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": "dd5fe45",
+ "version": "639b657",
"automatic-version-check": true
}
diff --git a/mods/pi_cubed@pi_cubedsJokers/thumbnail.jpg b/mods/pi_cubed@pi_cubedsJokers/thumbnail.jpg
index 540c8ef8..4bb46534 100644
Binary files a/mods/pi_cubed@pi_cubedsJokers/thumbnail.jpg and b/mods/pi_cubed@pi_cubedsJokers/thumbnail.jpg differ
diff --git a/mods/riosodu@black-seal/meta.json b/mods/riosodu@black-seal/meta.json
index 183fcd28..69a5b881 100644
--- a/mods/riosodu@black-seal/meta.json
+++ b/mods/riosodu@black-seal/meta.json
@@ -10,5 +10,6 @@
"downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/black-seal__latest/black-seal.zip",
"folderName": "black-seal",
"automatic-version-check": true,
- "version": "black-seal__latest"
+ "fixed-release-tag-updates": true,
+ "version": "20250730_013836"
}
diff --git a/mods/riosodu@qol-bundle/description.md b/mods/riosodu@qol-bundle/description.md
new file mode 100644
index 00000000..f9d688a0
--- /dev/null
+++ b/mods/riosodu@qol-bundle/description.md
@@ -0,0 +1,28 @@
+# QOL Bundle
+
+A collection of quality-of-life improvements for Balatro.
+
+## How It Works
+
+This mod provides several small adjustments to gameplay mechanics to enhance the overall experience, particularly when using other mods that add new content.
+
+## 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.
+- **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.
+- **Nerf Photochad**: Makes Photograph and Hanging Chad jokers Uncommon rarity.
+
+## Installation
+
+1. **Requirements**: Download and install [Steamodded](https://github.com/Steamodded/smods)
+2. **Download**: Get the latest version of QOL Bundle from the releases
+3. **Install Location**: Extract to `%appdata%\Balatro\Mods` on Windows
+
+## Support
+
+For issues, suggestions, or contributions, please visit the [GitHub repository](https://github.com/gfreitash/balatro-mods).
diff --git a/mods/riosodu@qol-bundle/meta.json b/mods/riosodu@qol-bundle/meta.json
new file mode 100644
index 00000000..ac51a27e
--- /dev/null
+++ b/mods/riosodu@qol-bundle/meta.json
@@ -0,0 +1,15 @@
+{
+ "title": "QoL Bundle",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "Riosodu",
+ "repo": "https://github.com/gfreitash/balatro-mods",
+ "downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/qol-bundle__latest/qol-bundle.zip",
+ "folderName": "qol-bundle",
+ "automatic-version-check": true,
+ "fixed-release-tag-updates": true,
+ "version": "20250817_182329"
+}
diff --git a/mods/riosodu@rebalanced-stakes/description.md b/mods/riosodu@rebalanced-stakes/description.md
new file mode 100644
index 00000000..dca4e6df
--- /dev/null
+++ b/mods/riosodu@rebalanced-stakes/description.md
@@ -0,0 +1,35 @@
+# Rebalanced Stakes
+
+This mod aims to provide a more engaging and balanced difficulty curve for Balatro's higher Stakes, particularly addressing the often-criticized `-1 Discard` penalty of the vanilla Blue Stake. As acknowledged by LocalThunk, that modifier could feel overly punishing and have limited the viability of bigger size poker hands; this mod offers an alternative approach while that change is pending in the vanilla game.
+
+## How It Works
+Instead of introducing entirely new harsh mechanics early on, this mod shifts existing shop Joker limitations (Perishable, Rental) to earlier Stakes (Blue and Orange, respectively). The Gold Stake is then redesigned to offer a distinct economic and endurance challenge.
+
+## Key Features
+- **Blue Stake (Stake 5):**
+ - Removes the `-1 Discard` penalty
+ - Introduces Perishable Jokers to the shop pool *(effect moved from vanilla Orange Stake)*
+
+- **Orange Stake (Stake 7):**
+ - Removes the Perishable Joker effect
+ - Introduces Rental Jokers to the shop pool *(effect moved from vanilla Gold Stake)*
+
+- **Gold Stake (Stake 8):**
+ - Removes the Rental Joker effect
+ - Introduces two significant new challenges:
+ - **Increased Interest Threshold:** You now need **_$6_** (up from **_$5_**) to earn each dollar of interest.
+ The interest cap scales accordingly (_$30_ -> _$60_ -> _$120_) so you can still gain up to _$5_, _$10_ _(Seed Money)_ and _$20_ _(Money Tree)_
+ - **Increased Run Length:** The Final Ante required to win is increased to **Ante 9** _(up from Ante 8)_
+
+## Installation
+1. **Requirements**: Download and install [Steamodded](https://github.com/Steamodded/smods)
+2. **Download**: Get the latest version of Rebalanced Stakes from the releases
+3. **Install Location**: Extract to `%appdata%\Balatro\Mods` on Windows
+
+## Design Notes
+The goal is a smoother ramp-up of difficulty, without limiting the hand types you can play while also having a challenging final stake that tests your economic management and run longevity rather than just adding more restrictions.
+
+*Note: On gold stake, instead of the interest rework, at first I tried removing the rewards of big blind. Turns out it was an even more awful experience than -1 discard. The greatly reduced money income coupled with rental jokers was just brutal.*
+
+## Support
+Suggestions and feedback are welcome! Let me know what you think of the rebalanced progression.
diff --git a/mods/riosodu@rebalanced-stakes/meta.json b/mods/riosodu@rebalanced-stakes/meta.json
new file mode 100644
index 00000000..c025fe07
--- /dev/null
+++ b/mods/riosodu@rebalanced-stakes/meta.json
@@ -0,0 +1,16 @@
+{
+ "title": "Rebalanced Stakes",
+ "requires-steamodded": true,
+ "requires-talisman": false,
+ "categories": [
+ "Content",
+ "Miscellaneous"
+ ],
+ "author": "Riosodu",
+ "repo": "https://github.com/gfreitash/balatro-mods",
+ "downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/rebalanced-stakes__latest/rebalanced-stakes.zip",
+ "folderName": "rebalanced-stakes",
+ "automatic-version-check": true,
+ "fixed-release-tag-updates": true,
+ "version": "20250708_032641"
+}
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 ea301244..b4fef520 100644
--- a/mods/stupxd@Cartomancer/meta.json
+++ b/mods/stupxd@Cartomancer/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/stupxd/Cartomancer",
"downloadURL": "https://github.com/stupxd/Cartomancer/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "1e64baf"
+ "version": "9a1959e"
}
diff --git a/mods/termisaal@MainMenuTweaks/meta.json b/mods/termisaal@MainMenuTweaks/meta.json
index b9ce7a88..badf5ef4 100644
--- a/mods/termisaal@MainMenuTweaks/meta.json
+++ b/mods/termisaal@MainMenuTweaks/meta.json
@@ -1,14 +1,14 @@
-{
- "title": "Main Menu Tweaks",
- "requires-steamodded": false,
- "requires-talisman": false,
- "categories": [
- "Quality of Life"
- ],
- "author": "termisaal & seven_kd_irl",
- "folderName": "MainMenuTweaks",
- "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"
-}
+{
+ "title": "Main Menu Tweaks",
+ "requires-steamodded": false,
+ "requires-talisman": false,
+ "categories": [
+ "Quality of Life"
+ ],
+ "author": "termisaal & seven_kd_irl",
+ "folderName": "MainMenuTweaks",
+ "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": "5c976d0"
+}
diff --git a/mods/theAstra@Maximus/meta.json b/mods/theAstra@Maximus/meta.json
index 41c76abf..3b70c858 100644
--- a/mods/theAstra@Maximus/meta.json
+++ b/mods/theAstra@Maximus/meta.json
@@ -9,5 +9,5 @@
"repo": "https://github.com/the-Astra/Maximus",
"downloadURL": "https://github.com/the-Astra/Maximus/archive/refs/heads/main.zip",
"automatic-version-check": true,
- "version": "5d5afa7"
+ "version": "9ba489a"
}
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 e7d8da1f..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.0/MintysSillyMod-0.6.0.zip",
+ "downloadURL": "https://github.com/wingedcatgirl/MintysSillyMod/archive/refs/tags/v0.7.3.zip",
"automatic-version-check": false,
- "version": "v0.6.0"
+ "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 f091e1e9..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.6.0/SpectrumFramework-0.6.0.zip",
+ "downloadURL": "https://github.com/wingedcatgirl/SpectrumFramework/releases/download/v0.8.1/SpectrumFramework-0.8.1.zip",
"automatic-version-check": false,
- "version": "v0.6.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..065aee75
--- /dev/null
+++ b/mods/wingedcatgirl@reUnlockAll/meta.json
@@ -0,0 +1,15 @@
+{
+ "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": "267e56d"
+}
diff --git a/schema/meta.schema.json b/schema/meta.schema.json
index 97cc4a4e..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
@@ -42,11 +50,98 @@
"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."
+ }
+ }
+ ]
}