Merge branch 'main' into add-last-updated
58
.github/scripts/update_mod_versions.py
vendored
@@ -29,14 +29,22 @@ def extract_repo_info(repo_url):
|
||||
return None, None
|
||||
|
||||
VersionSource = Enum("VersionSource", [
|
||||
("RELEASE_TAG", "release"),
|
||||
("LATEST_TAG", "release"),
|
||||
("HEAD", "commit"),
|
||||
("SPECIFIC_TAG", "specific_tag"),
|
||||
])
|
||||
def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
|
||||
def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1, tag_data=None):
|
||||
"""Get the version string from a given GitHub repo."""
|
||||
|
||||
if source is VersionSource.RELEASE_TAG:
|
||||
if source is VersionSource.LATEST_TAG:
|
||||
url = f'https://api.github.com/repos/{owner}/{repo}/releases/latest'
|
||||
elif source is VersionSource.SPECIFIC_TAG:
|
||||
if not tag_data:
|
||||
print(f"ERROR: SPECIFIC_TAG source requires tag_name")
|
||||
return None
|
||||
|
||||
tag_name = tag_data['name']
|
||||
url = f'https://api.github.com/repos/{owner}/{repo}/releases/tags/{tag_name}'
|
||||
else:
|
||||
if not source is VersionSource.HEAD:
|
||||
print(f"UNIMPLEMENTED(VersionSource): `{source}`,\nfalling back to `HEAD`")
|
||||
@@ -60,10 +68,33 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
|
||||
if response.status_code == 200:
|
||||
data = response.json()
|
||||
|
||||
if source is VersionSource.RELEASE_TAG:
|
||||
if source is VersionSource.LATEST_TAG:
|
||||
# Return name of latest tag
|
||||
return data.get('tag_name')
|
||||
|
||||
elif source is VersionSource.SPECIFIC_TAG:
|
||||
assets = data.get('assets', [])
|
||||
if not assets:
|
||||
print(f"⚠️ No assets found in release {tag_name}")
|
||||
return None
|
||||
|
||||
latest_created_at = ""
|
||||
latest_asset = None
|
||||
|
||||
for asset in assets:
|
||||
created_at = asset.get('created_at', '')
|
||||
if created_at > latest_created_at:
|
||||
latest_created_at = created_at
|
||||
latest_asset = asset['name']
|
||||
|
||||
# Convert 2099-12-31T01:02:03Z to 20991231_010203
|
||||
parts = latest_created_at.replace('Z', '').split('T')
|
||||
date_part = parts[0].replace('-', '') # 20991231
|
||||
time_part = parts[1].replace(':', '') # 010203
|
||||
version = f"{date_part}_{time_part}" # 20991231_010203
|
||||
tag_data['file'] = latest_asset
|
||||
return version
|
||||
|
||||
if data and len(data) > 0:
|
||||
# Return shortened commit hash (first 7 characters)
|
||||
return data[0]['sha'][:7]
|
||||
@@ -100,7 +131,7 @@ def get_version_string(source: Enum, owner, repo, start_timestamp, n = 1):
|
||||
print(f"Waiting {wait_time} seconds until next attempt...")
|
||||
time.sleep(wait_time)
|
||||
n += 1
|
||||
return get_version_string(source, owner, repo, start_timestamp, n) # Retry
|
||||
return get_version_string(source, owner, repo, start_timestamp, n, tag_data=tag_data) # Retry
|
||||
else:
|
||||
print(f"Next attempt in {wait_time} seconds, but Action run time would exceed 1800 seconds - Stopping...")
|
||||
sys.exit(1)
|
||||
@@ -167,10 +198,22 @@ def process_mod(start_timestamp, name, meta_file):
|
||||
print("Download URL links to HEAD, checking latest commit...")
|
||||
source = VersionSource.HEAD
|
||||
new_version = get_version_string(VersionSource.HEAD, owner, repo, start_timestamp)
|
||||
elif (meta.get('fixed-release-tag-updates') == True) and "/releases/download/" in download_url:
|
||||
source = VersionSource.SPECIFIC_TAG
|
||||
tag_data = {}
|
||||
|
||||
# Pattern: /releases/download/{tag}/{file} - tag is second-to-last
|
||||
print("Download URL links to specific release asset, checking that asset's tag...")
|
||||
tag_name = download_url.split('/')[-2]
|
||||
print(f"Checking release tag: {tag_name}")
|
||||
tag_data['name'] = tag_name
|
||||
|
||||
new_version = get_version_string(
|
||||
source, owner, repo, start_timestamp, tag_data=tag_data
|
||||
)
|
||||
else:
|
||||
print("Checking releases for latest version tag...")
|
||||
source = VersionSource.RELEASE_TAG
|
||||
source = VersionSource.LATEST_TAG
|
||||
new_version = get_version_string(source, owner, repo, start_timestamp)
|
||||
|
||||
if not new_version:
|
||||
@@ -195,6 +238,8 @@ def process_mod(start_timestamp, name, meta_file):
|
||||
meta['last-updated'] = TIME_NOW
|
||||
if "/archive/refs/tags/" in download_url:
|
||||
meta['downloadURL'] = f"{repo_url}/archive/refs/tags/{meta['version']}.zip"
|
||||
elif source == VersionSource.SPECIFIC_TAG:
|
||||
meta['downloadURL'] = f"{repo_url}/releases/download/{tag_data['name']}/{tag_data['file']}"
|
||||
|
||||
with open(meta_file, 'w', encoding='utf-8') as f:
|
||||
# Preserve formatting with indentation
|
||||
@@ -244,4 +289,3 @@ if __name__ == "__main__":
|
||||
|
||||
# Exit with status code 0 even if no updates were made
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
12
.github/workflows/check-mod.yml
vendored
@@ -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..."
|
||||
|
||||
15
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.
|
||||
|
||||
55
mods/ABGamma@Brainstorm-Rerolled/description.md
Normal file
@@ -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
|
||||
16
mods/ABGamma@Brainstorm-Rerolled/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/ABGamma@Brainstorm-Rerolled/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
1
mods/ABuffZucchini@GreenerJokers/description.md
Normal file
@@ -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!
|
||||
15
mods/ABuffZucchini@GreenerJokers/meta.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"title": "Greener Jokers",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker"
|
||||
],
|
||||
"author": "ABuffZucchini",
|
||||
"repo": "https://github.com/ABuffZucchini/Greener-Jokers",
|
||||
"downloadURL": "https://github.com/ABuffZucchini/Greener-Jokers/archive/refs/heads/main.zip",
|
||||
"folderName": "Greener-Jokers",
|
||||
"version": "d1624d2",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/ABuffZucchini@GreenerJokers/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 377 KiB |
8
mods/AMY@AMY'sWaifus/description.md
Normal file
@@ -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)
|
||||
14
mods/AMY@AMY'sWaifus/meta.json
Normal file
@@ -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"
|
||||
}
|
||||
BIN
mods/AMY@AMY'sWaifus/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 27 KiB |
@@ -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**
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
49
mods/AbsentAbigail@AbsentDealer/description.md
Normal file
@@ -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:
|
||||
|
||||
<img src="https://github.com/user-attachments/assets/e946af64-dd48-4333-a883-afd523878696" alt="Jokers page 1" width="600"/>
|
||||
<img src="https://github.com/user-attachments/assets/645a96ec-9afb-4124-a32e-5ba80a0aaec4" alt="Jokers page 2" width="600"/>
|
||||
<img src="https://github.com/user-attachments/assets/eac10718-7977-435c-9143-6cba29cf1c84" alt="Jokers page 3" width="600"/>
|
||||
|
||||
|
||||
Decks:
|
||||
|
||||
<img src="https://github.com/user-attachments/assets/a884495f-8c01-4cb3-8813-49a368feb555" alt="Royal Deck" width="600"/>
|
||||
<img src="https://github.com/user-attachments/assets/19ecdfae-362e-4fdc-a361-a37e9b44ae66" alt="Voucher Deck" width="600"/>
|
||||
<img src="https://github.com/user-attachments/assets/e8941280-96eb-4563-a98e-a0ccb11bd45d" alt="Big Deck" width="600"/>
|
||||
|
||||
|
||||
Sin Spectral Card:
|
||||
|
||||
<img src="https://github.com/user-attachments/assets/e2d33caa-511f-4729-8dec-52e0451c8c7c" alt="Sin Spectral Card" width="400"/>
|
||||
|
||||
|
||||
Enhancements:
|
||||
|
||||
<img src="https://github.com/user-attachments/assets/e3f2212c-5e61-4599-8340-c6fa4cf5d01b" alt="Enhancements" width="400"/>
|
||||
|
||||
## 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
|
||||
|
||||
<img src="https://github.com/user-attachments/assets/21556c1f-60ff-4e66-be66-d63b62b372e5" alt="Plushie Deck" width="400"/>
|
||||
15
mods/AbsentAbigail@AbsentDealer/meta.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"title": "Absent Dealer",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker"
|
||||
],
|
||||
"author": "Absent Abigail",
|
||||
"repo": "https://github.com/AbsentAbigail/AbsentDealer",
|
||||
"downloadURL": "https://github.com/AbsentAbigail/AbsentDealer/releases/latest/download/absentdealer.zip",
|
||||
"folderName": "AbsentDealer",
|
||||
"version": "v1.3.2",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/AbsentAbigail@AbsentDealer/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 529 KiB |
@@ -10,5 +10,5 @@
|
||||
"repo": "https://github.com/Agoraaa/FlushHotkeys",
|
||||
"downloadURL": "https://github.com/Agoraaa/FlushHotkeys/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "dbb7019"
|
||||
"version": "ac9d035"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
# Aikoyori Paint Job
|
||||
Retextures some Jokers.
|
||||
Retextures specific Jokers.
|
||||
|
||||
Currently
|
||||
- Idol -> Hoshino Ai from Oshi no Ko
|
||||
- Egg -> [Instagram Egg](https://en.wikipedia.org/wiki/Instagram_egg)
|
||||
- Square Joker -> some Terrain from Minecraft
|
||||
|
||||
**Requires Malverk**
|
||||
43
mods/Aikoyori@Aikoyoris-Shenanigans/description.md
Normal file
@@ -0,0 +1,43 @@
|
||||
Basically a content mod where I add whatever I feel like adding.
|
||||
|
||||
The thumbnail is not doing this mod's justice because there are way more than what's there.
|
||||
|
||||
## What does it have?
|
||||
|
||||
This mod features (as of time writing this)
|
||||
- 50+ Jokers and!
|
||||
- At least three unique new mechanics never before seen in Balatro!
|
||||
- Literally play Scrabble in Balatro
|
||||
- 11 Planet Cards and at least 25 consumables (I ain't putting the exact numbers)!
|
||||
- Two Balance Mode for either a Balanced experience or Maximum numbers
|
||||
- 30+ Boss Blinds
|
||||
- 10+ Card Enhancements
|
||||
- 4 Decks
|
||||
- Hardcore Challenge Mode (for those looking to test their mod set)
|
||||
- A lot of cross-mod content! (I am looking for more cross-mod)
|
||||
- More to come!
|
||||
|
||||
## What, what?
|
||||
Yes, that's right, this mod features a "Balance" system (which is basically just Cryptid gameset in disguise)
|
||||
where you can pick the number you want to play with depending on your mood!
|
||||
|
||||
> Note: Absurd Balance (the likes of Cryptid) requires [Talisman](https://github.com/SpectralPack/Talisman) to be installed. Talisman is not essential if you want to play Adequate (Vanilla) Balance
|
||||
|
||||
## But...
|
||||
That's not it. This mod features a bunch of cross-mod content already from the likes of More Fluff, Card Sleeves, Partners, and more!
|
||||
|
||||
## I haven't even said a thing yet
|
||||
Oh.
|
||||
|
||||
## I wanted to ask if I can spell swear words when playing the so called Scrabble?
|
||||
That's for you to find out! Download now!
|
||||
|
||||
## What if I have more questions?
|
||||
Feel free to ask in [Discord Server](https://discord.gg/JVg8Bynm7k) for the mod or open an issue!
|
||||
|
||||
## Credits
|
||||
`@larantula_l` on Discord for their Maxwell's Notebook contribution
|
||||
|
||||
@nh_6574 for his Card UI code
|
||||
|
||||
Balatro Discord for everything else
|
||||
13
mods/Aikoyori@Aikoyoris-Shenanigans/meta.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"title": "Aikoyori's Shenanigans",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content"
|
||||
],
|
||||
"author": "Aikoyori",
|
||||
"repo": "https://github.com/Aikoyori/Balatro-Aikoyoris-Shenanigans",
|
||||
"downloadURL": "https://github.com/Aikoyori/Balatro-Aikoyoris-Shenanigans/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "acfcb5e"
|
||||
}
|
||||
BIN
mods/Aikoyori@Aikoyoris-Shenanigans/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 658 KiB |
72
mods/AppleMania@Maniatro/description.md
Normal file
@@ -0,0 +1,72 @@
|
||||
# Maniatro
|
||||
|
||||
## ¿Qué es Maniatro?
|
||||
|
||||
Maniatro es un mod para el juego Balatro que añade nuevos Jokers y más para hacer la experiencia de juego más caótica.
|
||||
|
||||
## Jokers
|
||||
|
||||
De momento, hay 45 Jokers, 2 cartas de Tarot y 2 cartas mejoradas para disfrutar en este momento.
|
||||
|
||||
Cada actualización añadirá de 12 a 17 Jokers, los cuales vendrán en forma de Waves. Varios de estos Jokers han sido creados gracias a las ideas de amigos y más, por lo que esté mod no sería el mismo sin ellos. En el mod estarán las personas que han estado involucradas en esto, con su respectivo agradecimiento.
|
||||
|
||||
El mod depende de Talisman, aqui un link para poder descargarlo: https://github.com/SpectralPack/Talisman
|
||||
|
||||
## Waves
|
||||
### Wave 1 - Maniatro Basics (1.0.0)
|
||||
| # | Joker | Mecánica |
|
||||
|----|----------------------|--------------------------------------------------------------------------|
|
||||
| 1 | Manzana Verde | Si juegas exactamente 5 cartas, ganas +3$ y +5 multi por esa mano.|
|
||||
| 2 | Ushanka | Obtienes +1 espacio de Joker pero tu mano se reduce a -1 carta.|
|
||||
| 3 | Xifox | X2 multi por cada 7 que puntúe.|
|
||||
| 4 | Net | Si la mano jugada tiene exactamente tres palos distintos, NET dará X2 chips.|
|
||||
| 5 | Keep Rollin' | Cualquier carta de picas jugada tiene un 25% de probabilidad de retriggearse. Si acierta, lo vuelve a intentar en la misma carta.|
|
||||
| 6 | Loss | Si la mano usada tiene exactamente 4 cartas en este orden: As, 2, 2, 2, gana X3 multi.|
|
||||
| 7 | Insomnio | X1.5 multi. Al comenzar una ronda, tiene 50% de ganar +0,5X. Si falla, se destruye.|
|
||||
| 8 | Red Dead Redemption II | Si ganas la ronda en tu primer intento, +15 multi Si usas más de un intento, -5 multi al acabar la ronda.|
|
||||
| 9 | Minion Pigs | Por cada Joker de rareza común adquirido, este Joker contiene +15 multi.|
|
||||
| 10 | Ale | Cada vez que juegas una mano, hay una probabilidad del 50% de darte +50 chips o quitarte -50 chips.|
|
||||
| 11 | Nauiyo | +0.2X por cada carta más en tu baraja. -0.2X por cada carta menos en tu baraja.|
|
||||
| 12 | Tablet | Si repites el mismo tipo de mano en dos jugadas seguidas, el multiplicador pasa a X2.5. Aumenta +0.5X por cada repetición adicional.|
|
||||
| 13 | Amongla | X3 multi. 0.125% de probabilidad de cerrar el juego.|
|
||||
| 14 | Fatal | . . . |
|
||||
| 15 | Proto | Por cada ronda, copia la habilidad de un Joker aleatorio. |
|
||||
|
||||
### Wave 2 - Cat Attack (2.0.0)
|
||||
| # | Joker | Mecánica |
|
||||
|----|----------------------|--------------------------------------------------------------------------|
|
||||
| 16 | Rufino | +3 multi por cada consumible usado.|
|
||||
| 17 | Pisu | Por cada gato que tengas comprado, +2X chips.|
|
||||
| 18 | EVIL Pisu | X1 multi. Aumenta +0.01X por cada segundo transcurrido.|
|
||||
| 19 | Sappho | X2 multi si la mano jugada no contiene ninguna figura.|
|
||||
| 20 | Mia | Si ganas la ronda sin hacer ningún descarte, gana +25 chips. Si descartas, perderás todo el progreso.|
|
||||
| 21 | Parabettle | Por cada 10 descartes, gana +25 chips permanentes.|
|
||||
| 22 | Joker tributario | Si tienes menos de 20$, este joker te dará +3$ por cada mano jugada. Si tienes más, no surgirá efecto.|
|
||||
| 23 | Mr. (Ant)Tenna | Todo lo que hay en la tienda tiene un 50% de descuento.|
|
||||
| 24 | BALATRO TOMORROW | Gana +0.25X chips por cada ronda ganada.|
|
||||
| 25 | Weezer | Este Joker se duplica cada 3 rondas. Por cada Weezer repetido, ganará +0.5X multi.|
|
||||
| 26 | Pride | Gana +69 multi por cada carta policromo que poseas.|
|
||||
| 27 | Lata de cerveza | Empieza con +50 multi. Pierde -5 multi por cada mano jugada.|
|
||||
| 28 | Paquete de cigarros | Al final de cada ronda: Si tienes dinero acumulado, pierdes -1$ y este gana +3 multi |
|
||||
| 29 | Caja vacía | . . . |
|
||||
| 30 | Julio | +24 multi. Cada 4 manos jugadas, el multi se eleva al cuadrado. |
|
||||
| 31 | Nuevo comienzo | Al final de cada ronda: Destruye un Joker al azar y gana +0.5X chips |
|
||||
| 32 | Determinación | Este Joker aplica X5 multi Cuántas más manos juegues, más fuerte se vuelve.|
|
||||
|
||||
### Wave 3 - Burned Memories (3.0.0)
|
||||
| # | Joker | Mecánica |
|
||||
|----|----------------------|--------------------------------------------------------------------------|
|
||||
| 33 | Ushanka desgastado | Cada 4 rondas, hay un 25% de probabilidad de conseguir +1 espacio para Jokers.|
|
||||
| 34 | Xifox desgastado | Si juegas un 7, hay un 10% de probabilidad de volverlo policromo.|
|
||||
| 35 | Obituary | Cada As o 2 jugado dará +4 multi.|
|
||||
| 36 | Amongla desgastado | X6 multi. 25% de probabilidad de cerrar el juego.|
|
||||
| 37 | Diédrico | Una mano cuenta como 2 manos. |
|
||||
| 38 | Pendrive | Cada minuto, este dará +5 chips. Alcanza un límite de hasta 100 chips.|
|
||||
| 39 | Gafas de Spamton | Si tienes menos de 20$, este joker te dará +3$ por cada mano jugada. Si tienes más, no surgirá efecto.|
|
||||
| 40 | Euro | +1$ por cada mano jugada.|
|
||||
| 41 | Frutos del bosque |+30 chips o +15 multi.|
|
||||
| 42 | Nira | ^1 multi. Si la mano jugada solo contiene corazones, aumenta en +0.2^ multi.|
|
||||
| 43 | Matkrov | Cada Joker raro que tengas dará X5 chips.|
|
||||
| 44 | Drokstav | Al acabar la mano, crea una carta mejorada aleatoria y la añade directamente a tu mano.|
|
||||
| 45 | Letko | Aplica N! multi basado en el número de cartas en tu primera mano.
|
||||
|
||||
12
mods/AppleMania@Maniatro/meta.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"title": "Maniatro",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": true,
|
||||
"categories": ["Content"],
|
||||
"author": "Applemania",
|
||||
"repo": "https://github.com/AppleMania30/Maniatro",
|
||||
"downloadURL": "https://github.com/AppleMania30/Maniatro/archive/refs/tags/3.0.0.zip",
|
||||
"folderName": "Maniatro",
|
||||
"version": "3.0.0",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/AppleMania@Maniatro/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 381 KiB |
5
mods/Arashi Fox@Arashicoolstuff/description.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Arashicoolstuff
|
||||
|
||||
Some jokers I made with Joker Forge.
|
||||
|
||||
If you want to add your joker ideas to the mod, just join my Discord server!
|
||||
14
mods/Arashi Fox@Arashicoolstuff/meta.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"title": "Arashicoolstuff",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Joker"
|
||||
],
|
||||
"author": "Arashi Fox",
|
||||
"repo": "https://github.com/ArashiFox/Arashicoolstuff",
|
||||
"downloadURL": "https://github.com/ArashiFox/Arashicoolstuff/archive/refs/heads/main.zip",
|
||||
"folderName": "Arashicoolstuff",
|
||||
"version": "03afcd0",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/Arashi Fox@Arashicoolstuff/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 157 KiB |
@@ -11,5 +11,5 @@
|
||||
"repo": "https://github.com/BakersDozenBagels/BalatroBakery",
|
||||
"downloadURL": "https://github.com/BakersDozenBagels/BalatroBakery/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "488197e"
|
||||
"version": "bc85bf0"
|
||||
}
|
||||
|
||||
5
mods/BakersDozenBagels@ValleyOfTheKings/description.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Valley of the Kings
|
||||
|
||||
Adds 20 Egyptian God themed jokers, made for Osiris' birthday.
|
||||
|
||||
Ideas come from Maple Maelstrom and Reaperkun; Coding was done by BakersDozenBagels and Revo
|
||||
11
mods/BakersDozenBagels@ValleyOfTheKings/meta.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"title": "Valley of the Kings",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": ["Content", "Joker"],
|
||||
"author": "BakersDozenBagels",
|
||||
"repo": "https://github.com/BakersDozenBagels/balatroValleyOfTheKings/",
|
||||
"downloadURL": "https://github.com/BakersDozenBagels/balatroValleyOfTheKings/archive/refs/tags/v0.1.0.zip",
|
||||
"version": "0.1.0"
|
||||
}
|
||||
|
||||
@@ -12,5 +12,5 @@
|
||||
"downloadURL": "https://github.com/BarrierTrio/Cardsauce/archive/refs/heads/main.zip",
|
||||
"folderName": "Cardsauce",
|
||||
"automatic-version-check": true,
|
||||
"version": "a13653e"
|
||||
"version": "71485d9"
|
||||
}
|
||||
|
||||
@@ -10,5 +10,5 @@
|
||||
"downloadURL": "https://github.com/blazingulag/Prism/archive/refs/heads/main.zip",
|
||||
"folderName": "Prism",
|
||||
"automatic-version-check": true,
|
||||
"version": "004aed3"
|
||||
"version": "55d0533"
|
||||
}
|
||||
|
||||
@@ -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
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"title": "Glowypumpkin Community Deck",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Resource Packs"
|
||||
],
|
||||
"author": "ButterSpaceship",
|
||||
"repo": "https://github.com/ButterSpaceship/Glowypumpkin-Community-Mod",
|
||||
"downloadURL": "https://github.com/ButterSpaceship/Glowypumpkin-Community-Mod/releases/latest/download/GlowyPumpkin-Custom-Deck.zip",
|
||||
"version": "V5.0",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
|
After Width: | Height: | Size: 27 KiB |
@@ -10,5 +10,5 @@
|
||||
"repo": "https://github.com/GuilloryCraft/ExtraCredit",
|
||||
"downloadURL": "https://github.com/GuilloryCraft/ExtraCredit/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "94bd9fb"
|
||||
"version": "0855210"
|
||||
}
|
||||
|
||||
6
mods/CelestinGaming@BalatrinGamingDeck/description.md
Normal file
@@ -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)
|
||||
|
||||
14
mods/CelestinGaming@BalatrinGamingDeck/meta.json
Normal file
@@ -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"
|
||||
}
|
||||
BIN
mods/CelestinGaming@BalatrinGamingDeck/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 926 KiB |
28
mods/CountKiro@PMBalatroMod/description.md
Normal file
@@ -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!
|
||||
12
mods/CountKiro@PMBalatroMod/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/CountKiro@PMBalatroMod/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 205 KiB |
20
mods/Danitskkj@Lost_Edition/description.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Lost Edition
|
||||
|
||||
Lost Edition is a Vanilla+ expansion for Balatro, carefully crafted to keep the original game's spirit while introducing plenty of fresh content to discover!
|
||||
|
||||
## Features
|
||||
- 🃏 70+ new Jokers to shake up your runs
|
||||
- 💀 Challenging new Boss Blinds
|
||||
- ✨ New Enhancements to expand your strategies
|
||||
- ⭐ New Editions to explore
|
||||
- ♠️ Extra Decks for even more playstyles
|
||||
- 🎟️ New Vouchers to change up your game
|
||||
- 🎨 Exciting new themed and collaborative Friend of Jimbo skins
|
||||
- **And much more!**
|
||||
|
||||
This mod requires [Steamodded](https://github.com/Steamopollys/Steamodded) and [Lovely](https://github.com/ethangreen-dev/lovely-injector).
|
||||
|
||||
## Credits
|
||||
Created by **ClickNoPaulo** & **Danitskkj**
|
||||
|
||||
Detailed credits for everyone else who contributed to the mod can be found in-game. Thank you to all collaborators and artists who helped make Lost Edition a reality! ❤️
|
||||
16
mods/Danitskkj@Lost_Edition/meta.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"title": "Lost Edition",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker",
|
||||
"Quality of Life"
|
||||
],
|
||||
"author": "ClicknoPaulo & Danitskkj",
|
||||
"repo": "https://github.com/Danitskkj/Lost_Edition",
|
||||
"downloadURL": "https://github.com/Danitskkj/Lost_Edition/archive/refs/heads/main.zip",
|
||||
"folderName": "Lost_Edition",
|
||||
"automatic-version-check": true,
|
||||
"version": "58567c7"
|
||||
}
|
||||
BIN
mods/Danitskkj@Lost_Edition/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 226 KiB |
6
mods/Deco@Pokerleven/description.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# What is Pokerleven?
|
||||
Pokerleven is an overhaul mod for Balatro based on Inazuma Eleven series. Currently it is in alpha state, be aware of bugs.
|
||||
|
||||
It adds new small, big and boss blinds, as well as jokers and completely new mechanics.
|
||||
It is intended to play this mod without balatro content for the best experience.
|
||||
> by Deco
|
||||
15
mods/Deco@Pokerleven/meta.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"title": "Pokerleven",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker"
|
||||
],
|
||||
"author": "Deco",
|
||||
"folderName": "Pokerleven",
|
||||
"repo": "https://github.com/DecoXFE/PokerLeven",
|
||||
"downloadURL": "https://github.com/DecoXFE/PokerLeven/releases/latest/download/PokerLeven.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "v0.1.1a-BETA"
|
||||
}
|
||||
BIN
mods/Deco@Pokerleven/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
@@ -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"
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
"repo": "https://github.com/DigitalDetective47/strange-pencil",
|
||||
"downloadURL": "https://github.com/DigitalDetective47/strange-pencil/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "df43a20"
|
||||
"version": "ea890e9"
|
||||
}
|
||||
|
||||
14
mods/Dogg_Fly@AnotherStupidBalatroMod/description.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# Another Stupid Balatro Mod
|
||||
welcome to Another Stupid Balatro Mod in this mod you will find many interesting Jokers and others that look like crap. This mod contains. more than 155 new Jokers, consumables and more content
|
||||
(some other Joker is based on Spanish jokes)
|
||||
|
||||
<img width="829" height="652" alt="image" src="https://github.com/user-attachments/assets/bd919974-c9b7-4482-ba84-869e78bf0670" />
|
||||
|
||||
|
||||
THIS MOD WAS CREATED THROUGH [JOKER FORGE](https://jokerforge.jaydchw.com/overview)
|
||||
|
||||
# Installation
|
||||
This mod requires [Talisman](https://github.com/SpectralPack/Talisman)
|
||||
|
||||
|
||||
|
||||
16
mods/Dogg_Fly@AnotherStupidBalatroMod/meta.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"title": "Another Stupid Balatro Mod",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": true,
|
||||
"categories": [
|
||||
"Content"
|
||||
],
|
||||
"author": "Dogg Fly",
|
||||
"repo": "https://github.com/Dogg-Fly/Another-Stupid-Balatro-Mod",
|
||||
"downloadURL": "https://github.com/Dogg-Fly/Another-Stupid-Balatro-Mod/releases/latest/download/anotherstupidbalatromod.zip",
|
||||
"folderName": "anotherstupidbalatromod",
|
||||
"version": "v3.3",
|
||||
"automatic-version-check": true
|
||||
|
||||
|
||||
}
|
||||
BIN
mods/Dogg_Fly@AnotherStupidBalatroMod/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 886 KiB |
5
mods/ENNWAY@SuperFine/description.md
Normal file
@@ -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!
|
||||
15
mods/ENNWAY@SuperFine/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/ENNWAY@SuperFine/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 606 KiB |
3
mods/EasternFarmer@EasternFarmers_corner/description.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# EasternFarmer's corner
|
||||
The mod i've been making for the past couple of weeks.
|
||||
Enjoy.
|
||||
12
mods/EasternFarmer@EasternFarmers_corner/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/EasternFarmer@EasternFarmers_corner/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
@@ -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"
|
||||
}
|
||||
|
||||
@@ -11,5 +11,5 @@
|
||||
"repo": "https://github.com/EricTheToon/Fortlatro",
|
||||
"downloadURL": "https://github.com/EricTheToon/Fortlatro/releases/latest/download/Fortlatro.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "1.1.5"
|
||||
"version": "1.1.8"
|
||||
}
|
||||
|
||||
@@ -9,6 +9,6 @@
|
||||
"repo": "https://github.com/Fantom-Balatro/Fantoms-Preview",
|
||||
"downloadURL": "https://github.com/Fantom-Balatro/Fantoms-Preview/releases/latest/download/Fantoms-Preview.zip",
|
||||
"folderName": "Fantoms-Preview",
|
||||
"version": "v2.3.0",
|
||||
"version": "v2.4.1",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
|
||||
2
mods/Finnaware@Finn'sPokécards/description.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# Finn's Pokécards
|
||||
Adds many pokémon themed cards!
|
||||
14
mods/Finnaware@Finn'sPokécards/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/Finnaware@Finn'sPokécards/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 154 KiB |
@@ -9,5 +9,5 @@
|
||||
"repo": "https://github.com/Finnaware/Finn-Pokelatro",
|
||||
"downloadURL": "https://github.com/Finnaware/Finn-Pokelatro/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "873790c"
|
||||
"version": "edd7cc0"
|
||||
}
|
||||
|
||||
BIN
mods/Finnaware@Finn'sPokélatro/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 592 KiB |
4
mods/Finnaware@Kyu-latro!/description.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Kyu-latro!
|
||||
A texture pack that retextures the game to be Feenekin line related
|
||||
|
||||
Requires **Malverk**
|
||||
14
mods/Finnaware@Kyu-latro!/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/Finnaware@Kyu-latro!/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 180 KiB |
@@ -9,8 +9,8 @@
|
||||
],
|
||||
"author": "Firch",
|
||||
"repo": "https://github.com/jumbocarrot0/Bunco",
|
||||
"downloadURL": "https://github.com/jumbocarrot0/Bunco/releases/download/5.2-JumboFork/Bunco.5.2.JumboFork.zip",
|
||||
"downloadURL": "https://github.com/jumbocarrot0/Bunco/archive/refs/tags/v5.4.5c-JumboFork.zip",
|
||||
"folderName": "Bunco",
|
||||
"version": "5.1",
|
||||
"automatic-version-check": false
|
||||
"version": "v5.4.5c-JumboFork",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
|
||||
17
mods/Franciscoarr@Espalatro/description.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# Espalatro
|
||||
Un mod de Balatro sobre España creado por:
|
||||
- Franciscoarr (X: @PepsiPaco, IG: frxn_arrieta), encargado de la programación.
|
||||
- Pelusa (X: @P__Lusa, IG: p__lusa), encargado del arte.
|
||||
|
||||
# Créditos
|
||||
Queremos dar las gracias tanto al creador del mod BBBalatro que nos sirvió como plantilla para hacer este mod, como a Yahiamice que nos ayudo en algunas dudas que teniamos.
|
||||
|
||||
# Reportar errores
|
||||
Si encuentras un error, puedes reportarlo directamente abriendo un [Issue en GitHub](https://github.com/Franciscoarr/Espalatro/issues), describe qué ocurrió y cómo reproducirlo si es posible.
|
||||
|
||||
# Requisitos
|
||||
Se debe tener [Steamodded](https://github.com/Steamodded/smods/wiki) para poder usar Espalatro, extrayendo el .zip en %AppData%\Roaming\Balatro\Mods
|
||||
|
||||
¡Gracias por descargar nuestro mod!
|
||||
|
||||
|
||||
14
mods/Franciscoarr@Espalatro/meta.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"title": "Espalatro",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Joker"
|
||||
],
|
||||
"author": "Franciscoarr",
|
||||
"repo": "https://github.com/Franciscoarr/Espalatro",
|
||||
"downloadURL": "https://github.com/Franciscoarr/Espalatro/archive/refs/heads/main.zip",
|
||||
"folderName": "Espalatro",
|
||||
"version": "f02168e",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/Franciscoarr@Espalatro/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 726 KiB |
@@ -10,5 +10,5 @@
|
||||
"downloadURL": "https://github.com/Gainumki/GARBSHIT/archive/refs/heads/main.zip",
|
||||
"folderName": "GARBSHIT",
|
||||
"automatic-version-check": true,
|
||||
"version": "6f227ef"
|
||||
"version": "c5c9013"
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
"repo": "https://github.com/GitNether/paperback",
|
||||
"downloadURL": "https://github.com/GitNether/paperback/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "07539b3"
|
||||
"version": "c44d460"
|
||||
}
|
||||
|
||||
7
mods/Glitchkat10@Cryptposting/description.md
Normal file
@@ -0,0 +1,7 @@
|
||||
A collection of the Cryptid community's unfunniest shitposts.<br>
|
||||
Requires Cryptid, obviously.<br>
|
||||
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).<br>
|
||||
[Cartomancer](https://github.com/stupxd/Cartomancer) is highly recommended to be used with this mod.
|
||||
<br>
|
||||
<br>
|
||||
Join the [Cryptposting Discord](https://discord.gg/Jk9Q9usrNy)!
|
||||
15
mods/Glitchkat10@Cryptposting/meta.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"title": "Cryptposting",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": true,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker"
|
||||
],
|
||||
"author": "Glitchkat10 and Poker The Poker",
|
||||
"repo": "https://github.com/kierkat10/Cryptposting",
|
||||
"downloadURL": "https://github.com/kierkat10/Cryptposting/archive/refs/heads/main.zip",
|
||||
"folderName": "Cryptposting",
|
||||
"version": "8834802",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/Glitchkat10@Cryptposting/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 171 KiB |
39
mods/GoonsTowerDefense@Goonlatro/description.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# Goonlatro - The GTD Balatro Mod
|
||||
|
||||

|
||||
|
||||
A mod and texture pack for Balatro that adds various Jokers and Consumables to the game based on GTD Discord references.
|
||||
|
||||
Don't expect this to be good cause it's not.
|
||||
|
||||
We hope you have fun playing it, we know we did.
|
||||
|
||||
Requires [Malverk](https://github.com/Eremel/Malverk), [Steamodded](https://github.com/Steamodded/smods), and [Lovely](https://github.com/ethangreen-dev/lovely-injector)
|
||||
|
||||
## Installation
|
||||
Get the latest release from [here](https://github.com/GoonsTowerDefense/goonlatro/releases), unzip the file and place it in your Balatro/Mods folder.
|
||||
|
||||
Make sure you have all of the requirements installed.
|
||||
|
||||
Finally, start Balatro and have fun!
|
||||
|
||||
## Additions
|
||||
|
||||
### Jokers
|
||||
**Crazy Eights** Joker: (based on the LTLVC5/Grunk bit) X8 Mult, gains X8 Mult on round end.
|
||||
|
||||
**Playstyle** Joker: (Inside Joke) Flips all **face-down** cards to be **face-up**.
|
||||
|
||||
**Click the Bart** Joker: WIP
|
||||
|
||||
### Consumables
|
||||
**A Big Bag** Spectral Card: With one **cookie** in it.
|
||||
|
||||
**Just the Bag** Spectral Card: Gives back **all hands** played.
|
||||
|
||||
**Cookie** Spectral Card: Gives back **all discards** used.
|
||||
|
||||
### Decks
|
||||
**Take my Playstyle** Deck: Starts with all GTD Cards.
|
||||
|
||||
**Crazy!** Deck: Starts with 8 **Crazy Eights**.
|
||||
16
mods/GoonsTowerDefense@Goonlatro/meta.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"title": "Goonlatro",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker",
|
||||
"Resource Packs"
|
||||
],
|
||||
"author": "Goons Tower Defense",
|
||||
"repo": "https://github.com/GoonsTowerDefense/Goonlatro",
|
||||
"downloadURL": "https://github.com/GoonsTowerDefense/Goonlatro/archive/refs/heads/main.zip",
|
||||
"folderName": "Goonlatro",
|
||||
"version": "9e4ecf9",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/GoonsTowerDefense@Goonlatro/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 533 KiB |
4
mods/GunnableScum@Visibility/description.md
Normal file
@@ -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!
|
||||
15
mods/GunnableScum@Visibility/meta.json
Normal file
@@ -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"
|
||||
}
|
||||
BIN
mods/GunnableScum@Visibility/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 150 KiB |
@@ -10,5 +10,5 @@
|
||||
"repo": "https://github.com/HuyTheKiller/LocFixer",
|
||||
"downloadURL": "https://github.com/HuyTheKiller/LocFixer/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "92e99a1"
|
||||
"version": "9eb27f1"
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
"repo": "https://github.com/HuyTheKiller/SauKhongHuDecks",
|
||||
"downloadURL": "https://github.com/HuyTheKiller/SauKhongHuDecks/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "c8ec9d3"
|
||||
"version": "5d7fc48"
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
"repo": "https://github.com/HuyTheKiller/VietnameseBalatro",
|
||||
"downloadURL": "https://github.com/HuyTheKiller/VietnameseBalatro/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "55a3bc2"
|
||||
"version": "1d7b776"
|
||||
}
|
||||
|
||||
@@ -9,6 +9,6 @@
|
||||
"repo": "https://github.com/icyethics/Kino",
|
||||
"downloadURL": "https://github.com/icyethics/Kino/archive/refs/heads/main.zip",
|
||||
"folderName": "Kino",
|
||||
"version": "fac1117",
|
||||
"version": "b5ace76",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
|
||||
@@ -11,5 +11,5 @@
|
||||
"repo": "https://github.com/InertSteak/Pokermon",
|
||||
"downloadURL": "https://github.com/InertSteak/Pokermon/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "403a1ca"
|
||||
"version": "0f06e52"
|
||||
}
|
||||
|
||||
@@ -10,5 +10,5 @@
|
||||
"repo": "https://github.com/wingedcatgirl/Fusion-Jokers",
|
||||
"downloadURL": "https://github.com/wingedcatgirl/Fusion-Jokers/archive/refs/heads/main.zip",
|
||||
"automatic-version-check": true,
|
||||
"version": "00674b4"
|
||||
"version": "efd4d70"
|
||||
}
|
||||
|
||||
94
mods/ItsGraphax@RedditBonanza/description.md
Normal file
@@ -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)
|
||||
15
mods/ItsGraphax@RedditBonanza/meta.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"title": "Reddit Bonanza",
|
||||
"requires-steamodded": true,
|
||||
"requires-talisman": false,
|
||||
"categories": [
|
||||
"Content",
|
||||
"Joker"
|
||||
],
|
||||
"author": "ItsGraphax, mindoftony",
|
||||
"repo": "https://github.com/itsgraphax/reddit-bonanza",
|
||||
"downloadURL": "https://github.com/itsgraphax/reddit-bonanza/releases/latest/download/mod.zip",
|
||||
"folderName": "RedditBonanza",
|
||||
"version": "v1.3",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
BIN
mods/ItsGraphax@RedditBonanza/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
@@ -9,6 +9,6 @@
|
||||
"repo": "https://github.com/Jakey2BooBoo/-BooBooBalatro-",
|
||||
"downloadURL": "https://github.com/Jakey2BooBoo/-BooBooBalatro-/archive/refs/heads/main.zip",
|
||||
"folderName": "!BooBooBalatro!",
|
||||
"version": "ac5c718",
|
||||
"version": "acedd29",
|
||||
"automatic-version-check": true
|
||||
}
|
||||
|
||||
4
mods/JosephPB09@CuriLatro/description.md
Normal file
@@ -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
|
||||
14
mods/JosephPB09@CuriLatro/meta.json
Normal file
@@ -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
|
||||
}
|
||||
BIN
mods/JosephPB09@CuriLatro/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |