diff options
-rw-r--r-- | src/sliceitoff/screens/welcome.py | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/sliceitoff/screens/welcome.py b/src/sliceitoff/screens/welcome.py index 9a7a341..4f5eb2b 100644 --- a/src/sliceitoff/screens/welcome.py +++ b/src/sliceitoff/screens/welcome.py @@ -4,14 +4,17 @@ def welcome_screen(): return TextPage( " Slice it off!\n" " \n" - " * Do not hit the balls\n" - " * Make area 10% or smaller\n" - " * Do not separate the balls\n" - " * Make area 10% or smaller\n" - " * Do not separate the balls\n" - " * Make area 10% or smaller\n" - " * Do not separate the balls\n" - " * Be fast!!\n", + " Your mission:\n" + " * Slice area to target\n" + " * Slice no-one\n" + "\n" + " Gain score by:\n" + " * Keeping herd together\n" + " * Not slicing unnecessarily\n" + " * Making area even smaller\n" + " * Not losing lives\n" + " * Being fast\n" + " * Leveling up\n", font = 'computer', size = (8_000, 16_000), grid = (9_000, 16_000) ) |