summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/instructions1.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sliceitoff/screens/instructions1.py')
-rw-r--r--src/sliceitoff/screens/instructions1.py25
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) )