Ror2: Add progressive stages option (#2813)

This commit is contained in:
Rjosephson
2024-04-09 13:14:18 -06:00
committed by GitHub
parent 32c92e03e7
commit b007a42487
6 changed files with 48 additions and 22 deletions

View File

@@ -59,7 +59,7 @@ stage_table: Dict[str, RiskOfRainItemData] = {
"Stage 2": RiskOfRainItemData("Stage", 2 + stage_offset, ItemClassification.progression),
"Stage 3": RiskOfRainItemData("Stage", 3 + stage_offset, ItemClassification.progression),
"Stage 4": RiskOfRainItemData("Stage", 4 + stage_offset, ItemClassification.progression),
"Progressive Stage": RiskOfRainItemData("Stage", 5 + stage_offset, ItemClassification.progression),
}
item_table = {**upgrade_table, **other_table, **filler_table, **trap_table, **stage_table}