Archipelago/worlds/sm64ex/Items.py

13 lines
269 B
Python

from BaseClasses import Item
class SM64Item(Item):
game: str = "Super Mario 64"
item_table = {
"Power Star": 3626000,
"Basement Key": 3626178,
"Second Floor Key": 3626179,
"Wing Cap": 3626180,
"Metal Cap": 3626181,
"Vanish Cap": 3626182
}