├── .gitattributes ├── .gitignore ├── README.md ├── assets ├── 1x │ ├── clippers.png │ ├── cross_mod_packets.png │ ├── decks.png │ ├── icon.png │ ├── packets.png │ ├── packs.png │ ├── parcels.png │ ├── sleeves.png │ └── tags.png └── 2x │ ├── clippers.png │ ├── cross_mod_packets.png │ ├── decks.png │ ├── icon.png │ ├── packets.png │ ├── packs.png │ ├── parcels.png │ ├── sleeves.png │ └── tags.png ├── config.lua ├── data.json ├── draft.lua ├── items ├── clippers.lua ├── compatible.lua ├── decks.lua ├── draft_modes.lua ├── galdur.lua ├── packets.lua ├── packs.lua ├── parcels.lua ├── sleeves.lua ├── ui.lua └── utility.lua └── localization └── en-us.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Balatro Draft 2 | 3 | -------------------------------------------------------------------------------- /assets/1x/clippers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/clippers.png -------------------------------------------------------------------------------- /assets/1x/cross_mod_packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/cross_mod_packets.png -------------------------------------------------------------------------------- /assets/1x/decks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/decks.png -------------------------------------------------------------------------------- /assets/1x/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/icon.png -------------------------------------------------------------------------------- /assets/1x/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/packets.png -------------------------------------------------------------------------------- /assets/1x/packs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/packs.png -------------------------------------------------------------------------------- /assets/1x/parcels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/parcels.png -------------------------------------------------------------------------------- /assets/1x/sleeves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/sleeves.png -------------------------------------------------------------------------------- /assets/1x/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/1x/tags.png -------------------------------------------------------------------------------- /assets/2x/clippers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/clippers.png -------------------------------------------------------------------------------- /assets/2x/cross_mod_packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/cross_mod_packets.png -------------------------------------------------------------------------------- /assets/2x/decks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/decks.png -------------------------------------------------------------------------------- /assets/2x/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/icon.png -------------------------------------------------------------------------------- /assets/2x/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/packets.png -------------------------------------------------------------------------------- /assets/2x/packs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/packs.png -------------------------------------------------------------------------------- /assets/2x/parcels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/parcels.png -------------------------------------------------------------------------------- /assets/2x/sleeves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/sleeves.png -------------------------------------------------------------------------------- /assets/2x/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/assets/2x/tags.png -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/config.lua -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/data.json -------------------------------------------------------------------------------- /draft.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/draft.lua -------------------------------------------------------------------------------- /items/clippers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/clippers.lua -------------------------------------------------------------------------------- /items/compatible.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/compatible.lua -------------------------------------------------------------------------------- /items/decks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/decks.lua -------------------------------------------------------------------------------- /items/draft_modes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/draft_modes.lua -------------------------------------------------------------------------------- /items/galdur.lua: -------------------------------------------------------------------------------- 1 | --Will do later -------------------------------------------------------------------------------- /items/packets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/packets.lua -------------------------------------------------------------------------------- /items/packs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/packs.lua -------------------------------------------------------------------------------- /items/parcels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/parcels.lua -------------------------------------------------------------------------------- /items/sleeves.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/sleeves.lua -------------------------------------------------------------------------------- /items/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/ui.lua -------------------------------------------------------------------------------- /items/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/items/utility.lua -------------------------------------------------------------------------------- /localization/en-us.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spire-winder/Balatro-Draft/HEAD/localization/en-us.lua --------------------------------------------------------------------------------