Add Super Mario 64 (PC Port) to Archipelago (#207)

* Add Super Mario 64
This commit is contained in:
Yussur Mustafa Oraji
2022-01-23 21:34:30 +01:00
committed by GitHub
parent b4ad0ebf52
commit 23211dd1ee
9 changed files with 660 additions and 0 deletions

13
worlds/sm64ex/Items.py Normal file
View File

@@ -0,0 +1,13 @@
from BaseClasses import Item
class SM64Item(Item):
game: str = "Super Mario 64"
item_table = {
"Star": 3626000,
"Cellar Key": 3626178,
"Second Floor Key": 3626179,
"Wing Cap": 3626180,
"Metal Cap": 3626181,
"Vanish Cap": 3626182
}