diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-01-15 15:13:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 21:13:29 +0100 |
commit | a834180195305fe0be91bd0ced5b75de104b7520 (patch) | |
tree | 6b4c1f8713e54dea7b75b9abe20c224178d02921 /items.py | |
parent | 1c7fcd002eb59e8cda09997eb89ecd609aff7275 (diff) | |
download | lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.tar.gz lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.tar.bz2 lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.zip |
Lingo: Add speed boost mode (#3989)
* Add speed boost mode * Update generated.dat * Modify the actual trap weights option when speed boost mode is on * EOF newline * Update generated.dat
Diffstat (limited to 'items.py')
-rw-r--r-- | items.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/items.py b/items.py index 78b288e..7e75cc7 100644 --- a/items.py +++ b/items.py | |||
@@ -85,6 +85,7 @@ def load_item_data(): | |||
85 | "The Feeling of Being Lost": ItemClassification.filler, | 85 | "The Feeling of Being Lost": ItemClassification.filler, |
86 | "Wanderlust": ItemClassification.filler, | 86 | "Wanderlust": ItemClassification.filler, |
87 | "Empty White Hallways": ItemClassification.filler, | 87 | "Empty White Hallways": ItemClassification.filler, |
88 | "Speed Boost": ItemClassification.filler, | ||
88 | **{trap_name: ItemClassification.trap for trap_name in TRAP_ITEMS}, | 89 | **{trap_name: ItemClassification.trap for trap_name in TRAP_ITEMS}, |
89 | "Puzzle Skip": ItemClassification.useful, | 90 | "Puzzle Skip": ItemClassification.useful, |
90 | } | 91 | } |