TUNIC: Change Tunic to TUNIC (#2720)
This commit is contained in:
parent
834b6e35b4
commit
4c901dcfc0
|
@ -24,15 +24,15 @@ class TunicWeb(WebWorld):
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
theme = "grassFlowers"
|
theme = "grassFlowers"
|
||||||
game = "Tunic"
|
game = "TUNIC"
|
||||||
|
|
||||||
|
|
||||||
class TunicItem(Item):
|
class TunicItem(Item):
|
||||||
game: str = "Tunic"
|
game: str = "TUNIC"
|
||||||
|
|
||||||
|
|
||||||
class TunicLocation(Location):
|
class TunicLocation(Location):
|
||||||
game: str = "Tunic"
|
game: str = "TUNIC"
|
||||||
|
|
||||||
|
|
||||||
class TunicWorld(World):
|
class TunicWorld(World):
|
||||||
|
@ -41,7 +41,7 @@ class TunicWorld(World):
|
||||||
about a small fox on a big adventure. Stranded on a mysterious beach, armed with only your own curiosity, you will
|
about a small fox on a big adventure. Stranded on a mysterious beach, armed with only your own curiosity, you will
|
||||||
confront colossal beasts, collect strange and powerful items, and unravel long-lost secrets. Be brave, tiny fox!
|
confront colossal beasts, collect strange and powerful items, and unravel long-lost secrets. Be brave, tiny fox!
|
||||||
"""
|
"""
|
||||||
game = "Tunic"
|
game = "TUNIC"
|
||||||
web = TunicWeb()
|
web = TunicWeb()
|
||||||
|
|
||||||
data_version = 2
|
data_version = 2
|
||||||
|
|
|
@ -10,11 +10,11 @@ if TYPE_CHECKING:
|
||||||
|
|
||||||
|
|
||||||
class TunicERItem(Item):
|
class TunicERItem(Item):
|
||||||
game: str = "Tunic"
|
game: str = "TUNIC"
|
||||||
|
|
||||||
|
|
||||||
class TunicERLocation(Location):
|
class TunicERLocation(Location):
|
||||||
game: str = "Tunic"
|
game: str = "TUNIC"
|
||||||
|
|
||||||
|
|
||||||
def create_er_regions(world: "TunicWorld") -> Tuple[Dict[Portal, Portal], Dict[int, str]]:
|
def create_er_regions(world: "TunicWorld") -> Tuple[Dict[Portal, Portal], Dict[int, str]]:
|
||||||
|
|
|
@ -2,5 +2,5 @@ from test.bases import WorldTestBase
|
||||||
|
|
||||||
|
|
||||||
class TunicTestBase(WorldTestBase):
|
class TunicTestBase(WorldTestBase):
|
||||||
game = "Tunic"
|
game = "TUNIC"
|
||||||
player: int = 1
|
player: int = 1
|
Loading…
Reference in New Issue