diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 23:52:05 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 23:52:05 -0400 |
commit | a825f800a04334ac8a4338c5fe88d7bbce49c022 (patch) | |
tree | 8717e81195024267e37063bd4a74c95e1a77152e /apworld/__init__.py | |
parent | 7a5d9d53da0b1c56a272dcfd535800e92dfd2e0b (diff) | |
download | lingo2-archipelago-a825f800a04334ac8a4338c5fe88d7bbce49c022.tar.gz lingo2-archipelago-a825f800a04334ac8a4338c5fe88d7bbce49c022.tar.bz2 lingo2-archipelago-a825f800a04334ac8a4338c5fe88d7bbce49c022.zip |
Made sure the apworld unit tests pass
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): |