File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -529,6 +529,14 @@ class FrogmonsterItemData(NamedTuple):
529529# type=ItemClassification.useful,
530530# category=("Key")
531531# ),
532+ i .workshop_key : FrogmonsterItemData (
533+ id = BASE_ID + 100 ,
534+ type = ItemClassification .progression
535+ ),
536+ i .orchus_key : FrogmonsterItemData (
537+ id = BASE_ID + 101 ,
538+ type = ItemClassification .progression
539+ ),
532540 i .smooth_stone : FrogmonsterItemData (
533541 id = BASE_ID + 102 ,
534542 type = ItemClassification .filler ,
@@ -763,15 +771,6 @@ class FrogmonsterItemData(NamedTuple):
763771 i .victory : FrogmonsterItemData (
764772 type = ItemClassification .progression
765773 ),
766- i .workshop_key : FrogmonsterItemData (
767- id = BASE_ID + 100 ,
768- type = ItemClassification .progression
769- ),
770- i .orchus_key : FrogmonsterItemData (
771- id = BASE_ID + 101 ,
772- type = ItemClassification .progression
773- ),
774-
775774}
776775
777776item_id_table = {name : data .id for name , data in item_data_table .items () if data .id is not None }
You can’t perform that action at this time.
0 commit comments