diff options
Diffstat (limited to 'apworld/__init__.py')
| -rw-r--r-- | apworld/__init__.py | 10 |
1 files changed, 9 insertions, 1 deletions
| diff --git a/apworld/__init__.py b/apworld/__init__.py index d05bd38..6eeee74 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | """ | 1 | """ |
| 2 | Archipelago init file for Lingo 2 | 2 | Archipelago init file for Lingo 2 |
| 3 | """ | 3 | """ |
| 4 | from BaseClasses import ItemClassification, Item | 4 | from BaseClasses import ItemClassification, Item, Tutorial |
| 5 | from worlds.AutoWorld import WebWorld, World | 5 | from worlds.AutoWorld import WebWorld, World |
| 6 | from .items import Lingo2Item | 6 | from .items import Lingo2Item |
| 7 | from .options import Lingo2Options | 7 | from .options import Lingo2Options |
| @@ -13,6 +13,14 @@ from .static_logic import Lingo2StaticLogic | |||
| 13 | class Lingo2WebWorld(WebWorld): | 13 | class Lingo2WebWorld(WebWorld): |
| 14 | rich_text_options_doc = True | 14 | rich_text_options_doc = True |
| 15 | theme = "grass" | 15 | theme = "grass" |
| 16 | tutorials = [Tutorial( | ||
| 17 | "Multiworld Setup Guide", | ||
| 18 | "A guide to playing Lingo 2 with Archipelago.", | ||
| 19 | "English", | ||
| 20 | "en_Lingo_2.md", | ||
| 21 | "setup/en", | ||
| 22 | ["hatkirby"] | ||
| 23 | )] | ||
| 16 | 24 | ||
| 17 | 25 | ||
| 18 | class Lingo2World(World): | 26 | class Lingo2World(World): |
