2022-10-13 07:55:00 +02:00
|
|
|
from typing import Dict
|
|
|
|
|
2023-03-20 11:01:08 -05:00
|
|
|
from BaseClasses import Tutorial
|
|
|
|
from ..AutoWorld import WebWorld, World
|
|
|
|
|
2022-10-13 07:55:00 +02:00
|
|
|
|
|
|
|
class Bk_SudokuWebWorld(WebWorld):
|
|
|
|
settings_page = "games/Sudoku/info/en"
|
|
|
|
theme = 'partyTime'
|
|
|
|
tutorials = [
|
|
|
|
Tutorial(
|
|
|
|
tutorial_name='Setup Guide',
|
|
|
|
description='A guide to playing BK Sudoku',
|
|
|
|
language='English',
|
|
|
|
file_name='setup_en.md',
|
2022-11-04 20:03:39 +01:00
|
|
|
link='setup/en',
|
2022-10-13 07:55:00 +02:00
|
|
|
authors=['Jarno']
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
class Bk_SudokuWorld(World):
|
|
|
|
"""
|
|
|
|
Play a little Sudoku while you're in BK mode to maybe get some useful hints
|
|
|
|
"""
|
|
|
|
game = "Sudoku"
|
|
|
|
web = Bk_SudokuWebWorld()
|
2023-03-20 11:01:08 -05:00
|
|
|
data_version = 1
|
2022-10-13 07:55:00 +02:00
|
|
|
|
|
|
|
item_name_to_id: Dict[str, int] = {}
|
|
|
|
location_name_to_id: Dict[str, int] = {}
|
|
|
|
|
|
|
|
@classmethod
|
2023-02-16 00:28:02 +01:00
|
|
|
def stage_assert_generate(cls, multiworld):
|
2022-10-13 07:55:00 +02:00
|
|
|
raise Exception("BK Sudoku cannot be used for generating worlds, the client can instead connect to any other world")
|