-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add basic uberState and pickup hovers
- Loading branch information
1 parent
acec320
commit d49bab8
Showing
12 changed files
with
5,351 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const abilityTypes: { [index: string]: string | undefined } = { | ||
"0": "Bash", | ||
"3": "Wall Jump", | ||
"5": "Double Jump", | ||
"8": "Launch", | ||
"9": "Magnet", | ||
"14": "Glide", | ||
"15": "Spirit Flame", | ||
"23": "Water Breath", | ||
"51": "Light Burst", | ||
"57": "Grapple", | ||
"62": "Flash", | ||
"74": "Spike", | ||
"77": "Regenerate", | ||
"97": "Bow", | ||
"98": "Hammer", | ||
"100": "Sword", | ||
"101": "Burrow", | ||
"102": "Dash", | ||
"104": "Water Dash", | ||
"106": "Shuriken", | ||
"108": "Seir", | ||
"109": "Bow Charge", | ||
"114": "Hammer Charge", | ||
"115": "Blaze", | ||
"116": "Sentry", | ||
"118": "Flap", | ||
"120": "Ancestral Light", | ||
"121": "Ancestral Light", | ||
}; | ||
export default abilityTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const bonusItemTypes: { [index: string]: string | undefined } = { | ||
"30": "Health Regen", | ||
"31": "Energy Regen", | ||
"35": "Extra Double Jump", | ||
"36": "Extra Air Dash", | ||
}; | ||
export default bonusItemTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
const bonusUpgradeTypes: { [index: string]: string | undefined } = { | ||
"0": "Rapid Hammer", | ||
"1": "Rapid Sword", | ||
"2": "Blaze Efficiency", | ||
"3": "Spike Efficiency", | ||
"4": "Shuriken Efficiency", | ||
"5": "Sentry Efficiency", | ||
"6": "Bow Efficiency", | ||
"7": "Regeneration Efficiency", | ||
"8": "Flash Efficiency", | ||
"9": "Grenade Efficiency", | ||
"45": "Exploding Spike", | ||
"46": "Shock Smash", | ||
"47": "Static Star", | ||
"48": "Charge Blaze", | ||
"49": "Rapid Sentry", | ||
}; | ||
export default bonusUpgradeTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const relicTypes: { [index: string]: string | undefined } = { | ||
"0": "Inkwater Marsh Relic", | ||
"1": "Kwolok’s Hollow Relic", | ||
"2": "Wellspring Glades Relic", | ||
"3": "The Wellspring Relic", | ||
"4": "Luma Pools Relic", | ||
"5": "Midnight Burrows Relic", | ||
"6": "Baur’s Reach Relic", | ||
"7": "Silent Woods Relic", | ||
"8": "Mouldwood Depths Relic", | ||
"9": "Windswept Wastes Relic", | ||
"10": "Windtorn Ruins Relic", | ||
"11": "Willow’s End Relic", | ||
"12": "Void Relic", | ||
}; | ||
export default relicTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const resourceTypes: { [index: string]: string | undefined } = { | ||
"0": "Health Fragment", | ||
"1": "Energy Fragment", | ||
"2": "Gorlek Ore", | ||
"3": "Keystone", | ||
"4": "Shard Slot", | ||
}; | ||
export default resourceTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const shardTypes: { [index: string]: string | undefined } = { | ||
"1": "Overcharge", | ||
"2": "Triple Jump", | ||
"3": "Wingclip", | ||
"4": "Bounty", | ||
"5": "Swap", | ||
"8": "Magnet", | ||
"9": "Splinter", | ||
"13": "Reckless", | ||
"14": "Quickshot", | ||
"18": "Resilience", | ||
"19": "Light Harvest", | ||
"22": "Vitality", | ||
"23": "Life Harvest", | ||
"25": "Energy Harvest", | ||
"26": "Energy", | ||
"27": "Life Pact", | ||
"28": "Last Stand", | ||
"30": "Sense/Secret", | ||
"32": "Ultra Bash", | ||
"33": "Ultra Grapple", | ||
"34": "Overflow", | ||
"35": "Thorn", | ||
"36": "Catalyst", | ||
"38": "Turmoil", | ||
"39": "Sticky", | ||
"40": "Finesse", | ||
"41": "Spirit Surge", | ||
"43": "Lifeforce", | ||
"44": "Deflector", | ||
"46": "Fracture", | ||
"47": "Arcing", | ||
}; | ||
export default shardTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
const teleporterTypes: { [index: string]: string | undefined } = { | ||
"0": "Midnight Burrows Teleporter", | ||
"1": "Howl’s Den Teleporter", | ||
"2": "East Luma Teleporter", | ||
"3": "Wellspring Teleporter", | ||
"4": "Baur’s Reach Teleporter", | ||
"5": "Kwolok’s Hollow Teleporter", | ||
"6": "Mouldwood Depths Teleporter", | ||
"7": "West Woods Teleporter", | ||
"8": "East Woods Teleporter", | ||
"9": "West Wastes Teleporter", | ||
"10": "East Wastes Teleporter", | ||
"11": "Outer Ruins Teleporter", | ||
"12": "Willow’s End Teleporter", | ||
"13": "West Luma Teleporter", | ||
"14": "Inner Ruins Teleporter", | ||
"15": "Shriek Teleporter", | ||
"16": "Inkwater Marsh Teleporter", | ||
"17": "Glades Teleporter", | ||
}; | ||
export default teleporterTypes; |
Oops, something went wrong.