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/instructions2.py | |
parent | eeac2c3bd87c542c48c806a98ea8c7c22db6dfc2 (diff) |
instructions screens
Diffstat (limited to 'src/sliceitoff/screens/instructions2.py')
-rw-r--r-- | src/sliceitoff/screens/instructions2.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/sliceitoff/screens/instructions2.py b/src/sliceitoff/screens/instructions2.py new file mode 100644 index 0000000..19b8928 --- /dev/null +++ b/src/sliceitoff/screens/instructions2.py @@ -0,0 +1,26 @@ +""" screens.instructions2 - Page about scoring """ +from text import TextPage + +def instructions2_screen(): + """ Instructions about scoring """ + return TextPage( + "\n Slice It Off!\n\n" + "\n" + " Getting scores?\n" + "\n" + " \xee\x12\xef Level up gives bonus\n" + " and also multiplies.\n" + "\n" + " \xec\x03\xef Extra lives gives bonus\n" + "\n" + " \xed\x0e\xef Getting level done\n" + " before bonus timer.\n" + "\n" + " \xe9\xfe\xef Area smaller than 20%\n" + " gives bonuses.\n" + "\n" + " \xea\x0f\xef Keeping herd together\n" + " in same area.\n", + font = '8x8', + size = (12_000, 12_000), + pos = (0, 0) ) |