Skip to content

Commit

Permalink
Finished location rules. Game generates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbrq committed Apr 21, 2024
1 parent 9098f38 commit 9563c54
Show file tree
Hide file tree
Showing 6 changed files with 706 additions and 523 deletions.
15 changes: 13 additions & 2 deletions worlds/ttyd/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,11 @@ class TTYDItem(Item):
ItemData(77772211, "Wedding Ring", ItemClassification.progression),
ItemData(77772212, "Whacka Bump", ItemClassification.filler),
ItemData(77772213, "Yoshi", ItemClassification.progression),
ItemData(77772214, "Zap Tap", ItemClassification.useful)
ItemData(77772214, "Zap Tap", ItemClassification.useful),
ItemData(77772215, "Silver Card", ItemClassification.progression),
ItemData(77772216, "Gold Card", ItemClassification.progression),
ItemData(77772217, "Platinum Card", ItemClassification.progression),
ItemData(77772218, "Special Card", ItemClassification.progression),
]

item_frequencies: typing.Dict[str, int] = {
Expand Down Expand Up @@ -315,7 +319,14 @@ class TTYDItem(Item):
"Ultra Mushroom": 15,
"Unsimplifier": 2,
"Volt Shroom": 2,
"Whacka Bump": 8
"Whacka Bump": 8,
"Diamond Star": 0,
"Emerald Star": 0,
"Gold Star": 0,
"Ruby Star": 0,
"Sapphire Star": 0,
"Garnet Star": 0,
"Crystal Star": 0
}

item_table: typing.Dict[str, ItemData] = {item.itemName: item for item in itemList}
Expand Down
Loading

0 comments on commit 9563c54

Please sign in to comment.