├── .gitignore ├── LICENSE ├── README.md ├── balatro-mobile-builder.sln ├── balatro-mobile-builder ├── AndroidBalatroBridge.cs ├── AndroidBuilder.cs ├── BalatroPatches.cs ├── BalatroSaveReader.cs ├── BalatroZip.cs ├── ConInterface.cs ├── ExternalTool.cs ├── HttpClientExtensions.cs ├── IOSBuilder.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── linux-arm64.pubxml │ │ ├── linux-x64.pubxml │ │ ├── osx-arm64.pubxml │ │ ├── osx-x64.pubxml │ │ ├── win-arm64.pubxml │ │ └── win-x64.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── drawable-hdpi.png │ ├── drawable-mdpi.png │ ├── drawable-xhdpi.png │ ├── drawable-xxhdpi.png │ ├── drawable-xxxhdpi.png │ └── patches │ │ ├── commonfixes_button_callbacks.patch │ │ ├── commonfixes_globals.patch │ │ ├── crtdisable.patch │ │ ├── externalstorage.patch │ │ ├── fpscap.patch │ │ ├── highdpi_button_callbacks.patch │ │ ├── highdpi_conf.patch │ │ ├── landscape.patch │ │ ├── shaderfixes_background.patch │ │ ├── shaderfixes_booster.patch │ │ ├── shaderfixes_crt.patch │ │ ├── shaderfixes_debuff.patch │ │ ├── shaderfixes_dissolve.patch │ │ ├── shaderfixes_flame.patch │ │ ├── shaderfixes_flash.patch │ │ ├── shaderfixes_foil.patch │ │ ├── shaderfixes_gold_seal.patch │ │ ├── shaderfixes_holo.patch │ │ ├── shaderfixes_hologram.patch │ │ ├── shaderfixes_negative.patch │ │ ├── shaderfixes_negative_shine.patch │ │ ├── shaderfixes_played.patch │ │ ├── shaderfixes_polychrome.patch │ │ ├── shaderfixes_skew.patch │ │ ├── shaderfixes_splash.patch │ │ ├── shaderfixes_vortex.patch │ │ └── shaderfixes_voucher.patch ├── UnifiedPatch.cs └── balatro-mobile-builder.csproj ├── publish.bat └── resources ├── base.ipa └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/README.md -------------------------------------------------------------------------------- /balatro-mobile-builder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder.sln -------------------------------------------------------------------------------- /balatro-mobile-builder/AndroidBalatroBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/AndroidBalatroBridge.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/AndroidBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/AndroidBuilder.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/BalatroPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/BalatroPatches.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/BalatroSaveReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/BalatroSaveReader.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/BalatroZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/BalatroZip.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/ConInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/ConInterface.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/ExternalTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/ExternalTool.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/HttpClientExtensions.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/IOSBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/IOSBuilder.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Program.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/linux-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/linux-arm64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/linux-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/linux-x64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/osx-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/osx-arm64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/osx-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/osx-x64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Properties/Resources.resx -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/drawable-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/drawable-hdpi.png -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/drawable-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/drawable-mdpi.png -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/drawable-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/drawable-xhdpi.png -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/drawable-xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/drawable-xxhdpi.png -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/drawable-xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/drawable-xxxhdpi.png -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/commonfixes_button_callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/commonfixes_button_callbacks.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/commonfixes_globals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/commonfixes_globals.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/crtdisable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/crtdisable.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/externalstorage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/externalstorage.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/fpscap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/fpscap.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/highdpi_button_callbacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/highdpi_button_callbacks.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/highdpi_conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/highdpi_conf.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/landscape.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/landscape.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_background.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_background.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_booster.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_booster.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_crt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_crt.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_debuff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_debuff.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_dissolve.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_dissolve.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_flame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_flame.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_flash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_flash.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_foil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_foil.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_gold_seal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_gold_seal.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_holo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_holo.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_hologram.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_hologram.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_negative.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_negative.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_negative_shine.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_negative_shine.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_played.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_played.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_polychrome.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_polychrome.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_skew.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_skew.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_splash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_splash.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_vortex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_vortex.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/Resources/patches/shaderfixes_voucher.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/Resources/patches/shaderfixes_voucher.patch -------------------------------------------------------------------------------- /balatro-mobile-builder/UnifiedPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/UnifiedPatch.cs -------------------------------------------------------------------------------- /balatro-mobile-builder/balatro-mobile-builder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/balatro-mobile-builder/balatro-mobile-builder.csproj -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/publish.bat -------------------------------------------------------------------------------- /resources/base.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/resources/base.ipa -------------------------------------------------------------------------------- /resources/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGgamer2/balatro-mobile-builder/HEAD/resources/screenshot.jpg --------------------------------------------------------------------------------