Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing Chaos Snake shotlock #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion worlds/khbbs/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def get_items_by_category(category: str, character: str) -> Dict[str, KHBBSItemD
#"Shotlock": KHBBSItemData("Shotlock Command", code = 227_0010192, classification = ItemClassification.useful, characters = "TVA", max_quantity = 1, khbbsid = "011B"),
"Meteor Shower": KHBBSItemData("Shotlock Command", code = 227_0010193, classification = ItemClassification.useful, characters = "TVA", max_quantity = 1, khbbsid = "011C"),
"Flame Salvo": KHBBSItemData("Shotlock Command", code = 227_0010194, classification = ItemClassification.useful, characters = "T A", max_quantity = 1, khbbsid = "011D"),
"Chaos Snake": KHBBSItemData("Shotlock Command", code = 227_0010195, classification = ItemClassification.useful, characters = "TVA", max_quantity = 1, khbbsid = "011E"),
#"Bubble Blaster": KHBBSItemData("Shotlock Command", code = 227_0010196, classification = ItemClassification.useful, characters = " A", max_quantity = 1, khbbsid = "011F"),
"Dark Volley": KHBBSItemData("Shotlock Command", code = 227_0010197, classification = ItemClassification.useful, characters = "T ", max_quantity = 1, khbbsid = "0120"),
"Ragnarok": KHBBSItemData("Shotlock Command", code = 227_0010198, classification = ItemClassification.useful, characters = "TVA", max_quantity = 1, khbbsid = "0121"),
Expand Down Expand Up @@ -379,4 +380,4 @@ def get_items_by_category(category: str, character: str) -> Dict[str, KHBBSItemD
category = item_table[item].category
if category not in item_name_groups.keys():
item_name_groups[category] = set([])
item_name_groups[category].add(item)
item_name_groups[category].add(item)