diff --git a/.github/scripts/update_mod_versions.py b/.github/scripts/update_mod_versions.py index 6b577d70..2b8e552d 100755 --- a/.github/scripts/update_mod_versions.py +++ b/.github/scripts/update_mod_versions.py @@ -27,14 +27,22 @@ def extract_repo_info(repo_url): return None, None VersionSource = Enum("VersionSource", [ - ("RELEASE_TAG", "release"), + ("LATEST_TAG", "release"), ("HEAD", "commit"), + ("SPECIFIC_TAG", "specific_tag"), ]) -def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1): +def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1, tag_data=None): """Get the version string from a given GitHub repo.""" - if source is VersionSource.RELEASE_TAG: + if source is VersionSource.LATEST_TAG: url = f'https://api.github.com/repos/{owner}/{repo}/releases/latest' + elif source is VersionSource.SPECIFIC_TAG: + if not tag_data: + print(f"ERROR: SPECIFIC_TAG source requires tag_name") + return None + + tag_name = tag_data['name'] + url = f'https://api.github.com/repos/{owner}/{repo}/releases/tags/{tag_name}' else: if not source is VersionSource.HEAD: print(f"UNIMPLEMENTED(VersionSource): `{source}`,\nfalling back to `HEAD`") @@ -58,10 +66,33 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1): if response.status_code == 200: data = response.json() - if source is VersionSource.RELEASE_TAG: + if source is VersionSource.LATEST_TAG: # Return name of latest tag return data.get('tag_name') + elif source is VersionSource.SPECIFIC_TAG: + assets = data.get('assets', []) + if not assets: + print(f"⚠️ No assets found in release {tag_name}") + return None + + latest_created_at = "" + latest_asset = None + + for asset in assets: + created_at = asset.get('created_at', '') + if created_at > latest_created_at: + latest_created_at = created_at + latest_asset = asset['name'] + + # Convert 2099-12-31T01:02:03Z to 20991231_010203 + parts = latest_created_at.replace('Z', '').split('T') + date_part = parts[0].replace('-', '') # 20991231 + time_part = parts[1].replace(':', '') # 010203 + version = f"{date_part}_{time_part}" # 20991231_010203 + tag_data['file'] = latest_asset + return version + if data and len(data) > 0: # Return shortened commit hash (first 7 characters) return data[0]['sha'][:7] @@ -98,7 +129,7 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1): print(f"Waiting {wait_time} seconds until next attempt...") time.sleep(wait_time) n += 1 - return get_version_string(source, owner, repo, start_timestamp, n) # Retry + return get_version_string(source, owner, repo, start_timestamp, n, tag_data=tag_data) # Retry else: print(f"Next attempt in {wait_time} seconds, but Action run time would exceed 1800 seconds - Stopping...") sys.exit(1) @@ -165,10 +196,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: @@ -192,6 +235,8 @@ def process_mod(start_timestamp, name, meta_file): meta['version'] = new_version if "/archive/refs/tags/" in download_url: meta['downloadURL'] = f"{repo_url}/archive/refs/tags/{meta['version']}.zip" + elif source == VersionSource.SPECIFIC_TAG: + meta['downloadURL'] = f"{repo_url}/releases/download/{tag_data['name']}/{tag_data['file']}" with open(meta_file, 'w', encoding='utf-8') as f: # Preserve formatting with indentation @@ -241,4 +286,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/Greener Jokers Thumbnail.jpg b/mods/ABuffZucchini@GreenerJokers/Greener Jokers Thumbnail.jpg new file mode 100644 index 00000000..9602b869 Binary files /dev/null and b/mods/ABuffZucchini@GreenerJokers/Greener Jokers 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..ef6c79a0 --- /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": "2560f0b", + "automatic-version-check": true +} 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: + +Jokers page 1 +Jokers page 2 +Jokers page 3 + + +Decks: + +Royal Deck +Voucher Deck +Big Deck + + +Sin Spectral Card: + +Sin Spectral Card + + +Enhancements: + +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 + +Plushie Deck diff --git a/mods/AbsentAbigail@AbsentDealer/meta.json b/mods/AbsentAbigail@AbsentDealer/meta.json new file mode 100644 index 00000000..c476559b --- /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.2.0", + "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/AgentWill@MikuJimbo/description.md b/mods/AgentWill@MikuJimbo/description.md new file mode 100644 index 00000000..5eda1e2e --- /dev/null +++ b/mods/AgentWill@MikuJimbo/description.md @@ -0,0 +1,9 @@ +# Joker Miku over Jimbo +Replaces the default "Jimbo" Joker with art of Joker Miku

