Archipelago/worlds/sm64ex/Items.py

15 lines
330 B
Python
Raw Normal View History

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