From 4f5d57f399d64962bd2c8d7cbc1c9e55fe8d1cee Mon Sep 17 00:00:00 2001 From: Penelope Date: Sat, 10 May 2025 16:06:18 -0300 Subject: [PATCH] first commit, let's godot! --- requirements/requirements.md | 39 ++++++++++++++++++++++++++++++++++++ src/cpp/main.cpp | 6 ++++++ src/godot/.gitkeep | 0 src/python/.gitkeep | 0 4 files changed, 45 insertions(+) create mode 100644 requirements/requirements.md create mode 100644 src/cpp/main.cpp create mode 100644 src/godot/.gitkeep create mode 100644 src/python/.gitkeep diff --git a/requirements/requirements.md b/requirements/requirements.md new file mode 100644 index 0000000..ac6cd01 --- /dev/null +++ b/requirements/requirements.md @@ -0,0 +1,39 @@ +# Baluster + +## Card game inspired in Balatro for educational purposes only + +## General + +Actors: player, house (NPC), + + +## The game + +The game must be randomized based on a seed number. + +The game must randomize: +- the player deck; +- the order of cards that are presented after a turn, ex: joker, tarot and spectal cards; +- the challenge of boss blind; + +The run consists of three rounds: +- Small Blind +- Big Blind +- Boss Blind + +The small and big blind can be skipped or played + +The boss blind cannot be skipped + +The boss blind provides a challenge + + +## Blind + +The player have a number of hands + +The player have a number of discards + +## Score + +The player diff --git a/src/cpp/main.cpp b/src/cpp/main.cpp new file mode 100644 index 0000000..f4bd2c6 --- /dev/null +++ b/src/cpp/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello World!\n"); + return 0; +} diff --git a/src/godot/.gitkeep b/src/godot/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/python/.gitkeep b/src/python/.gitkeep new file mode 100644 index 0000000..e69de29