From 74a735a7878bc76d01b644505f674cfe7bebd058 Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Mon, 8 Apr 2024 02:55:25 +0300 Subject: instructions screens --- src/sliceitoff/screens/instructions1.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/sliceitoff/screens/instructions1.py (limited to 'src/sliceitoff/screens/instructions1.py') 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) ) -- cgit v1.2.3