|
| 1 | +# items |
| 2 | +# listing individual groups first for easy lookup |
| 3 | +NOTES = [ |
| 4 | + "Key of Hope", |
| 5 | + "Key of Chaos", |
| 6 | + "Key of Courage", |
| 7 | + "Key of Love", |
| 8 | + "Key of Strength", |
| 9 | + "Key of Symbiosis" |
| 10 | +] |
| 11 | + |
| 12 | +PROG_ITEMS = [ |
| 13 | + "Wingsuit", |
| 14 | + "Rope Dart", |
| 15 | + "Ninja Tabi", |
| 16 | + "Power Thistle", |
| 17 | + "Demon King Crown", |
| 18 | + "Ruxxtin's Amulet", |
| 19 | + "Fairy Bottle", |
| 20 | + "Sun Crest", |
| 21 | + "Moon Crest", |
| 22 | + # "Astral Seed", |
| 23 | + # "Astral Tea Leaves" |
| 24 | +] |
| 25 | + |
| 26 | +PHOBEKINS = [ |
| 27 | + "Necro", |
| 28 | + "Pyro", |
| 29 | + "Claustro", |
| 30 | + "Acro" |
| 31 | +] |
| 32 | + |
| 33 | +USEFUL_ITEMS = [ |
| 34 | + "Windmill Shuriken" |
| 35 | +] |
| 36 | + |
| 37 | +# item_name_to_id needs to be deterministic and match upstream |
| 38 | +ALL_ITEMS = [ |
| 39 | + *NOTES, |
| 40 | + "Windmill Shuriken", |
| 41 | + "Wingsuit", |
| 42 | + "Rope Dart", |
| 43 | + "Ninja Tabi", |
| 44 | + # "Astral Seed", |
| 45 | + # "Astral Tea Leaves", |
| 46 | + "Candle", |
| 47 | + "Seashell", |
| 48 | + "Power Thistle", |
| 49 | + "Demon King Crown", |
| 50 | + "Ruxxtin's Amulet", |
| 51 | + "Fairy Bottle", |
| 52 | + "Sun Crest", |
| 53 | + "Moon Crest", |
| 54 | + *PHOBEKINS, |
| 55 | + "Power Seal", |
| 56 | + "Time Shard" # there's 45 separate instances of this in the client lookup, but hopefully we don't care? |
| 57 | +] |
| 58 | + |
| 59 | +# locations |
| 60 | +# the names of these don't actually matter, but using the upstream's names for now |
| 61 | +# order must be exactly the same as upstream |
| 62 | +ALWAYS_LOCATIONS = [ |
| 63 | + # notes |
| 64 | + "Key of Love", |
| 65 | + "Key of Courage", |
| 66 | + "Key of Chaos", |
| 67 | + "Key of Symbiosis", |
| 68 | + "Key of Strength", |
| 69 | + "Key of Hope", |
| 70 | + # upgrades |
| 71 | + "Wingsuit", |
| 72 | + "Rope Dart", |
| 73 | + "Ninja Tabi", |
| 74 | + "Climbing Claws", |
| 75 | + # quest items |
| 76 | + "Astral Seed", |
| 77 | + "Astral Tea Leaves", |
| 78 | + "Candle", |
| 79 | + "Seashell", |
| 80 | + "Power Thistle", |
| 81 | + "Demon King Crown", |
| 82 | + "Ruxxtin's Amulet", |
| 83 | + "Fairy Bottle", |
| 84 | + "Sun Crest", |
| 85 | + "Moon Crest", |
| 86 | + # phobekins |
| 87 | + "Necro", |
| 88 | + "Pyro", |
| 89 | + "Claustro", |
| 90 | + "Acro" |
| 91 | +] |
| 92 | + |
| 93 | +SEALS = [ |
| 94 | + "Ninja Village Seal - Tree House", |
| 95 | + |
| 96 | + "Autumn Hills Seal - Trip Saws", |
| 97 | + "Autumn Hills Seal - Double Swing Saws", |
| 98 | + "Autumn Hills Seal - Spike Ball Swing", |
| 99 | + "Autumn Hills Seal - Spike Ball Darts", |
| 100 | + |
| 101 | + "Catacombs Seal - Triple Spike Crushers", |
| 102 | + "Catacombs Seal - Crusher Gauntlet", |
| 103 | + "Catacombs Seal - Dirty Pond", |
| 104 | + |
| 105 | + "Bamboo Creek Seal - Spike Crushers and Doors", |
| 106 | + "Bamboo Creek Seal - Spike Ball Pits", |
| 107 | + "Bamboo Creek Seal - Spike Crushers and Doors v2", |
| 108 | + |
| 109 | + "Howling Grotto Seal - Windy Saws and Balls", |
| 110 | + "Howling Grotto Seal - Crushing Pits", |
| 111 | + "Howling Grotto Seal - Breezy Crushers", |
| 112 | + |
| 113 | + "Quillshroom Marsh Seal - Spikey Window", |
| 114 | + "Quillshroom Marsh Seal - Sand Trap", |
| 115 | + "Quillshroom Marsh Seal - Do the Spike Wave", |
| 116 | + |
| 117 | + "Searing Crags Seal - Triple Ball Spinner", |
| 118 | + "Searing Crags Seal - Raining Rocks", |
| 119 | + "Searing Crags Seal - Rhythm Rocks", |
| 120 | + |
| 121 | + "Glacial Peak Seal - Ice Climbers", |
| 122 | + "Glacial Peak Seal - Projectile Spike Pit", |
| 123 | + "Glacial Peak Seal - Glacial Air Swag", |
| 124 | + |
| 125 | + "Tower of Time Seal - Time Waster Seal", |
| 126 | + "Tower of Time Seal - Lantern Climb", |
| 127 | + "Tower of Time Seal - Arcane Orbs", |
| 128 | + |
| 129 | + "Cloud Ruins Seal - Ghost Pit", |
| 130 | + "Cloud Ruins Seal - Toothbrush Alley", |
| 131 | + "Cloud Ruins Seal - Saw Pit", |
| 132 | + "Cloud Ruins Seal - Money Farm Room", |
| 133 | + |
| 134 | + "Underworld Seal - Sharp and Windy Climb", |
| 135 | + "Underworld Seal - Spike Wall", |
| 136 | + "Underworld Seal - Fireball Wave", |
| 137 | + "Underworld Seal - Rising Fanta", |
| 138 | + |
| 139 | + "Forlorn Temple Seal - Rocket Maze", |
| 140 | + "Forlorn Temple Seal - Rocket Sunset", |
| 141 | + |
| 142 | + "Sunken Shrine Seal - Ultra Lifeguard", |
| 143 | + "Sunken Shrine Seal - Waterfall Paradise", |
| 144 | + "Sunken Shrine Seal - Tabi Gauntlet", |
| 145 | + |
| 146 | + "Riviere Turquoise Seal - Bounces and Balls", |
| 147 | + "Riviere Turquoise Seal - Launch of Faith", |
| 148 | + "Riviere Turquoise Seal - Flower Power", |
| 149 | + |
| 150 | + "Elemental Skylands Seal - Air", |
| 151 | + "Elemental Skylands Seal - Water", |
| 152 | + "Elemental Skylands Seal - Fire" |
| 153 | +] |
0 commit comments