Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Add Zon skill templates and SkillName mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezro committed Jun 23, 2022
1 parent c827a97 commit eef2a92
Show file tree
Hide file tree
Showing 25 changed files with 30 additions and 1 deletion.
Binary file added assets/templates/ui/skills/charged_strike.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/cold_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/decoy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/exploding_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/fend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/fire_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/freezing_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/guided_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/ice_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/impale.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/inner_sight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/jab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/lightning_bolt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/lightning_fury.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/lightning_strike.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/magic_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/multiple_shot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/plague_javelin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/poison_javelin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/power_strike.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/slow_missiles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/strafe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/templates/ui/skills/valkyrie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 30 additions & 1 deletion src/ui/skills.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,36 @@ class SkillName(str, Enum):
SummonDireWolf = 'summon_dire_wolf',
SolarCreeper = 'solar_creeper',
SpiritOfBarbs = 'spirit_of_barbs',
SummonGrizzly = 'summon_grizzly'
SummonGrizzly = 'summon_grizzly',
# Amazon
## Javelin and Spear
Jab = 'jab',
PowerStrike = 'power_strike',
PoisonJavelin = 'poison_javelin',
Impale = 'impale',
LightningBolt = 'lightning_bolt',
ChargedStrike = 'charged_strike',
PlagueJavelin = 'plague_javelin',
Fend = 'fend',
LightningStrike = 'lightning_strike',
LightningFury = 'lightning_fury',
## Passive and Magic
InnerSight = 'inner_sight',
SlowMissiles = 'slow_missiles',
Decoy = 'decoy',
Valkyrie = 'valkyrie',
## Bow and Crossbow
MagicArrow = 'magic_arrow',
FireArrow = 'fire_arrow',
ColdArrow = 'cold_arrow',
MultipleShot = 'multiple_shot',
ExplodingArrow = 'exploding_arrow',
IceArrow = 'ice_arrow',
GuidedArrow = 'guided_arrow',
Strafe = 'strafe',
ImmolationArrow = 'immolation_arrow',
FreezingArrow = 'freezing_arrow'



def is_left_skill_selected(template_list: list[str]) -> bool:
Expand Down

0 comments on commit eef2a92

Please sign in to comment.