first commit, let's godot!
This commit is contained in:
parent
b7e80f5c7e
commit
4f5d57f399
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
printf("Hello World!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue