Webworld docs: move gameinfo documentation to their world folders and copy them for webhost use. (#455)
This commit is contained in:
@@ -6,11 +6,23 @@ from .Locations import location_table, SM64Location
|
||||
from .Options import sm64_options
|
||||
from .Rules import set_rules
|
||||
from .Regions import create_regions, sm64courses
|
||||
from BaseClasses import Region, RegionType, Entrance, Item, MultiWorld
|
||||
from ..AutoWorld import World
|
||||
from BaseClasses import Region, RegionType, Entrance, Item, MultiWorld, Tutorial
|
||||
from ..AutoWorld import World, WebWorld
|
||||
|
||||
client_version = 1
|
||||
|
||||
|
||||
class SM64Web(WebWorld):
|
||||
tutorials = [Tutorial(
|
||||
"Multiworld Setup Guide",
|
||||
"A guide to setting up SM64EX for MultiWorld.",
|
||||
"English",
|
||||
"setup_en.md",
|
||||
"setup/en",
|
||||
["N00byKing"]
|
||||
)]
|
||||
|
||||
|
||||
class SM64World(World):
|
||||
"""
|
||||
The first Super Mario game to feature 3D gameplay, it features freedom of movement within a large open world based on polygons,
|
||||
@@ -20,6 +32,8 @@ class SM64World(World):
|
||||
game: str = "Super Mario 64"
|
||||
topology_present = False
|
||||
|
||||
web = SM64Web()
|
||||
|
||||
item_name_to_id = item_table
|
||||
location_name_to_id = location_table
|
||||
|
||||
|
||||
Reference in New Issue
Block a user