second init

This commit is contained in:
sysek 2024-08-11 21:54:40 +02:00
parent 71eff5f71a
commit 007845827e
2 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
main.py

16
main.py Normal file
View file

@ -0,0 +1,16 @@
class Player:
name = ""
STATs = {
"INT": 5,
"REF": 7,
"DEX": 7,
"TECH": 7,
"COOL": 7,
"WILL": 5,
"LUCK": 8,
"MOVE": 6,
"BODY": 5,
"EMP": 5
}
player = Player()