summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/welcome.py
blob: f3fd25ed5565d74312da5edb7ee5266f8011658b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from text import TextPage

def welcome_screen():
    return TextPage(
            "           Slice it off!\n"
            " \n"
            " Your mission:\n"
            "  * Slice area to 20%\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) )