mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-23 13:23:19 -07:00
17 lines
458 B
Python
17 lines
458 B
Python
from BaseClasses import Tutorial
|
|
from ..AutoWorld import WebWorld
|
|
|
|
|
|
class SatisfactoryWebWorld(WebWorld):
|
|
theme = "dirt"
|
|
setup = Tutorial(
|
|
"Multiworld Setup Guide",
|
|
"A guide to setting up the Satisfactory Archipelago mod and connect it to an Archipelago Multiworld",
|
|
"English",
|
|
"setup_en.md",
|
|
"setup/en",
|
|
["Robb", "Jarno"]
|
|
)
|
|
tutorials = [setup]
|
|
rich_text_options_doc = True
|