summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/instructions1.py
blob: cf9ccc7fd89fdadb659b41b84c13a8c9b6155cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
""" screens.instructions1 - First page of instructions"""
from sliceitoff.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) )