+## Credits +Texture mod originally made by [WitchofV](https://www.nexusmods.com/balatro/users/61309311) on [Nexus](https://www.nexusmods.com/balatro/mods/170)
+Updated by me ([AgentWill](https://github.com/AgentWill)) to work with [Malverk](https://github.com/Eremel/Malverk) +## Art +Art by [Kaatokunart](https://bsky.app/profile/kaatokunart.bsky.social) on Bluesky +## Requirements +Requires [Malverk](https://github.com/Eremel/Malverk) \ No newline at end of file diff --git a/mods/AgentWill@MikuJimbo/meta.json b/mods/AgentWill@MikuJimbo/meta.json new file mode 100644 index 00000000..1755d3ea --- /dev/null +++ b/mods/AgentWill@MikuJimbo/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Joker Miku over Jimbo", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "AgentWill", + "repo": "https://github.com/AgentWill/MikuJimbo", + "downloadURL": "https://github.com/AgentWill/MikuJimbo/archive/refs/heads/main.zip", + "folderName": "MikuJimbo", + "automatic-version-check": true, + "version": "5576478" +} diff --git a/mods/AgentWill@MikuJimbo/thumbnail.jpg b/mods/AgentWill@MikuJimbo/thumbnail.jpg new file mode 100644 index 00000000..12bcfbe5 Binary files /dev/null and b/mods/AgentWill@MikuJimbo/thumbnail.jpg differ diff --git a/mods/AgentWill@WaifuJokers/description.md b/mods/AgentWill@WaifuJokers/description.md new file mode 100644 index 00000000..4a1d5104 --- /dev/null +++ b/mods/AgentWill@WaifuJokers/description.md @@ -0,0 +1,9 @@ +# Waifu Jokers +Texture pack that replaces many joker faces with altered illustrations of waifu jokers

+## Credits +Texture mod originally made by [Gibovich](https://www.nexusmods.com/balatro/users/20767164) on [Nexus](https://www.nexusmods.com/balatro/mods/260)
+Updated by me ([AgentWill](https://github.com/AgentWill)) to work with [Malverk](https://github.com/Eremel/Malverk) +## Art +Art by [hosses21](https://x.com/hosses21) on twitter +## Requirements +Requires [Malverk](https://github.com/Eremel/Malverk) \ No newline at end of file diff --git a/mods/AgentWill@WaifuJokers/meta.json b/mods/AgentWill@WaifuJokers/meta.json new file mode 100644 index 00000000..eee18e6c --- /dev/null +++ b/mods/AgentWill@WaifuJokers/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Waifu Jokers", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "AgentWill", + "repo": "https://github.com/AgentWill/WaifuJokers", + "downloadURL": "https://github.com/AgentWill/WaifuJokers/archive/refs/heads/main.zip", + "folderName": "WaifuJokers", + "automatic-version-check": true, + "version": "711d45a" +} diff --git a/mods/AgentWill@WaifuJokers/thumbnail.jpg b/mods/AgentWill@WaifuJokers/thumbnail.jpg new file mode 100644 index 00000000..06797ccb Binary files /dev/null and b/mods/AgentWill@WaifuJokers/thumbnail.jpg differ diff --git a/mods/Agoraaa@FlushHotkeys/meta.json b/mods/Agoraaa@FlushHotkeys/meta.json index 8b5e302a..a4b46aec 100644 --- a/mods/Agoraaa@FlushHotkeys/meta.json +++ b/mods/Agoraaa@FlushHotkeys/meta.json @@ -6,8 +6,9 @@ "Quality of Life" ], "author": "Agoraaa", + "folderName": "FlushHotkeys", "repo": "https://github.com/Agoraaa/FlushHotkeys", "downloadURL": "https://github.com/Agoraaa/FlushHotkeys/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "076d296" + "version": "ac9d035" } diff --git a/mods/BakersDozenBagels@Bakery/meta.json b/mods/BakersDozenBagels@Bakery/meta.json index bf360095..ffa09b39 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": "5f89d04" + "version": "01bff10" } diff --git a/mods/BarrierTrio@Cardsauce/description.md b/mods/BarrierTrio@Cardsauce/description.md index 365cd8bb..b3085e47 100644 --- a/mods/BarrierTrio@Cardsauce/description.md +++ b/mods/BarrierTrio@Cardsauce/description.md @@ -1,7 +1,7 @@ # Cardsauce A Balatro mod made for Vinesauce! -**Cardsauce** is a Vinesauce-themed expansion for Balatro, made in collaboration with the Balatro Discord and Vinesauce communities! Featuring art from several talented artists, Cardsauce adds 70 new Jokers, as well as a handful of other new additions to the game. +**Cardsauce** is a Vinesauce-themed expansion for Balatro, made in collaboration with the Balatro Discord and Vinesauce communities! Featuring art from several talented artists, Cardsauce adds 120 new Jokers, as well as a lot of other new additions to the game. [Join the discord here!](https://discord.gg/evwdM4Tvc5) diff --git a/mods/BarrierTrio@Cardsauce/meta.json b/mods/BarrierTrio@Cardsauce/meta.json index bdb3f2e6..9aba928d 100644 --- a/mods/BarrierTrio@Cardsauce/meta.json +++ b/mods/BarrierTrio@Cardsauce/meta.json @@ -9,7 +9,8 @@ ], "author": "BarrierTrio & Keku", "repo": "https://github.com/BarrierTrio/Cardsauce", - "downloadURL": "https://github.com/BarrierTrio/Cardsauce/releases/latest/download/Cardsauce.zip", + "downloadURL": "https://github.com/BarrierTrio/Cardsauce/archive/refs/heads/main.zip", + "folderName": "Cardsauce", "automatic-version-check": true, - "version": "Update1.4.1" + "version": "c19c7b4" } diff --git a/mods/BarrierTrio@Cardsauce/thumbnail.jpg b/mods/BarrierTrio@Cardsauce/thumbnail.jpg index c4abc331..ee248648 100644 Binary files a/mods/BarrierTrio@Cardsauce/thumbnail.jpg and b/mods/BarrierTrio@Cardsauce/thumbnail.jpg differ diff --git a/mods/Betmma@BetmmaMods/meta.json b/mods/Betmma@BetmmaMods/meta.json index 4c5833a3..56999022 100644 --- a/mods/Betmma@BetmmaMods/meta.json +++ b/mods/Betmma@BetmmaMods/meta.json @@ -9,5 +9,5 @@ "repo": "https://github.com/betmma/my_balatro_mods", "downloadURL": "https://github.com/betmma/my_balatro_mods/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "9f1673d" + "version": "b233911" } diff --git a/mods/Blazingulag@Prism/meta.json b/mods/Blazingulag@Prism/meta.json index ecd38595..2fecc676 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": "25a7daf" + "version": "9b70bf8" } 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..761d8aa6 --- /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": "V4.4", + "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/description.md b/mods/CampfireCollective@ExtraCredit/description.md new file mode 100644 index 00000000..f49ea569 --- /dev/null +++ b/mods/CampfireCollective@ExtraCredit/description.md @@ -0,0 +1,12 @@ +# Extra Credit +A small-scale vanilla-style content mod for Balatro University. + +## Features + +- 45 jokers with new effects and art :) + +- 3 cool new decks too! + +## Credits + +Made by CampfireCollective and Balatro University Community. diff --git a/mods/CampfireCollective@ExtraCredit/meta.json b/mods/CampfireCollective@ExtraCredit/meta.json new file mode 100644 index 00000000..32266730 --- /dev/null +++ b/mods/CampfireCollective@ExtraCredit/meta.json @@ -0,0 +1,14 @@ +{ + "title": "ExtraCredit", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Joker", + "Content" + ], + "author": "CampfireCollective", + "repo": "https://github.com/GuilloryCraft/ExtraCredit", + "downloadURL": "https://github.com/GuilloryCraft/ExtraCredit/archive/refs/heads/main.zip", + "automatic-version-check": true, + "version": "0855210" +} diff --git a/mods/CampfireCollective@ExtraCredit/thumbnail.jpg b/mods/CampfireCollective@ExtraCredit/thumbnail.jpg new file mode 100644 index 00000000..5faa5082 Binary files /dev/null and b/mods/CampfireCollective@ExtraCredit/thumbnail.jpg differ 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/Coo29@Soup/description.md b/mods/Coo29@Soup/description.md new file mode 100644 index 00000000..4bbf2869 --- /dev/null +++ b/mods/Coo29@Soup/description.md @@ -0,0 +1,3 @@ +# Soup + +A simple mod that retextures the Shop sign to say Soup instead. diff --git a/mods/Coo29@Soup/meta.json b/mods/Coo29@Soup/meta.json new file mode 100644 index 00000000..cd9fd449 --- /dev/null +++ b/mods/Coo29@Soup/meta.json @@ -0,0 +1,15 @@ +{ + "title": "Soup", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content", + "Resource Packs", + "Miscellaneous" + ], + "author": "Coo29", + "repo": "https://github.com/Coo29/Soup", + "downloadURL": "https://github.com/Coo29/Soup/archive/refs/heads/main.zip", + "automatic-version-check": true, + "version": "79c38cd" +} diff --git a/mods/Coo29@Soup/thumbnail.jpg b/mods/Coo29@Soup/thumbnail.jpg new file mode 100644 index 00000000..bd1e814b Binary files /dev/null and b/mods/Coo29@Soup/thumbnail.jpg differ diff --git a/mods/Coo29@Yippie/description.md b/mods/Coo29@Yippie/description.md index 61cb8cdf..5129fa31 100644 --- a/mods/Coo29@Yippie/description.md +++ b/mods/Coo29@Yippie/description.md @@ -1,10 +1,8 @@ # YippieMod -An in progress mod for balatro, (hopefully) adding various things! +An in progress vanilla+ mod for balatro, adding jokers, decks, and more in the future! (Requires Steamodded, untested on versions prior to v1.0.0~ALPHA-1424a) -Currently added: -3 Jokers # Credits 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/DDRitter@HDBalatro/meta.json b/mods/DDRitter@HDBalatro/meta.json index d2330d04..a2215cb4 100644 --- a/mods/DDRitter@HDBalatro/meta.json +++ b/mods/DDRitter@HDBalatro/meta.json @@ -1,13 +1,13 @@ -{ - "title": "HD Balatro", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Resource Packs" - ], - "author": "DDRitter", - "repo": "https://github.com/Eremel/HD-Balatro", - "downloadURL": "https://github.com/Eremel/HD-Balatro/archive/refs/heads/main.zip", - "automatic-version-check": true, - "version": "e96e8c9" -} +{ + "title": "HD Balatro", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "DDRitter", + "repo": "https://github.com/Eremel/HD-Balatro", + "downloadURL": "https://github.com/Eremel/HD-Balatro/archive/refs/heads/main.zip", + "automatic-version-check": true, + "version": "01a76b7" +} 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/Dogg_Fly@AnotherStupidBalatroMod/description.md b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md new file mode 100644 index 00000000..832e4e52 --- /dev/null +++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/description.md @@ -0,0 +1,10 @@ +# 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 100 new Jokers +(some other Joker is based on Spanish jokes) + +THIS MOD WAS CREATED THROUGH [JOKER FORGE](https://jokerforge.jaydchw.com/overview) + + +![descarga (1)](https://github.com/user-attachments/assets/b925f4b5-bc8a-4b36-afa7-a3d8313ab547) +# 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..c52efa2d --- /dev/null +++ b/mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Another Stupid Balatro Mod", + "requires-steamodded": true, + "requires-talisman": true, + "categories": [ + "Joker" + ], + "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": "v2.6.1", + "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..c2acf067 Binary files /dev/null and b/mods/Dogg_Fly@AnotherStupidBalatroMod/thumbnail.jpg differ diff --git a/mods/Dragokillfist@AlmanacPatches/description.md b/mods/Dragokillfist@AlmanacPatches/description.md deleted file mode 100644 index d28e02b8..00000000 --- a/mods/Dragokillfist@AlmanacPatches/description.md +++ /dev/null @@ -1,4 +0,0 @@ -This mod does nothing on its own it is used to make other mods work in newer versions of steamodded wether the mod is no longer being worked on or is in progress as of now the the mods that are supported by this are: -Jen's Almanac (For more information check the github) -Aurinko -Cruel Blinds \ No newline at end of file diff --git a/mods/Dragokillfist@AlmanacPatches/meta.json b/mods/Dragokillfist@AlmanacPatches/meta.json deleted file mode 100644 index edb7f332..00000000 --- a/mods/Dragokillfist@AlmanacPatches/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "title": "Almanac Patches", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Technical" - ], - "author": "Dragokillfist", - "repo": "https://github.com/Dragokillfist/almanac-patches", - "downloadURL": "https://github.com/Dragokillfist/almanac-patches/archive/refs/heads/main.zip", - "folderName": "AlmanacPatches", - "version": "233c9ea", - "automatic-version-check": true -} 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/EnderGoodra@Textile/meta.json b/mods/EnderGoodra@Textile/meta.json index fdd28a57..045b867f 100644 --- a/mods/EnderGoodra@Textile/meta.json +++ b/mods/EnderGoodra@Textile/meta.json @@ -9,5 +9,5 @@ "repo": "https://github.com/EnderGoodra/Textile/", "downloadURL": "https://github.com/EnderGoodra/Textile/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "b5d0eb9" + "version": "1a70cc1" } diff --git a/mods/Eramdam@StickyFingers/meta.json b/mods/Eramdam@StickyFingers/meta.json index 331aabc9..6e5ea831 100644 --- a/mods/Eramdam@StickyFingers/meta.json +++ b/mods/Eramdam@StickyFingers/meta.json @@ -2,13 +2,10 @@ "title": "Sticky Fingers", "requires-steamodded": true, "requires-talisman": false, - "categories": [ - "Quality of Life" - ], + "categories": ["Quality of Life"], "author": "Eramdam", "repo": "https://github.com/eramdam/sticky-fingers/", "downloadURL": "https://github.com/eramdam/sticky-fingers/archive/refs/heads/main.zip", "automatic-version-check": true, - "folderName": "sticky-fingers", - "version": "8cdac02" + "version": "5664de4" } diff --git a/mods/Eremel@Galdur/meta.json b/mods/Eremel@Galdur/meta.json index 2bd73c34..1ef3f0cc 100644 --- a/mods/Eremel@Galdur/meta.json +++ b/mods/Eremel@Galdur/meta.json @@ -10,5 +10,5 @@ "repo": "https://github.com/Eremel/Galdur", "downloadURL": "https://github.com/Eremel/Galdur/archive/refs/heads/master.zip", "automatic-version-check": true, - "version": "747c5ce" + "version": "c0b9ad3" } diff --git a/mods/Eremel@Malverk/meta.json b/mods/Eremel@Malverk/meta.json index fdeaa211..abb1713a 100644 --- a/mods/Eremel@Malverk/meta.json +++ b/mods/Eremel@Malverk/meta.json @@ -10,5 +10,5 @@ "repo": "https://github.com/Eremel/Malverk", "downloadURL": "https://github.com/Eremel/Malverk/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "914ebfc" + "version": "02cdf66" } diff --git a/mods/EricTheToon@Fortlatro/meta.json b/mods/EricTheToon@Fortlatro/meta.json index 2f59e6f9..678e36d2 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.3" + "version": "1.1.7" } diff --git a/mods/Fantom@Fantom'sPreview/description.md b/mods/Fantom@Fantom'sPreview/description.md new file mode 100644 index 00000000..8412437b --- /dev/null +++ b/mods/Fantom@Fantom'sPreview/description.md @@ -0,0 +1 @@ +Adds a Score Preview Button diff --git a/mods/Fantom@Fantom'sPreview/meta.json b/mods/Fantom@Fantom'sPreview/meta.json new file mode 100644 index 00000000..0de82a52 --- /dev/null +++ b/mods/Fantom@Fantom'sPreview/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Fantom's Preview", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Quality of Life" + ], + "author": "Fantom, Divvy", + "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.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 8adfdac4..87dbd79e 100644 --- a/mods/Finnaware@Finn'sPokélatro/meta.json +++ b/mods/Finnaware@Finn'sPokélatro/meta.json @@ -1,13 +1,13 @@ -{ - "title": "Finn's Pokélatro", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Resource Packs" - ], - "author": "Finnaware", - "repo": "https://github.com/Finnaware/Finn-Pokelatro", - "downloadURL": "https://github.com/Finnaware/Finn-Pokelatro/archive/refs/heads/main.zip", - "automatic-version-check": true, - "version": "d0a902a" -} +{ + "title": "Finn's Pokélatro", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "Finnaware", + "repo": "https://github.com/Finnaware/Finn-Pokelatro", + "downloadURL": "https://github.com/Finnaware/Finn-Pokelatro/archive/refs/heads/main.zip", + "automatic-version-check": true, + "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 1d153917..74563e50 100644 --- a/mods/Firch@Bunco/meta.json +++ b/mods/Firch@Bunco/meta.json @@ -8,9 +8,9 @@ "Quality of Life" ], "author": "Firch", - "repo": "https://github.com/Firch/Bunco", - "downloadURL": "https://github.com/Firch/Bunco/releases/download/5.1/Bunco-5.1.zip", + "repo": "https://github.com/jumbocarrot0/Bunco", + "downloadURL": "https://github.com/jumbocarrot0/Bunco/archive/refs/tags/5.4.3-JumboFork.zip", "folderName": "Bunco", - "version": "5.1", - "automatic-version-check": false + "version": "5.4.3-JumboFork", + "automatic-version-check": true } diff --git a/mods/Fridge@Horizon/description.md b/mods/Fridge@Horizon/description.md new file mode 100644 index 00000000..e2b10efe --- /dev/null +++ b/mods/Fridge@Horizon/description.md @@ -0,0 +1,2 @@ +A goofy ahh mod with my goofy ahh ideas +Nothing special, just 15 jokers for now diff --git a/mods/Fridge@Horizon/meta.json b/mods/Fridge@Horizon/meta.json new file mode 100644 index 00000000..df7edcfd --- /dev/null +++ b/mods/Fridge@Horizon/meta.json @@ -0,0 +1,13 @@ +{ + "title": "Horizon Mod", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Joker" + ], + "author": "Microwave", + "repo": "https://github.com/ItsaMicrowave/Horizon-Mod", + "downloadURL": "https://github.com/ItsaMicrowave/Horizon-Mod/archive/refs/tags/v1.zip", + "automatic-version-check": true, + "version": "v1" +} diff --git a/mods/Garb@GARBSHIT/meta.json b/mods/Garb@GARBSHIT/meta.json index 9cf8aea0..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": "305d0b0" + "version": "c5c9013" } diff --git a/mods/GitNether@Paperback/meta.json b/mods/GitNether@Paperback/meta.json index 9228ed33..9e5a5202 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": "6b73d3b" + "version": "6bf226a" } 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..63b8bed2 --- /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": "a68d3b4", + "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/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/Hoversquid@Condensed_UI/meta.json b/mods/Hoversquid@Condensed_UI/meta.json index b9e671ae..dbedaa50 100644 --- a/mods/Hoversquid@Condensed_UI/meta.json +++ b/mods/Hoversquid@Condensed_UI/meta.json @@ -8,6 +8,6 @@ "Quality of Life" ], "repo": "https://github.com/Hoversquid/Condensed_UI", - "downloadURL": "https://github.com/Hoversquid/Condensed_UI/archive/refs/heads/main.zip", - "version": "16ebee7" + "downloadURL": "https://github.com/Hoversquid/Condensed_UI/archive/refs/tags/v1.2-alpha.zip", + "version": "v1.2-alpha" } diff --git a/mods/HuyTheKiller@LocFixer/meta.json b/mods/HuyTheKiller@LocFixer/meta.json index 3afb8951..4a2f30f6 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": "bb19661" + "version": "92e99a1" } diff --git a/mods/HuyTheKiller@SauKhongHuDecks/meta.json b/mods/HuyTheKiller@SauKhongHuDecks/meta.json index 02854bf7..a4d1d5ae 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": "e4fd8e5" + "version": "12a6681" } diff --git a/mods/HuyTheKiller@VietnameseBalatro/meta.json b/mods/HuyTheKiller@VietnameseBalatro/meta.json index 91433f90..75948f3e 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": "69715f2" + "version": "6f09e28" } diff --git a/mods/IcyEthics@BalatroGoesKino/meta.json b/mods/IcyEthics@BalatroGoesKino/meta.json index 2278f5b4..04209c97 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": "4d0ba7b", + "version": "5568884", "automatic-version-check": true } diff --git a/mods/IcyEthics@GlueForModpacks/meta.json b/mods/IcyEthics@GlueForModpacks/meta.json index efd31302..9f487677 100644 --- a/mods/IcyEthics@GlueForModpacks/meta.json +++ b/mods/IcyEthics@GlueForModpacks/meta.json @@ -10,5 +10,5 @@ "repo": "https://github.com/icyethics/Glue-For-Modpacks", "downloadURL": "https://github.com/icyethics/Glue-For-Modpacks/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "3d3ad5f" + "version": "3320b50" } diff --git a/mods/InertSteak@Pokermon/meta.json b/mods/InertSteak@Pokermon/meta.json index 520c3f5d..aac96fc7 100644 --- a/mods/InertSteak@Pokermon/meta.json +++ b/mods/InertSteak@Pokermon/meta.json @@ -7,8 +7,9 @@ "Joker" ], "author": "InertSteak", + "folderName": "Pokermon", "repo": "https://github.com/InertSteak/Pokermon", "downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "dec158d" + "version": "a3a1774" } diff --git a/mods/InspectorB&MarioFan597@Beelatro/description.md b/mods/InspectorB&MarioFan597@Beelatro/description.md new file mode 100644 index 00000000..186b2a5b --- /dev/null +++ b/mods/InspectorB&MarioFan597@Beelatro/description.md @@ -0,0 +1,5 @@ +Beelatro is a comprehensive expansion mod for Balatro that builds on the foundation of the Cryptid mod. It adds a buzzing array of new content, including bee-themed Jokers, Seal and Sticker, An all new edition, and fresh new mechanics. + +Beelatro will eventually feature cross-mod compatibility with More Mario Jokers, allowing special Mario Bee Jokers to appear when both mods are installed. + +Cryptid and its dependencies are required. \ No newline at end of file diff --git a/mods/InspectorB&MarioFan597@Beelatro/meta.json b/mods/InspectorB&MarioFan597@Beelatro/meta.json new file mode 100644 index 00000000..11e39727 --- /dev/null +++ b/mods/InspectorB&MarioFan597@Beelatro/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Beelatro", + "requires-steamodded": true, + "requires-talisman": true, + "categories": [ + "Content" + ], + "author": "InspectorB & MarioFan597", + "repo": "https://github.com/InspectorBalloonicorn/Beelatro", + "downloadURL": "https://github.com/InspectorBalloonicorn/Beelatro/archive/refs/heads/main.zip", + "folderName": "Beelatro", + "version": "42c5b2d", + "automatic-version-check": true +} diff --git a/mods/InspectorB&MarioFan597@Beelatro/thumbnail.jpg b/mods/InspectorB&MarioFan597@Beelatro/thumbnail.jpg new file mode 100644 index 00000000..4c517f00 Binary files /dev/null and b/mods/InspectorB&MarioFan597@Beelatro/thumbnail.jpg differ diff --git a/mods/Itayfeder@FusionJokers/meta.json b/mods/Itayfeder@FusionJokers/meta.json index 23490896..e61ca65b 100644 --- a/mods/Itayfeder@FusionJokers/meta.json +++ b/mods/Itayfeder@FusionJokers/meta.json @@ -1,14 +1,14 @@ -{ - "title": "Fusion Jokers", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Joker", - "API" - ], - "author": "itayfeder", - "repo": "https://github.com/lshtech/Fusion-Jokers", - "downloadURL": "https://github.com/lshtech/Fusion-Jokers/archive/refs/heads/main.zip", - "automatic-version-check": true, - "version": "fb52ba8" -} +{ + "title": "Fusion Jokers", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Joker", + "API" + ], + "author": "itayfeder", + "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" +} diff --git a/mods/ItsFlowwey@FlowerPot/meta.json b/mods/ItsFlowwey@FlowerPot/meta.json index 95688f7e..1e03a5e9 100644 --- a/mods/ItsFlowwey@FlowerPot/meta.json +++ b/mods/ItsFlowwey@FlowerPot/meta.json @@ -10,5 +10,5 @@ "downloadURL": "https://github.com/GauntletGames-2086/Flower-Pot/archive/refs/heads/master.zip", "folderName": "Flower-Pot", "automatic-version-check": true, - "version": "2c9ef70" + "version": "b43b9f4" } 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..97a48ffc --- /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.2.0", + "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!/description.md b/mods/JakeyBooBoo@!BooBooBalatro!/description.md new file mode 100644 index 00000000..eb546ca7 --- /dev/null +++ b/mods/JakeyBooBoo@!BooBooBalatro!/description.md @@ -0,0 +1,78 @@ +# BooBooBalatro +Balatro Mod featuring new Jokers, Enhancmenets, and Decks (with more to come) + +## Features (as of V0.1.1) +- 17 new Jokers + - 5 Commons based on the Love Languages + - 7 Uncommons based on the Deadly Sins + - 5 Rares based on the Stages of Grief +- 8 new Enhancements + - 5 Upgrades to glass cards + - 3 Upgrades to stone cards +- 2 new decks + +# Full List of Jokers and Enhancements +## Decks +- Modulo Deck: + Round score is taken modulo the blind requirement +- Cathedral Deck: + Start with 5 sets of each new glass enhancement +## Enhancements +### Glass Upgrades +- Red Stained Glass: + x2 Mult when played or held, chance to destroy when played or discarded +- Blue Stained Glass: + 1.5x Chips when scored, chance to destroy when played or discarded +- Gold Stained Glass: + Earn $5 when scored, chance to shatter when played or discarded" +- Green Stained Glass: + Chance to increase all probabilities for the round, chance to shatter when played or discarded" +- Wild Glass: + Combination of Wild card and Glass card effects +### Stone Upgrades +- Kintsugi + Earn $5 when scored, reduces by $1 each scoring. +- Geode + Balances chips and mult when scored, chance of being destroyed +- Ruby Deposit, + Scores x4 Mult when scored, reduces by x0.5 Mult each scoring. +## Jokers: +### Denial + Gold, blue, and purple seals have additional effects when played, discarded, and held in hand at the end of round +### Anger + Base x1 Chips, additional x1 Chips per unscoring card in played hand +### Bargaining + Cards played have a chance to be destroyed and a chance to grant a copy of Death +### Depression + Chance to turn a random held card negative. Card turns to stone if already negative +### Acceptance + Gains +0.25 mult for each quality shared between adjacent scored numbered cards, + (qualities: rank, suit, enhancement, edition, seal) +### Pride + Unenhanced cards have a chance to gain a random seal +### Envy + Every unscored cared has a chance to turn into a copy of a scored card. +### Wrath + Chance to copy each played glass card, chance increases per glass card scored in round. Destroys all glass cards held in hand. +### Greed + Cards with gold seals gain scoring bonus, gold cards gain bonus when held, gold cards and cards with gold seals are destroyed when discarded +### Gluttony + Chance to upgrade each scoring bonus or mult card with foil or holographic edition, respectively +### Lust + Held cards that do not share a suit with a scored card have a chance to become a wild card +### Sloth + When using a planet card, chance to increase chips and mult of each poker hand, that contains the upgraded hand +### Acts of Service + Every enhanced card held in hand has a chance to apply it's enhancement to a played card +### Quality Time + Cards not played gain +1 when held, each hand played +### Words of Affirmation + If an Ace is scored, all subsequent Kings, Queens, and Jacks in the same played hand score 1.5x Chips +### Physical Touch + If scored hand contains a Straight,each held card that continues the straight gives x3 Mult +### Gifts + After defeating a blind, create a random Joker Tag with the same rarity as a random joker + +# Requirements +- [Steamodded](https://github.com/Steamopollys/Steamodded) +- [Lovely](https://github.com/ethangreen-dev/lovely-injector) diff --git a/mods/JakeyBooBoo@!BooBooBalatro!/meta.json b/mods/JakeyBooBoo@!BooBooBalatro!/meta.json new file mode 100644 index 00000000..e59c2f41 --- /dev/null +++ b/mods/JakeyBooBoo@!BooBooBalatro!/meta.json @@ -0,0 +1,14 @@ +{ + "title": "!BooBooBalatro!", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content" + ], + "author": "JakeyBooBoo", + "repo": "https://github.com/Jakey2BooBoo/-BooBooBalatro-", + "downloadURL": "https://github.com/Jakey2BooBoo/-BooBooBalatro-/archive/refs/heads/main.zip", + "folderName": "!BooBooBalatro!", + "version": "acedd29", + "automatic-version-check": true +} diff --git a/mods/JakeyBooBoo@!BooBooBalatro!/thumbnail.jpg b/mods/JakeyBooBoo@!BooBooBalatro!/thumbnail.jpg new file mode 100644 index 00000000..4e3b5001 Binary files /dev/null and b/mods/JakeyBooBoo@!BooBooBalatro!/thumbnail.jpg differ 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/Keku@Vortex/description.md b/mods/Keku@Vortex/description.md new file mode 100644 index 00000000..43fe671f --- /dev/null +++ b/mods/Keku@Vortex/description.md @@ -0,0 +1,8 @@ +# Vortex +A simple mod that removes the pixelation effect from Balatro's backgrounds! + +![Balatro Title Sceen with Vortex](https://i.imgur.com/OLAQ11v.jpeg) + +I've seen people post videos of the Balatro background without the pixelation effect, since a lot of people really like the look of it and wanted to use it as a desktop background, but for some reason no one had made an accessible mod for it. So here's this! There's almost nothing to it, this mod simply replaces the background shaders with an edited version that removes the pixelation effect. +This mod is compatible with any other mods that change the background colors, like [Cryptid](github.com/MathIsFun0/Cryptid) or [Cardsauce](https://github.com/BarrierTrio/Cardsauce). +If you wanna go crazy with making your own custom swirling balatro vortex desktop background, i reccomend getting [DebugPlus](https://github.com/WilsontheWolf/DebugPlus) and [Cardsauce](https://github.com/BarrierTrio/Cardsauce) and setting the background colors to your liking, then hide the UI with H! diff --git a/mods/Keku@Vortex/meta.json b/mods/Keku@Vortex/meta.json new file mode 100644 index 00000000..5fdf5f4d --- /dev/null +++ b/mods/Keku@Vortex/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Vortex", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Miscellaneous" + ], + "author": "Keku", + "repo": "https://github.com/Kekulism/Vortex/", + "downloadURL": "https://github.com/Kekulism/Vortex/archive/refs/heads/main.zip", + "folderName": "Vortex", + "version": "9bb708f", + "automatic-version-check": true +} diff --git a/mods/Keku@Vortex/thumbnail.jpg b/mods/Keku@Vortex/thumbnail.jpg new file mode 100644 index 00000000..fdd197c5 Binary files /dev/null and b/mods/Keku@Vortex/thumbnail.jpg differ diff --git a/mods/Kingmaxthe2@Maxs-Jokers/meta.json b/mods/Kingmaxthe2@Maxs-Jokers/meta.json index 1a8605d0..1c8ace05 100644 --- a/mods/Kingmaxthe2@Maxs-Jokers/meta.json +++ b/mods/Kingmaxthe2@Maxs-Jokers/meta.json @@ -7,7 +7,7 @@ ], "author": "Kingmaxthe2", "repo": "https://github.com/Kingmaxthe2/Kingmaxthe2-Joker-Pack", - "downloadURL": "https://github.com/Kingmaxthe2/Kingmaxthe2-Joker-Pack/archive/refs/tags/1.0.zip", + "downloadURL": "https://github.com/Kingmaxthe2/Kingmaxthe2-Joker-Pack/releases/latest/download/Maxs-Jokers.zip", "folderName": "Kingmaxthe2 Joker Pack", "version": "1.0", "automatic-version-check": true 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 13b9c6c9..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": "a36ddb4" + "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..8210b1e2 --- /dev/null +++ b/mods/LazyTurtle33@TurtlesChallenges/description.md @@ -0,0 +1,14 @@ +Adds some Challenges made by LazyTurtle33 + +Challenges include: +AAAA - deck has only 4 aces. you cant change the deck +AAAA (but fuck you) - same as AAAA but harder +Empty Orbit - no leveling up hands +NOPE - 1 in 4 chance for any action to NOT HAPPEN +Stock Market - Instead of blind rewards, earn from -75% to 150% of money + +All challenges has been beaten by ether me or a play tester :D + +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) >.< diff --git a/mods/LazyTurtle33@TurtlesChallenges/meta.json b/mods/LazyTurtle33@TurtlesChallenges/meta.json new file mode 100644 index 00000000..05ca85fc --- /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.2.1", + "automatic-version-check": true +} diff --git a/mods/Lily@VallKarri/description.md b/mods/Lily@VallKarri/description.md new file mode 100644 index 00000000..bf89cb57 --- /dev/null +++ b/mods/Lily@VallKarri/description.md @@ -0,0 +1,6 @@ +# VallKarri +Yet another expansion upon Cryptid, expanding on it's content and adding lots of new ideas! +Over 70 new Jokers, 3 new consumable types, totalling over 60 consumables, alongside many new vouchers and decks! + +note: at this time, cryptposting and vallkarri are not compatible due to conflicts between creators +there is no technical incompatibility between the two mods. \ No newline at end of file diff --git a/mods/Lily@VallKarri/meta.json b/mods/Lily@VallKarri/meta.json new file mode 100644 index 00000000..c77d9ccd --- /dev/null +++ b/mods/Lily@VallKarri/meta.json @@ -0,0 +1,16 @@ +{ + "title": "VallKarri", + "requires-steamodded": true, + "requires-talisman": true, + "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": "c5057b0", + "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 27aa8bae..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": "b8e3339" + "version": "0cd8f89" } diff --git a/mods/Luuumine@BalaQuints/meta.json b/mods/Luuumine@BalaQuints/meta.json index 0ab27368..7538d71d 100644 --- a/mods/Luuumine@BalaQuints/meta.json +++ b/mods/Luuumine@BalaQuints/meta.json @@ -9,5 +9,5 @@ "repo": "https://github.com/Luuumine/BalaQuints", "downloadURL": "https://github.com/Luuumine/BalaQuints/releases/latest/download/BalaQuints.zip", "automatic-version-check": true, - "version": "v1.1" + "version": "v1.2" } 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 1d240ca3..f03403e2 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.10.zip", "folderName": "Cryptid", "automatic-version-check": true, - "version": "68f9979" + "version": "v0.5.10" } diff --git a/mods/MathIsFun0@Talisman/meta.json b/mods/MathIsFun0@Talisman/meta.json index 922bb005..79f860ea 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.3.1" } 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..d8bc2c81 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": "3f1f0c2", "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 a97b3f56..c37936cd 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": "895263f", + "version": "e93b589", "automatic-version-check": true } diff --git a/mods/MeraGenio@UnBlind/description.md b/mods/MeraGenio@UnBlind/description.md new file mode 100644 index 00000000..f905f2eb --- /dev/null +++ b/mods/MeraGenio@UnBlind/description.md @@ -0,0 +1 @@ +See **Blinds** while shopping. diff --git a/mods/MeraGenio@UnBlind/meta.json b/mods/MeraGenio@UnBlind/meta.json new file mode 100644 index 00000000..e3dafb97 --- /dev/null +++ b/mods/MeraGenio@UnBlind/meta.json @@ -0,0 +1,13 @@ +{ + "title": "UnBlind", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Quality of Life" + ], + "author": "MeraGenio", + "repo": "https://github.com/MeraGenio/UnBlind", + "downloadURL": "https://github.com/MeraGenio/UnBlind/archive/refs/tags/1.2.1.zip", + "automatic-version-check": true, + "version": "1.2.1" +} diff --git a/mods/MeraGenio@UnBlind/thumbnail.jpg b/mods/MeraGenio@UnBlind/thumbnail.jpg new file mode 100644 index 00000000..42a9aeac Binary files /dev/null and b/mods/MeraGenio@UnBlind/thumbnail.jpg differ 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..9ee94130 --- /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": "6e39d75", + "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/MrChickenDude@LGBTmultCards/description.md b/mods/MrChickenDude@LGBTmultCards/description.md new file mode 100644 index 00000000..adb1c9ce --- /dev/null +++ b/mods/MrChickenDude@LGBTmultCards/description.md @@ -0,0 +1 @@ +Turns the mult cards rainbow. \ No newline at end of file diff --git a/mods/MrChickenDude@LGBTmultCards/meta.json b/mods/MrChickenDude@LGBTmultCards/meta.json new file mode 100644 index 00000000..365874bc --- /dev/null +++ b/mods/MrChickenDude@LGBTmultCards/meta.json @@ -0,0 +1,14 @@ +{ + "title": "LGBT Mult Cards", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "MrChickenDude", + "repo": "https://github.com/Catzzadilla/LGBT-Mult-Cards", + "downloadURL": "https://github.com/Catzzadilla/LGBT-Mult-Cards/archive/refs/heads/main.zip", + "folderName": "LGBT Mult Cards", + "version": "04e98bd", + "automatic-version-check": true +} diff --git a/mods/MrChickenDude@LGBTmultCards/thumbnail.jpg b/mods/MrChickenDude@LGBTmultCards/thumbnail.jpg new file mode 100644 index 00000000..944580e7 Binary files /dev/null and b/mods/MrChickenDude@LGBTmultCards/thumbnail.jpg differ diff --git a/mods/Mysthaps@LobotomyCorp/meta.json b/mods/Mysthaps@LobotomyCorp/meta.json index 66e269f5..53c751af 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": "b6a8f2a" + "version": "85fe9fc" } diff --git a/mods/Neato@NeatoJokers/meta.json b/mods/Neato@NeatoJokers/meta.json index b5f5d007..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": "675a396" + "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..956fd166 --- /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": "654eb5b", + "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/Nyoxide@DeckCreator/meta.json b/mods/Nyoxide@DeckCreator/meta.json index 39fd6b49..533772ef 100644 --- a/mods/Nyoxide@DeckCreator/meta.json +++ b/mods/Nyoxide@DeckCreator/meta.json @@ -8,6 +8,7 @@ "author": "Nyoxide", "repo": "https://github.com/adambennett/Balatro-DeckCreator", "downloadURL": "https://github.com/adambennett/Balatro-DeckCreator/releases/download/v1.2.2/DeckCreator.zip", + "folderName": "Deck Creator", "automatic-version-check": false, "version": "v1.2.2" } 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/OppositeWolf770@SoulEverything/description.md b/mods/OppositeWolf770@SoulEverything/description.md new file mode 100644 index 00000000..8b96206a --- /dev/null +++ b/mods/OppositeWolf770@SoulEverything/description.md @@ -0,0 +1,7 @@ +## Information + +This mod makes the designs on the Consumables pop out of the card (Similarly to The Soul, Hologram, etc.)! Currently includes the Tarots, Planets, and Vouchers. Spectrals, Tags, Jokers(?) to come in a future update! + +## NOTE: + +SoulEverything requires [Malverk](https://github.com/Eremel/malverk). \ No newline at end of file diff --git a/mods/OppositeWolf770@SoulEverything/meta.json b/mods/OppositeWolf770@SoulEverything/meta.json new file mode 100644 index 00000000..796f6328 --- /dev/null +++ b/mods/OppositeWolf770@SoulEverything/meta.json @@ -0,0 +1,13 @@ +{ + "title": "SoulTarots", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "OppositeWolf770", + "repo": "https://github.com/OppositeWolf770/SoulEverything", + "downloadURL": "https://github.com/OppositeWolf770/SoulEverything/archive/refs/heads/main.zip", + "automatic-version-check": true, + "version": "38b5bdc" +} diff --git a/mods/OppositeWolf770@SoulEverything/thumbnail.jpg b/mods/OppositeWolf770@SoulEverything/thumbnail.jpg new file mode 100644 index 00000000..9a0b2ba4 Binary files /dev/null and b/mods/OppositeWolf770@SoulEverything/thumbnail.jpg differ 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/PokeRen@GamblingIsMagic/description.md b/mods/PokeRen@GamblingIsMagic/description.md new file mode 100644 index 00000000..6b092554 --- /dev/null +++ b/mods/PokeRen@GamblingIsMagic/description.md @@ -0,0 +1,3 @@ +# Gambling is Magic +Adds MLP deck skins for each suit! +Art by PokeRen and Radspeon \ No newline at end of file diff --git a/mods/PokeRen@GamblingIsMagic/meta.json b/mods/PokeRen@GamblingIsMagic/meta.json new file mode 100644 index 00000000..74213e87 --- /dev/null +++ b/mods/PokeRen@GamblingIsMagic/meta.json @@ -0,0 +1,13 @@ +{ + "title": "Gambling is Magic", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Resource Packs" + ], + "author": "PokeRen and Radspeon", + "repo": "https://github.com/RenSnek/GamblingIsMagic", + "downloadURL": "https://github.com/RenSnek/GamblingIsMagic/archive/refs/heads/master.zip", + "version": "4adae11", + "automatic-version-check": true +} diff --git a/mods/PokeRen@GamblingIsMagic/thumbnail.jpg b/mods/PokeRen@GamblingIsMagic/thumbnail.jpg new file mode 100644 index 00000000..0ea04aed Binary files /dev/null and b/mods/PokeRen@GamblingIsMagic/thumbnail.jpg differ diff --git a/mods/RattlingSnow353@Familiar/meta.json b/mods/RattlingSnow353@Familiar/meta.json index 7ccfa6ca..73a885d2 100644 --- a/mods/RattlingSnow353@Familiar/meta.json +++ b/mods/RattlingSnow353@Familiar/meta.json @@ -6,8 +6,8 @@ "Content" ], "author": "RattlingSnow353/humplydinkle", - "repo": "https://github.com/RattlingSnow353/Familiar/tree/BetterCalc-Fixes", + "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": "19bfbab" + "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 f2c296b3..8fdeb98b 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": "7fa4106" + "version": "d688960" } diff --git a/mods/Riv_Falcon@MultiTextBox/meta.json b/mods/Riv_Falcon@MultiTextBox/meta.json index d077a30a..ba823401 100644 --- a/mods/Riv_Falcon@MultiTextBox/meta.json +++ b/mods/Riv_Falcon@MultiTextBox/meta.json @@ -1,13 +1,13 @@ -{ - "title": "Multi Text Box", - "requires-steamodded": false, - "requires-talisman": false, - "categories": [ - "Miscellaneous" - ], - "author": "Riv_Falcon", - "repo": "https://github.com/RivFalcon/MultiTextBox", - "downloadURL": "https://github.com/RivFalcon/MultiTextBox/archive/refs/heads/master.zip", - "automatic-version-check": true, - "version": "5036873" -} +{ + "title": "Multi Text Box", + "requires-steamodded": false, + "requires-talisman": false, + "categories": [ + "Miscellaneous" + ], + "author": "Riv_Falcon", + "repo": "https://github.com/RivFalcon/MultiTextBox", + "downloadURL": "https://github.com/RivFalcon/MultiTextBox/archive/refs/heads/master.zip", + "automatic-version-check": true, + "version": "1ba804f" +} 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..fec9d3cb --- /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.0a.zip", + "folderName": "Rofflatro", + "version": "v1.2.0a", + "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 e4f07c96..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": "7daa470" + "version": "3a0e52b" } diff --git a/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json b/mods/SMG9000@Cryptid-MoreMarioJokers/meta.json index 148674a9..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": "57124ef", + "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/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. + +![Thumbnail](https://iili.io/FE6yXdx.jpg) \ 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..7abc49e0 --- /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.1.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 3bcee98f..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": "3c45663" + "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 5dd98c3f..17a7769f 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": "65572c5" + "version": "0359bf6" } 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/description.md b/mods/Somethingcom515@SealsOnEverything/description.md new file mode 100644 index 00000000..793792d0 --- /dev/null +++ b/mods/Somethingcom515@SealsOnEverything/description.md @@ -0,0 +1,2 @@ +# Seals On Everything +Puts seals everywhere! Decks? Boosters? Jokers? Consumables? Stakes? Blinds? Of course! diff --git a/mods/Somethingcom515@SealsOnEverything/meta.json b/mods/Somethingcom515@SealsOnEverything/meta.json new file mode 100644 index 00000000..80409555 --- /dev/null +++ b/mods/Somethingcom515@SealsOnEverything/meta.json @@ -0,0 +1,15 @@ +{ + "title": "Seals On Everything", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content", + "Miscellaneous" + ], + "author": "Somethingcom515", + "repo": "https://github.com/Somethingcom515/SealsOnJokers", + "downloadURL": "https://github.com/Somethingcom515/SealsOnJokers/archive/refs/heads/main.zip", + "folderName": "SealsOnEverything", + "automatic-version-check": true, + "version": "de31ef4" +} 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..cd449f9c --- /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.1", + "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 c536b5d6..2f514585 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": "452ec58", + "version": "3117733", "automatic-version-check": true } diff --git a/mods/StarletDevil@AzzysJokers/description.md b/mods/StarletDevil@AzzysJokers/description.md index 2de771d8..d17d4cac 100644 --- a/mods/StarletDevil@AzzysJokers/description.md +++ b/mods/StarletDevil@AzzysJokers/description.md @@ -1,5 +1,5 @@ # Azazel's Jokers! -Adds 60 New Jokers each with (mostly) unique effects! +Adds 120 New Jokers each with (mostly) unique effects! This mod is geared towards fun a bit more than game balance, so you might be finding yourself winning quite a bit! diff --git a/mods/StarletDevil@AzzysJokers/meta.json b/mods/StarletDevil@AzzysJokers/meta.json index 607e4b52..b1df9e9a 100644 --- a/mods/StarletDevil@AzzysJokers/meta.json +++ b/mods/StarletDevil@AzzysJokers/meta.json @@ -1,14 +1,14 @@ -{ - "title": "Azazel's Jokers", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Content", - "Joker" - ], - "author": "Starlet Devil", - "repo": "https://github.com/AstrumNativus/AzzysJokers", - "downloadURL": "https://github.com/AstrumNativus/AzzysJokers/archive/refs/tags/v1.2.2.zip", - "automatic-version-check": false, - "version": "v1.2.2" -} +{ + "title": "Azazel's Jokers", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content", + "Joker" + ], + "author": "Starlet Devil", + "repo": "https://github.com/AstrumNativus/AzzysJokers", + "downloadURL": "https://github.com/AstrumNativus/AzzysJokers/archive/refs/tags/v2.0.0.zip", + "automatic-version-check": true, + "version": "v2.0.0" +} diff --git a/mods/Steamodded@smods/meta.json b/mods/Steamodded@smods/meta.json index 9bdfe750..b1395c27 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": "95cb8a5" + "version": "0c17c57" } diff --git a/mods/Survivalaiden@AllinJest/meta.json b/mods/Survivalaiden@AllinJest/meta.json index 4f44914d..ab5ba24d 100644 --- a/mods/Survivalaiden@AllinJest/meta.json +++ b/mods/Survivalaiden@AllinJest/meta.json @@ -1,14 +1,14 @@ { - "title": "All in Jest", - "requires-steamodded": true, - "requires-talisman": false, - "categories": [ - "Content" - ], - "author": "Survivalaiden", - "repo": "https://github.com/survovoaneend/All-In-Jest", - "downloadURL": "https://github.com/survovoaneend/All-In-Jest/archive/refs/tags/0.5.0.zip", - "folderName": "All-In-Jest", - "automatic-version-check": true, - "version": "0.5.0" + "title": "All in Jest", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content" + ], + "author": "Survivalaiden", + "repo": "https://github.com/survovoaneend/All-In-Jest", + "downloadURL": "https://github.com/survovoaneend/All-In-Jest/archive/refs/tags/0.5.0.zip", + "folderName": "All-In-Jest", + "automatic-version-check": true, + "version": "0.5.0" } diff --git a/mods/TOGAPack@TheOneGoofAli/meta.json b/mods/TOGAPack@TheOneGoofAli/meta.json index 13a8d812..e0cfa959 100644 --- a/mods/TOGAPack@TheOneGoofAli/meta.json +++ b/mods/TOGAPack@TheOneGoofAli/meta.json @@ -10,5 +10,5 @@ "repo": "https://github.com/TheOneGoofAli/TOGAPackBalatro", "downloadURL": "https://github.com/TheOneGoofAli/TOGAPackBalatro/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "1d45bc7" + "version": "5319e70" } diff --git a/mods/TamerSoup625@HighestPriestess/meta.json b/mods/TamerSoup625@HighestPriestess/meta.json index 1ab3248d..2ab08c27 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": "8f13c9f", + "version": "8d004f1", "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..6e4a6da9 --- /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": "7068865" +} 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/TheCodingZombie@ColorSplashed/meta.json b/mods/TheCodingZombie@ColorSplashed/meta.json index 8e87c28f..f8737eb4 100644 --- a/mods/TheCodingZombie@ColorSplashed/meta.json +++ b/mods/TheCodingZombie@ColorSplashed/meta.json @@ -7,8 +7,8 @@ ], "author": "TheCodingZombie", "repo": "https://github.com/TheCodingZombie/PMCSBalatro", - "downloadURL": "https://github.com/TheCodingZombie/PMCSBalatro/archive/refs/tags/v1.zip", + "downloadURL": "https://github.com/TheCodingZombie/PMCSBalatro/archive/refs/tags/v1.1.zip", "folderName": "ColorSplashed", - "version": "v1", + "version": "v1.1", "automatic-version-check": true } diff --git a/mods/TheMotherfuckingBearodactyl@Insolence/meta.json b/mods/TheMotherfuckingBearodactyl@Insolence/meta.json index 4e1b5264..657c55fd 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.0.0.zip", + "downloadURL": "https://github.com/thebearodactyl/insolence-balatro/archive/refs/tags/2.1.2.zip", "folderName": "Insolence", - "version": "1.0.0", - "automatic-version-check": false + "version": "2.1.2", + "automatic-version-check": true } diff --git a/mods/ToxicPlayer@Flushtro/description.md b/mods/ToxicPlayer@Flushtro/description.md new file mode 100644 index 00000000..2a296ac8 --- /dev/null +++ b/mods/ToxicPlayer@Flushtro/description.md @@ -0,0 +1 @@ +(REQUIRES TALISMAN) Unbalanced and buggy mess i made in Joker Forge diff --git a/mods/ToxicPlayer@Flushtro/meta.json b/mods/ToxicPlayer@Flushtro/meta.json new file mode 100644 index 00000000..24789143 --- /dev/null +++ b/mods/ToxicPlayer@Flushtro/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Flushtro", + "requires-steamodded": true, + "requires-talisman": true, + "categories": [ + "Joker" + ], + "author": "ToxicPlayer", + "repo": "https://github.com/N0tToxicPlayer/Flushtro", + "downloadURL": "https://github.com/N0tToxicPlayer/Flushtro/releases/latest/download/flushtro.zip", + "folderName": "Flushtro", + "version": "v2.1.0", + "automatic-version-check": true +} diff --git a/mods/ToxicPlayer@Flushtro/thumbnail.jpg b/mods/ToxicPlayer@Flushtro/thumbnail.jpg new file mode 100644 index 00000000..bd4af822 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 new file mode 100644 index 00000000..8c497358 --- /dev/null +++ b/mods/Trif3ctal@LuckyRabbit/description.md @@ -0,0 +1,20 @@ +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 +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** +- **2** new Enhancements to expand your deck +- **15** upgraded and helpful Vouchers +- **5** practical Decks +- **4** skip-worthy Tags +- **11** tough new Boss Blinds +- **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). + +# Credits +- Lucky Rabbit is developed by Trif, Fennex, and HarmoniousJoker +- Spanish localization by Frander +- Chinese localization by VisJoker \ No newline at end of file diff --git a/mods/Trif3ctal@LuckyRabbit/meta.json b/mods/Trif3ctal@LuckyRabbit/meta.json new file mode 100644 index 00000000..3207e0b4 --- /dev/null +++ b/mods/Trif3ctal@LuckyRabbit/meta.json @@ -0,0 +1,15 @@ +{ + "title": "Lucky Rabbit", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "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": "f412702" +} diff --git a/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg b/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg new file mode 100644 index 00000000..b4b0852c Binary files /dev/null and b/mods/Trif3ctal@LuckyRabbit/thumbnail.jpg differ diff --git a/mods/Virtualized@Multiplayer/meta.json b/mods/Virtualized@Multiplayer/meta.json index 34a71a06..e84b1429 100644 --- a/mods/Virtualized@Multiplayer/meta.json +++ b/mods/Virtualized@Multiplayer/meta.json @@ -12,5 +12,5 @@ "downloadURL": "https://github.com/Balatro-Multiplayer/BalatroMultiplayer/releases/latest/download/BalatroMultiplayer.zip", "folderName": "Multiplayer", "automatic-version-check": true, - "version": "v0.2.6" + "version": "v0.2.11" } 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 3b78842a..9132fc4c 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.1" + "version": "v1.4.2" } 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/description.md b/mods/baimao@Partner/description.md new file mode 100644 index 00000000..0f09f378 --- /dev/null +++ b/mods/baimao@Partner/description.md @@ -0,0 +1,2 @@ +# Partner +Partner is a vanilla content API mod that adds a new card type to the game. In short, you can accept a partner to accompany you at the beginning of each game. Initially 16 base partners with hand-crafted pixel art are provided. You can also create your own partner by browsing the tutorial or viewing the Partner code. diff --git a/mods/baimao@Partner/meta.json b/mods/baimao@Partner/meta.json new file mode 100644 index 00000000..6e5484f8 --- /dev/null +++ b/mods/baimao@Partner/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Partner", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content", + "API" + ], + "author": "baimao", + "repo": "https://github.com/Icecanno/Partner-API", + "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/baimao@Partner/thumbnail.jpg b/mods/baimao@Partner/thumbnail.jpg new file mode 100644 index 00000000..7622bef4 Binary files /dev/null and b/mods/baimao@Partner/thumbnail.jpg differ diff --git a/mods/cg223@TooManyJokers/meta.json b/mods/cg223@TooManyJokers/meta.json index f220267e..77b73416 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": "262e4b2" + "version": "b7f0bdc" } 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..48b864bd --- /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": "V3.0.1B", + "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/its-edalo@slay-the-jokers/description.md b/mods/its-edalo@slay-the-jokers/description.md new file mode 100644 index 00000000..b4eea648 --- /dev/null +++ b/mods/its-edalo@slay-the-jokers/description.md @@ -0,0 +1,39 @@ +# Slay the Jokers +A mod that allows your viewers to hover over cards on your stream to see their effects and current values. + +Heads up! This mod requires additional setup steps before it can work. + +If you need help or have suggestions feel free to contact me at itsedalo@gmail.com. + +## Setup Instructions +- **Upload Key**: To use this mod, you'll need an upload key to the Slay the Jokers server. +1. Acquire an `upload.key` file using **one** of the following methods: + - Email me at `itsedalo@gmail.com` + - Absolutely no need for anything formal or polite, you can just say `Hi, I'm , give me a key.`, word for word if you want. I'll try to send you the key quickly. + - Use the automated system at https://edalo.net/stj/get-key (you will need to verify your Twitch account to prove it's really you) + - This feature is new; if something fails, fall back to emailing me +2. Place `upload.key` in the `Balatro` data directory (`%appdata%\Balatro`) +3. Launch Balatro and wait for it to fully load + - A black command window (part of `Lovely`) will appear - don't close it + - On first launch, it will automatically install required tools for this mod +4. Enable the [extension](https://dashboard.twitch.tv/extensions/iaofk5k6d87u31z9uy2joje2fwn347) on your Twitch channel + +## Things to Know Before Installing +- **Stream Overlays**: This mod currently only works correctly if the game is shown at a 16:9 resolution (like 1920x1080 / 4K / 8K) and **fills the entire visible area of the stream**. Overlays that crop or reposition the game may cause card positions to misalign. + - If that's a dealbreaker, feel free to contact me - I might be able to make it work for your setup. + +- **Windows Only**: This mod currently supports only **\*Windows\*** systems. + +- **Other Mods & Compatibility**: This mod should be compatible with most other mods. + - Compatible mods: + - Reskins, QoL mods, and other non-card-related mods should work in their entirety, but have not been tested (except for the [Handy](https://github.com/SleepyG11/HandyBalatro) mod, which was confirmed to work). + - Mods that add new cards should generally work, aside from some potential minor formatting quirks. Among mods that were confirmed to work are [Extra Credit](https://github.com/GuilloryCraft/ExtraCredit), [Paperback](https://github.com/Balatro-Paperback/paperback), [Neato](https://github.com/neatoqueen/NeatoJokers), [Cryptid](https://github.com/MathIsFun0/Cryptid), and [The Balatro Multiplayer Mod](https://github.com/V-rtualized/BalatroMultiplayer). + - Incompatible mods: + - Mods that modify existing card effects are **not** compatible (the original card's effect will be shown instead). + +- **Disclaimer**: This mod is still under development, so some features might not work perfectly. If you encounter any issues, please let me know! + - *More formal disclaimer for meanies: this project is a hobby project, provided as-is, with no guarantees of stability, correctness, or suitability for any purpose. You're welcome to use it - but I take no responsibility if something goes wrong.* + +--- + +If anything is unclear or you run into issues, try referring to the [full installation guide](https://github.com/its-edalo/slay-the-jokers/blob/main/INSTALL.md). diff --git a/mods/its-edalo@slay-the-jokers/meta.json b/mods/its-edalo@slay-the-jokers/meta.json new file mode 100644 index 00000000..d2a1727a --- /dev/null +++ b/mods/its-edalo@slay-the-jokers/meta.json @@ -0,0 +1,14 @@ +{ + "title": "Slay the Jokers", + "requires-steamodded": false, + "requires-talisman": false, + "categories": [ + "Quality of Life" + ], + "author": "edalo", + "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": "v0.2", + "automatic-version-check": true +} diff --git a/mods/its-edalo@slay-the-jokers/thumbnail.jpg b/mods/its-edalo@slay-the-jokers/thumbnail.jpg new file mode 100644 index 00000000..694c5e3f Binary files /dev/null and b/mods/its-edalo@slay-the-jokers/thumbnail.jpg differ diff --git a/mods/jumbocarrot0@ReduxArcanum/description.md b/mods/jumbocarrot0@ReduxArcanum/description.md index 45f56acc..e7eeef8f 100644 --- a/mods/jumbocarrot0@ReduxArcanum/description.md +++ b/mods/jumbocarrot0@ReduxArcanum/description.md @@ -1,4 +1,8 @@ -This is a successor project to itayfeeder's Codex Arcanum +Redux Arcanum is a complete rewrtie of itayfeeder's Codex Arcanum. The original mod has not been updated since early Steamodded alpha. + +In addition to making the mod playable with modern steammodded, Redux Arcanum also brings new content and balance changes to the original mod. All changes can be turned off in the mod's configuration settings if you want just the mod as it was intended by the original creators. + +[Click here for a full list of new features and balance changes]([https://discord.gg/cryptid](https://github.com/jumbocarrot0/Redux-Arcanum/releases/tag/v2.0.0-prerelease1)) Codex Arcanum is a mod that aims to expand Balatro by adding a new type of consumable card: Alchemical Cards! @@ -6,8 +10,6 @@ Alchemical cards possess powerful, but temporary abilities that you can use in a The are a total of 24 alchemical cards! -The mod also adds 8 new jokers, 4 new vouchers, 7 new booster packs, a Tarot card, a new Boss Blind, and a Spectral card, to expand the game and allow a smoother experience with alchemical cards. +The mod also adds 8 new jokers, 4 new vouchers, 7 new booster packs, 2 new decks, a Tarot card, a new Boss Blind, achievements, (and other secrets) to expand the game and allow a smoother experience with alchemical cards. -As well as providing necessary bug fixes, the Redux Arcanum fork also implements a suite of balance changes and a few new features. - -If you wish to play with the mechanics more faithful to the original mod, you can disable the new content by clicking the Redux Arcanum mod in the mod list and unchecking "new content". \ No newline at end of file +Codex Arcanum was originally made by Itayfeder as the programmer and Lyman as the artist. All I (Jumbocarrot) did was clean it up a bit. diff --git a/mods/jumbocarrot0@ReduxArcanum/meta.json b/mods/jumbocarrot0@ReduxArcanum/meta.json index 623a9727..c6208cda 100644 --- a/mods/jumbocarrot0@ReduxArcanum/meta.json +++ b/mods/jumbocarrot0@ReduxArcanum/meta.json @@ -5,9 +5,9 @@ "categories": [ "Content" ], - "author": "itayfeder, jumbocarrot0", + "author": "itayfeder, Lyman, jumbocarrot0", "repo": "https://github.com/jumbocarrot0/Redux-Arcanum", "downloadURL": "https://github.com/jumbocarrot0/Redux-Arcanum/archive/refs/heads/main.zip", "automatic-version-check": true, - "version": "a1cba05" + "version": "fbe9b9f" } diff --git a/mods/jumbocarrot0@ReduxArcanum/thumbnail.jpg b/mods/jumbocarrot0@ReduxArcanum/thumbnail.jpg new file mode 100644 index 00000000..e42b4655 Binary files /dev/null and b/mods/jumbocarrot0@ReduxArcanum/thumbnail.jpg differ diff --git a/mods/kasimeka@typist/description.md b/mods/kasimeka@typist/description.md index 26a72cab..c704430d 100644 --- a/mods/kasimeka@typist/description.md +++ b/mods/kasimeka@typist/description.md @@ -1,6 +1,4 @@ -# typist - -typist is a fully keyboard-driven UX mod for Balatro. +a fully keyboard-driven UX mod for Balatro, with a bunch of QoL keybinds. ## video demo diff --git a/mods/kasimeka@typist/meta.json b/mods/kasimeka@typist/meta.json index c400aeb2..52409615 100644 --- a/mods/kasimeka@typist/meta.json +++ b/mods/kasimeka@typist/meta.json @@ -8,7 +8,7 @@ ], "author": "kasimeka", "repo": "https://github.com/kasimeka/balatro-typist-mod", - "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.6.2.zip", + "downloadURL": "https://github.com/kasimeka/balatro-typist-mod/archive/refs/tags/1.8.2.zip", "automatic-version-check": true, - "version": "1.6.2" + "version": "1.8.2" } diff --git a/mods/kcgidw@kcvanilla/meta.json b/mods/kcgidw@kcvanilla/meta.json index 4f232b6d..c6517a6f 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": "ed4078c" + "version": "0dc2cbe" } 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/lordruby@Entropy/description.md b/mods/lordruby@Entropy/description.md index 3e0fffd4..a80eea48 100644 --- a/mods/lordruby@Entropy/description.md +++ b/mods/lordruby@Entropy/description.md @@ -1,7 +1,10 @@ # Entropy An unbalanced cryptid addon for balatro, Built around the madness gameset -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 - +Note: Entropy currently requires [Cryptid Main](https://github.com/SpectralPack/Cryptid/tree/) and [Talisman](https://github.com/MathIsFun0/Talisman/) Entropy currently adds: -![image](https://github.com/user-attachments/assets/cc15b960-3299-4eaf-82af-5b095e08927d) + +![image](https://github.com/user-attachments/assets/cfa3a34f-ee83-4736-bec0-31b48f665eda) +![image](https://github.com/user-attachments/assets/e780bc3a-66da-4299-abbc-fa69a4c4607b) +![image](https://github.com/user-attachments/assets/4afd6eae-9c4a-43c0-a1c1-b3ff258a60a1) + diff --git a/mods/lordruby@Entropy/meta.json b/mods/lordruby@Entropy/meta.json index 13001b95..b4f4dc97 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": "c7a2c5a", + "version": "2fd7112", "automatic-version-check": true } diff --git a/mods/nh6574@JokerDisplay/meta.json b/mods/nh6574@JokerDisplay/meta.json index e5e3d437..3a15b199 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": "0c8464d" + "version": "9fcd069" } diff --git a/mods/nh6574@JoyousSpring/meta.json b/mods/nh6574@JoyousSpring/meta.json index 990f1d7a..de273600 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": "5745c65" + "version": "c0a24f9" } diff --git a/mods/notmario@MoreFluff/meta.json b/mods/notmario@MoreFluff/meta.json index 6a2acabe..5a1765aa 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": "a259c03" + "version": "27bd83d" } 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 0e9eb3a5..470c45c3 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": "05f0d91", + "version": "9c70142", "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/description.md b/mods/riosodu@black-seal/description.md new file mode 100644 index 00000000..5cac0617 --- /dev/null +++ b/mods/riosodu@black-seal/description.md @@ -0,0 +1,36 @@ +# Black Seal + +A port of the original Black Seal mod to newer versions of Steamodded. This mod adds a rare black seal to the game that provides powerful negative edition effects. + +## How It Works + +When a card with black seal is used, it will apply **negative edition** to a random eligible joker. + +## Key Features + +- **Automatic Cleanup**: All other black seals in the deck will be removed when triggered (seals on cards in hand are kept) +- **Rare Spawn**: Can be found anywhere a random seal may appear, most commonly in booster packs with a 2% base chance +- **Configurable Spawn Rate**: The spawn chance relative to all other seals can be configured (defaults to 10%) +- **Ectoplasm Override**: Can override the 'Ectoplasm' spectral card to add a black seal instead of its normal effect +- **Hand Reduction Toggle**: When Ectoplasm override is active, you can also disable the hand reduction effect + +## Installation + +1. **Requirements**: Download and install [Steamodded](https://github.com/Steamodded/smods) +2. **Download**: Get the latest version of Black Seal from the releases +3. **Install Location**: Extract to `%appdata%\Balatro\Mods` on Windows +4. **Configuration**: Adjust spawn rates and Ectoplasm behavior through the mod settings + +## Configuration Options + +- **Spawn Rate**: Adjust how frequently black seals appear relative to other seals +- **Ectoplasm Override**: Enable/disable replacing Ectoplasm's effect with black seal application +- **Hand Reduction**: When using Ectoplasm override, toggle whether the hand size reduction still occurs + +## Credits + +Original mod created by **infarctus**. This version has been ported and updated for compatibility with newer Steamodded versions. + +## Support + +For issues, suggestions, or contributions, please visit the [GitHub repository](https://github.com/gfreitash/balatro-mods). diff --git a/mods/riosodu@black-seal/meta.json b/mods/riosodu@black-seal/meta.json new file mode 100644 index 00000000..545145b2 --- /dev/null +++ b/mods/riosodu@black-seal/meta.json @@ -0,0 +1,15 @@ +{ + "title": "Black Seal", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content" + ], + "author": "Riosodu", + "repo": "https://github.com/gfreitash/balatro-mods", + "downloadURL": "https://github.com/gfreitash/balatro-mods/releases/download/black-seal__latest/black-seal.zip", + "folderName": "black-seal", + "automatic-version-check": true, + "fixed-release-tag-updates": true, + "version": "20250708_032640" +} diff --git a/mods/riosodu@qol-bundle/description.md b/mods/riosodu@qol-bundle/description.md new file mode 100644 index 00000000..f05a6ba5 --- /dev/null +++ b/mods/riosodu@qol-bundle/description.md @@ -0,0 +1,23 @@ +# 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. + +## Key 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. + +## 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..ff23e611 --- /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": "20250708_032641" +} 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/salpootsy@BossJokers/description.md b/mods/salpootsy@BossJokers/description.md new file mode 100644 index 00000000..46589b10 --- /dev/null +++ b/mods/salpootsy@BossJokers/description.md @@ -0,0 +1,12 @@ +# Boss Jokers for Balatro Multiplayer +Addon to Balatro Multiplayer that adds multiplayer specific jokers. + +## Additions +20 multiplayer specific jokers that are based on the Boss Blinds. + +## Reworks +- **Luchador** - Allows Luchador to work with the new jokers. +- **Chicot** - Allows Chicot to work with the new jokers. + +## Requirements +This mod requires [Steamodded](https://github.com/Steamodded/smods) (>=1.0.0~BETA-0323b) [Balatro Multiplayer](https://github.com/Balatro-Multiplayer/BalatroMultiplayer) (>=0.2.8) diff --git a/mods/salpootsy@BossJokers/meta.json b/mods/salpootsy@BossJokers/meta.json new file mode 100644 index 00000000..9c3c77f9 --- /dev/null +++ b/mods/salpootsy@BossJokers/meta.json @@ -0,0 +1,15 @@ +{ + "title": "Boss Jokers", + "requires-steamodded": true, + "requires-talisman": false, + "categories": [ + "Content", + "Joker" + ], + "author": "Salpootsy", + "repo": "https://github.com/salpootsy/BossJokers", + "downloadURL": "https://github.com/salpootsy/BossJokers/releases/latest/download/BossJokers.zip", + "folderName": "BossJokers", + "version": "0.1.3", + "automatic-version-check": true +} diff --git a/mods/salpootsy@BossJokers/thumbnail.jpg b/mods/salpootsy@BossJokers/thumbnail.jpg new file mode 100644 index 00000000..a4030a76 Binary files /dev/null and b/mods/salpootsy@BossJokers/thumbnail.jpg differ diff --git a/mods/spire-winder@Balatro-Draft/meta.json b/mods/spire-winder@Balatro-Draft/meta.json index 0573f151..8cf97551 100644 --- a/mods/spire-winder@Balatro-Draft/meta.json +++ b/mods/spire-winder@Balatro-Draft/meta.json @@ -6,6 +6,7 @@ "Content" ], "author": "spire-winder", + "folderName": "BalatroDraft", "repo": "https://github.com/spire-winder/Balatro-Draft", "downloadURL": "https://github.com/spire-winder/Balatro-Draft/releases/download/v0.5.2/Balatro-Draft-v0.5.2.zip", "automatic-version-check": false, diff --git a/mods/stupxd@Blueprint/meta.json b/mods/stupxd@Blueprint/meta.json index 716c1716..8a0e4686 100644 --- a/mods/stupxd@Blueprint/meta.json +++ b/mods/stupxd@Blueprint/meta.json @@ -6,6 +6,7 @@ "Quality of Life" ], "author": "Stupxd", + "folderName": "Blueprint", "repo": "https://github.com/stupxd/Blueprint", "downloadURL": "https://github.com/stupxd/Blueprint/archive/refs/heads/master.zip", "automatic-version-check": true, diff --git a/mods/stupxd@Cartomancer/description.md b/mods/stupxd@Cartomancer/description.md index 9e7dd437..279b2169 100644 --- a/mods/stupxd@Cartomancer/description.md +++ b/mods/stupxd@Cartomancer/description.md @@ -1,15 +1,17 @@ # Cartomancer -Balatro mod with quality of life improvements and some small optimizations. +Balatro mod with quality of life improvements and some small optimizations, mainly aimed for better experience with endless or heavily modded runs. ## Features -- Improved deck view with options to stack equal cards, hide already drawn cards and more. +- Deck view customization (stack equal cards, hide already drawn cards). -- Improved jokers management. +- Boss Blinds History. -- Improved deck display with custom cards limit. +- Expand your jokers for easier management with >20 jokers. -- Custom scoring flames intensity and volume. +- Limit amount of cards shown in deck pile. + +- Scoring flames customization (intensity and volume). - and (maybe) more... diff --git a/mods/stupxd@Cartomancer/meta.json b/mods/stupxd@Cartomancer/meta.json index 52e7c985..44da8d12 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": "0d5f2c5" + "version": "5489211" } diff --git a/mods/stupxd@Cartomancer/thumbnail.jpg b/mods/stupxd@Cartomancer/thumbnail.jpg new file mode 100644 index 00000000..e659a69c Binary files /dev/null and b/mods/stupxd@Cartomancer/thumbnail.jpg differ diff --git a/mods/termisaal@MainMenuTweaks/meta.json b/mods/termisaal@MainMenuTweaks/meta.json index 98c87812..b9ce7a88 100644 --- a/mods/termisaal@MainMenuTweaks/meta.json +++ b/mods/termisaal@MainMenuTweaks/meta.json @@ -6,6 +6,7 @@ "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, diff --git a/mods/theAstra@Maximus/meta.json b/mods/theAstra@Maximus/meta.json index 41c76abf..83aefbf2 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": "7397a5e" } 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 77cacda5..da83a3fc 100644 --- a/mods/wingedcatgirl@MintysSillyMod/meta.json +++ b/mods/wingedcatgirl@MintysSillyMod/meta.json @@ -1,13 +1,13 @@ { "title": "Minty's Silly Little Mod", "requires-steamodded": true, - "requires-talisman": true, + "requires-talisman": false, "categories": [ "Content" ], "author": "wingedcatgirl", "repo": "https://github.com/wingedcatgirl/MintysSillyMod", - "downloadURL": "https://github.com/wingedcatgirl/MintysSillyMod/releases/download/v0.4.0c/MintysSillyMod-0.4.0c.zip", + "downloadURL": "https://github.com/wingedcatgirl/MintysSillyMod/releases/download/v0.6.2/MintysSillyMod-0.6.2.zip", "automatic-version-check": false, - "version": "v0.4.0c" + "version": "v0.6.2" } 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@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..eff38e2b --- /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": "fc7c452" +} diff --git a/schema/meta.schema.json b/schema/meta.schema.json index 3529a1b6..a88ead48 100644 --- a/schema/meta.schema.json +++ b/schema/meta.schema.json @@ -16,7 +16,15 @@ "type": "array", "items": { "type": "string", - "enum": ["Content", "Joker", "Quality of Life", "Technical", "Miscellaneous", "Resource Packs", "API"] + "enum": [ + "Content", + "Joker", + "Quality of Life", + "Technical", + "Miscellaneous", + "Resource Packs", + "API" + ] }, "minItems": 1, "uniqueItems": true @@ -36,13 +44,99 @@ "type": "string", "pattern": "^[^<>:\"/\\|?*]+$" }, - "version": { + "version": { "type": "string" }, - "automatic-version-check": { + "automatic-version-check": { + "type": "boolean" + }, + "fixed-release-tag-updates": { "type": "boolean" } }, - "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." + } + } + ] } -