diff options
author | Viljami Ilola <+@hix.fi> | 2024-04-08 02:55:25 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-04-08 02:55:25 +0300 |
commit | 74a735a7878bc76d01b644505f674cfe7bebd058 (patch) | |
tree | 6c7f64b88abffe9cdecb655ed950ac34485bbeaf /src/sliceitoff/screens/instructions1.py | |
parent | eeac2c3bd87c542c48c806a98ea8c7c22db6dfc2 (diff) |
instructions screens
Diffstat (limited to 'src/sliceitoff/screens/instructions1.py')
-rw-r--r-- | src/sliceitoff/screens/instructions1.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/sliceitoff/screens/instructions1.py b/src/sliceitoff/screens/instructions1.py new file mode 100644 index 0000000..58d6f58 --- /dev/null +++ b/src/sliceitoff/screens/instructions1.py @@ -0,0 +1,25 @@ +""" screens.instructions1 - First page of instructions""" +from text import TextPage + +def instructions1_screen(): + """ Instructions about the goal """ + return TextPage( + "\n Slice It Off!\n\n" + "\n" + " What to do?\n" + "\n" + " * Move the slicing tool\n" + " in the playarea.\n" + "\n" + " * Slice when there is\n" + " no-one on the way.\n" + "\n" + " * Empty slices fall off.\n" + "\n" + " * If playarea is sliced\n" + " below 20% you level up.\n" + "\n" + " * Slicing costs points.\n", + font = '8x8', + size = (12_000, 12_000), + pos = (0, 0) ) |