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