https://github.com/remarkablegames/renpy-deckbuilder
🃏 Ren'Py Deckbuilder
https://github.com/remarkablegames/renpy-deckbuilder
card-game deckbuilder deckbuilding game python renpy renpy-game template
Last synced: 2 months ago
JSON representation
🃏 Ren'Py Deckbuilder
- Host: GitHub
- URL: https://github.com/remarkablegames/renpy-deckbuilder
- Owner: remarkablegames
- License: mit
- Created: 2025-06-18T01:03:42.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2026-01-10T06:44:56.000Z (2 months ago)
- Last Synced: 2026-01-11T01:55:46.048Z (2 months ago)
- Topics: card-game, deckbuilder, deckbuilding, game, python, renpy, renpy-game, template
- Language: Ren'Py
- Homepage: http://remarkablegames.org/renpy-deckbuilder/
- Size: 18 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Ren'Py Deckbuilder
[](https://github.com/remarkablegames/renpy-deckbuilder/releases)
[](https://github.com/remarkablegames/renpy-deckbuilder/actions/workflows/build.yml)
[](https://github.com/remarkablegames/renpy-deckbuilder/actions/workflows/lint.yml)
🃏 Ren'Py Deckbuilder Template.
Play the game:
- [remarkablegames](https://remarkablegames.org/renpy-deckbuilder/)
Or download:
- [Windows](https://github.com/remarkablegames/renpy-rpg/releases/latest/download/win.zip)
- [Mac](https://github.com/remarkablegames/renpy-rpg/releases/latest/download/mac.zip)
- [Linux](https://github.com/remarkablegames/renpy-rpg/releases/latest/download/pc.zip)
## Credits
### Art
- [Uncle Mugen](https://lemmasoft.renai.us/forums/viewtopic.php?t=17302)
### Audio
- [Kenney Interface Sounds](https://kenney.nl/assets/interface-sounds)
- Pixabay
- [Heal Up](https://pixabay.com/sound-effects/heal-up-39285/)
- [Health Pickup](https://pixabay.com/sound-effects/health-pickup-6860/)
- [Heartbeat 01 - BRVHRTZ](https://pixabay.com/sound-effects/heartbeat-01-brvhrtz-225058/)
- [Punch Sound Effects](https://pixabay.com/sound-effects/punch-sound-effects-28649/)
- [card mixing](https://pixabay.com/sound-effects/card-mixing-48088/)
## Prerequisites
Download [Ren'Py SDK](https://www.renpy.org/latest.html):
```sh
git clone https://github.com/remarkablegames/renpy-sdk.git
```
Symlink `renpy`:
```sh
sudo ln -sf "$(realpath renpy-sdk/renpy.sh)" /usr/local/bin/renpy
```
Check the version:
```sh
renpy --version
```
## Install
Clone the repository to the `Projects Directory`:
```sh
git clone https://github.com/remarkablegames/renpy-deckbuilder.git
cd renpy-deckbuilder
```
Rename the project:
```sh
git grep -l "Ren'Py Deckbuilder" | xargs sed -i '' -e "s/Ren'Py Deckbuilder/My Game/g"
```
```sh
git grep -l 'renpy-deckbuilder' | xargs sed -i '' -e 's/renpy-deckbuilder/my-game/g'
```
Replace the assets:
- [ ] `game/gui/main_menu.png`
- [ ] `game/gui/window_icon.png`
- [ ] [`icon.icns`](https://anyconv.com/png-to-icns-converter/)
- [ ] [`icon.ico`](https://anyconv.com/png-to-ico-converter/)
- [ ] `web-icon.png`
- [ ] `web-presplash.webp`
## Run
Launch the project:
```sh
renpy .
```
Or open the `Ren'Py Launcher`:
```sh
renpy
```
Press `Shift`+`R` to reload the game.
Press `Shift`+`D` to open the developer menu.
## Cache
Clear the cache:
```sh
find game -name "*.rpyc" -delete
```
Or open `Ren'Py Launcher` > `Force Recompile`:
```sh
renpy
```
## Lint
Lint the game:
```sh
renpy game lint
```
## License
[MIT](LICENSE)