Files
balatro-gba-chinese-jocker-…/README.md
T
Wheeler 9ab2fef330 Remove Watchers Badge
I felt it was unnecessary and caused some bloat. I think the others are much more important than how many watchers there are.
2025-08-24 20:27:27 -04:00

6.0 KiB

Balatro-GBA

Build Status Open Issues Pull Requests Forks Stars

This is an attempt to recreate the game 'Balatro' as accurately as possible, including all of the visual effects that make Balatro feel satisfying to play.

This tech-demo/proof of concept is strictly limited in content to a minimal version of Balatro and will NOT recreate the full game. This version is intended for people who already own and know how the official full game works. Please refer to the Balatro Wiki for any information regarding Joker effects and such.

Disclaimer: This project is NOT endorsed by or affiliated with Playstack or LocalThunk

This is a non-profit community fan project solely aimed to recreate a minimal version of Balatro on the Game Boy Advance as a tribute to the full Balatro and is not intended to infringe or draw sales away from the full game's release or any of the established works by Playstack and LocalThunk.

All rights are reserved to their respective holders.

Buy the official full version from these sources below:

Balatro on Steam Balatro on Google Play Balatro on Apple App Store Balatro on Nintendo eShop Balatro on PlayStation Store Balatro on Xbox Balatro on Humble Bundle

Example

Controls:

(A: Pick Card/Make Selections)

(B: Deselect All Cards)

(L: Sell Joker)

(R: Sort Suit/Rank)

(D-Pad: Navigation)

Build Instructions:

-Windows-

  1. Install devkitPro from https://github.com/devkitPro/installer by downloading the latest release.

  2. Execute it and follow the installation instructions, you only need to install the tools for the GBA development so ensure you have it selected and install it to the default directory.

  3. Go to the Start Menu and search for MSys2 and open it.

  4. Install Git by typing this command: pacman -S git if you don't have it already installed.

  5. Navigate to where you want to clone the project such as your desktop or Documents folder. The easiest way to properly cd to the directory is to type cd and drag and drop the folder into the terminal window and press Enter.

  • Example: cd '/home/user/OneDrive/Documents/balatro-gba or something like this.
  1. Clone the project with git clone --recursive https://github.com/cellos51/balatro-gba.git in the terminal window.

  2. Use cd and drag the newly generated folder into the window to add the file path and press Enter.

  3. Type make into the window and press Enter to start building the game.

  4. After it completes, navigate through the build directory in the project folder and look for balatro-gba.gba and load it on an emulator or flashcart.

Common Issues:

  1. When I drag the folder into the window and press enter, it doesn't work!
  • After dragging the folder, nake sure to click back into the window and press enter
  1. When I run make it errors out and won't compile!
  • Move the project folder to your desktop and then cd to it by dragging the folder into the terminal window after typing cd first.
  1. I can't find the compiled rom!
  • Look for a folder called build inside the project folder and then find balatro-gba.gba.
  1. The Game won't start!
  • Try a different emulator or if you are using original hardware, make sure the rom is not corrupted and try a different flashcart or SD Card. If this does not work, open an issue on the Github page because a recent commit may have broke the game.
  1. It says I don't have Git or Make installed!
  • Use pacman -S git or pacman -S make although it should already be installed if you followed the instructions correctly.