From 007845827ea39c2827e9b66a477e7fa3b988c4ee Mon Sep 17 00:00:00 2001 From: sysek Date: Sun, 11 Aug 2024 21:54:40 +0200 Subject: [PATCH] second init --- .gitignore | 1 - main.py | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 main.py diff --git a/.gitignore b/.gitignore index afc2e9e..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +0,0 @@ -main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..b488e0e --- /dev/null +++ b/main.py @@ -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() \ No newline at end of file