Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobr1227/double_seals
A Balatro Mod adding new Seal effects and Spectral cards.
https://github.com/jacobr1227/double_seals
Last synced: about 2 months ago
JSON representation
A Balatro Mod adding new Seal effects and Spectral cards.
- Host: GitHub
- URL: https://github.com/jacobr1227/double_seals
- Owner: jacobr1227
- License: mit
- Created: 2024-03-27T18:37:56.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T20:16:38.000Z (4 months ago)
- Last Synced: 2024-08-23T15:06:33.058Z (4 months ago)
- Language: Lua
- Homepage:
- Size: 7.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-balatro - Silver Seals - 增加银色蜡封,如果在回合结束时这张牌还留在手牌中,生成一张幻灵卡。 by [@jacobr1227](https://github.com/jacobr1227) (模组 (依赖 [Balamod](https://github.com/UwUDev/balamod)) / 蜡封)
README
# Double Seals + SealAPI
A Balatro mod that introduces new seal variants that double the effects of the underlying seal.### Supported Seals:
- The base 4 seals: effects doubled.
- New Orange Seal: randomly enhances 1 or 2 random cards from your hand when discarded.
- New Silver Seal: creates 1 or 2 Spectral cards when held in hand at end of roundRequires [Balamod](https://github.com/UwUDev/balamod/) latest build & [center_hook.lua](https://github.com/nicholassam6425/balatro-mods/tree/main/balamod/apis)
Use an older release (v2.0 or less) for older Balamod releases with the old mod format.
### Other Additions:
- ~~3 new Spectral cards that add the new Seals:~~
- ~~Blur doubles a seal, or adds a random one~~
- ~~Gleam and Mystic add Orange and Silver seals, respectively.~~
The spectral cards are not currently available with the current codebase. They will be reintroduced later, however.### Installation
Drop the folders from the zip over in releases into %appdata%/Balatro/mods for Windows, or ~/.local/share/Steam/steamapps/compatdata/2379780/pfx/drive_c/users/steamuser/AppData/Roaming/Balatro/mods for Linux.### API for developers (FOR BALAMOD <=V0.1.11)
The API supports the addition of new seals with just a few functions.Run the following block (replacing necessary information) for an easy setup for your mod.
```
on_enable = function()
add_seal("SealId", "Seal Label Name", "color", "shadertype", { text = "descr", "iption" })
-- Your effect code here, see the mods folder for examples of what this will look like
inject_overrides()
end
on_disable = function()
remove_seals()
end
```
This API also contains a function for adding infotips to other cards, such as jokers and consumeables.
Use this when creating other mods that refer to Seal items in their info text.![Demo Reel](https://github.com/jacobr1227/double_seals/blob/main/gifs/double_seals_demo.gif)
![Demo Reel](https://github.com/jacobr1227/double_seals/blob/main/gifs/orange_silver_demo_reel.gif)