Ability icons

This commit is contained in:
Sam 2023-01-03 21:53:37 -05:00
parent e552cf579e
commit f43d25d3fe
121 changed files with 489 additions and 207 deletions
assets
common/abilities
voxygen/element/skills/sword
agile_cascade.pngagile_crescent_slash.pngagile_cross_cut.pngagile_dancing_edge.pngagile_double_slash.pngagile_feint.pngagile_fell_strike.pngagile_flurry.pngagile_hundred_cuts.pngagile_perforate.pngagile_quick_draw.pngagile_skewer.pngagile_stance.pngbalanced_combo.pngbalanced_finisher.pngbalanced_thrust.pngbasic_cascade.pngbasic_crescent_slash.pngbasic_cross_cut.pngbasic_double_slash.pngbasic_fell_strike.pngbasic_mighty_strike.pngbasic_skewer.pngbasic_thrust.pngcascade.pngcleaving_blade_fever.pngcleaving_bladestorm.pngcleaving_cascade.pngcleaving_combo.pngcleaving_crescent_slash.pngcleaving_cross_cut.pngcleaving_dive.pngcleaving_double_slash.pngcleaving_earth_splitter.pngcleaving_fell_strike.pngcleaving_finisher.pngcleaving_skewer.pngcleaving_sky_splitter.pngcleaving_spin.pngcleaving_spiral_slash.pngcleaving_stance.pngcleaving_whirlwind_slice.pngcrescent_slash.pngcrippling_bloody_gash.pngcrippling_cascade.pngcrippling_combo.pngcrippling_crescent_slash.pngcrippling_cross_cut.pngcrippling_deep_rend.pngcrippling_double_slash.pngcrippling_eviscerate.pngcrippling_fell_strike.pngcrippling_finisher.pngcrippling_gouge.pngcrippling_hamstring.pngcrippling_mutilate.pngcrippling_skewer.pngcrippling_stance.pngcrippling_strike.pngcross_cut.pngdefensive_bulwark.pngdefensive_cascade.pngdefensive_combo.pngdefensive_counter.pngdefensive_crescent_slash.pngdefensive_cross_cut.pngdefensive_deflect.pngdefensive_disengage.pngdefensive_double_slash.pngdefensive_fell_strike.pngdefensive_parry.pngdefensive_retreat.pngdefensive_riposte.pngdefensive_skewer.pngdefensive_stalwart_sword.pngdefensive_stance.pngdelete.pngdouble_slash.pngfell_strike.pngfinisher.pngheavy_cascade.pngheavy_combo.pngheavy_crescent_slash.pngheavy_cross_cut.pngheavy_double_slash.pngheavy_fell_strike.pngheavy_finisher.pngheavy_fortitude.pngheavy_guillotine.pngheavy_pillar_thrust.pngheavy_pommel_strike.pngheavy_pommelstrike.pngheavy_skewer.pngheavy_slam.pngheavy_stance.pngheavy_windmill_slash.pngmobility_agility.pngmobility_combo.pngmobility_feint.png

View File

@ -4,7 +4,7 @@
({
Tool(Sword): (
primary: Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.double_slash",
pseudo_id: "veloren.core.pseudo_abilities.sword.double_slash",
abilities: {
None: (None, "common.abilities.sword.basic_double_slash"),
Stance(Sword(Heavy)): (None, "common.abilities.sword.heavy_double_slash"),
@ -15,7 +15,7 @@
},
),
secondary: Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.secondary_ability",
pseudo_id: "veloren.core.pseudo_abilities.sword.secondary_ability",
abilities: {
None: (None, "common.abilities.sword.basic_thrust"),
Stance(Sword(Heavy)): (None, "common.abilities.sword.heavy_slam"),
@ -27,7 +27,7 @@
),
abilities: [
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.crescent_slash",
pseudo_id: "veloren.core.pseudo_abilities.sword.crescent_slash",
abilities: {
None: (Sword(CrescentSlash), "common.abilities.sword.basic_crescent_slash"),
Stance(Sword(Heavy)): (Sword(CrescentSlash), "common.abilities.sword.heavy_crescent_slash"),
@ -38,7 +38,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.fell_strike",
pseudo_id: "veloren.core.pseudo_abilities.sword.fell_strike",
abilities: {
None: (Sword(FellStrike), "common.abilities.sword.basic_fell_strike"),
Stance(Sword(Heavy)): (Sword(FellStrike), "common.abilities.sword.heavy_fell_strike"),
@ -49,7 +49,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.skewer",
pseudo_id: "veloren.core.pseudo_abilities.sword.skewer",
abilities: {
None: (Sword(Skewer), "common.abilities.sword.basic_skewer"),
Stance(Sword(Heavy)): (Sword(Skewer), "common.abilities.sword.heavy_skewer"),
@ -60,7 +60,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.cascade",
pseudo_id: "veloren.core.pseudo_abilities.sword.cascade",
abilities: {
None: (Sword(Cascade), "common.abilities.sword.basic_cascade"),
Stance(Sword(Heavy)): (Sword(Cascade), "common.abilities.sword.heavy_cascade"),
@ -71,7 +71,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.cross_cut",
pseudo_id: "veloren.core.pseudo_abilities.sword.cross_cut",
abilities: {
None: (Sword(CrossCut), "common.abilities.sword.basic_cross_cut"),
Stance(Sword(Heavy)): (Sword(CrossCut), "common.abilities.sword.heavy_cross_cut"),
@ -82,7 +82,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.finisher",
pseudo_id: "veloren.core.pseudo_abilities.sword.finisher",
abilities: {
None: (Sword(Finisher), "common.abilities.sword.basic_mighty_strike"),
Stance(Sword(Heavy)): (Sword(Finisher), "common.abilities.sword.heavy_guillotine"),
@ -103,7 +103,7 @@
Simple(Sword(CleavingWhirlwindSlice), "common.abilities.sword.cleaving_whirlwind_slice"),
Simple(Sword(CleavingEarthSplitter), "common.abilities.sword.cleaving_earth_splitter"),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.stance_utility",
pseudo_id: "veloren.core.pseudo_abilities.sword.stance_utility",
abilities: {
Stance(Sword(Heavy)): (Sword(HeavyFortitude), "common.abilities.sword.heavy_fortitude"),
Stance(Sword(Agile)): (Sword(AgileDancingEdge), "common.abilities.sword.agile_dancing_edge"),
@ -113,7 +113,7 @@
},
),
Contextualized(
pseudo_id: "veloren.core.psuedo_abilities.sword.stance_attack",
pseudo_id: "veloren.core.pseudo_abilities.sword.stance_attack",
abilities: {
Stance(Sword(Heavy)): (Sword(HeavyPillarThrust), "common.abilities.sword.heavy_pillar_thrust"),
Stance(Sword(Agile)): (Sword(AgileFlurry), "common.abilities.sword.agile_flurry"),

BIN
assets/voxygen/element/skills/sword/agile_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_crescent_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_dancing_edge.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_double_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_feint.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_fell_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_flurry.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_hundred_cuts.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_perforate.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_quick_draw.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/agile_stance.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_crescent_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_double_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_fell_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_mighty_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/basic_thrust.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_blade_fever.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_bladestorm.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_fell_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cleaving_stance.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crescent_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_deep_rend.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_eviscerate.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_hamstring.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_mutilate.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/crippling_stance.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_counter.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_deflect.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_disengage.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_parry.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_riposte.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/defensive_stance.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/delete.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/double_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/fell_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/finisher.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_cascade.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_crescent_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_cross_cut.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_double_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_fell_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_guillotine.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_pillar_thrust.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_pommel_strike.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_skewer.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_slam.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_stance.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/skills/sword/heavy_windmill_slash.png (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More