├── .clang-format ├── .gitattributes ├── .gitignore ├── Character ├── Character.cpp ├── Character.h ├── CharacterDecoder.cpp ├── CharacterDecoder.h ├── CharacterEnchants.cpp ├── CharacterEnchants.h ├── CharacterEncoder.cpp ├── CharacterEncoder.h ├── CharacterLoader.cpp ├── CharacterLoader.h ├── CharacterSpells.cpp ├── CharacterSpells.h ├── CharacterStats.cpp ├── CharacterStats.h ├── EnabledBuffs.cpp ├── EnabledBuffs.h ├── EnabledProcs.cpp ├── EnabledProcs.h ├── Race │ ├── Race.cpp │ ├── Race.h │ ├── Races │ │ ├── Dwarf.cpp │ │ ├── Dwarf.h │ │ ├── Gnome.cpp │ │ ├── Gnome.h │ │ ├── Human.cpp │ │ ├── Human.h │ │ ├── NightElf.cpp │ │ ├── NightElf.h │ │ ├── Orc.cpp │ │ ├── Orc.h │ │ ├── Tauren.cpp │ │ ├── Tauren.h │ │ ├── Troll.cpp │ │ ├── Troll.h │ │ ├── Undead.cpp │ │ └── Undead.h │ └── Racials │ │ ├── Berserking.cpp │ │ ├── Berserking.h │ │ ├── BerserkingBuff.cpp │ │ ├── BerserkingBuff.h │ │ ├── BloodFury.cpp │ │ ├── BloodFury.h │ │ ├── BloodFuryBuff.cpp │ │ └── BloodFuryBuff.h ├── Stats.cpp └── Stats.h ├── Class ├── Common │ ├── AttackMode.h │ ├── Buffs │ │ ├── ArmorPenetrationBuff.cpp │ │ ├── ArmorPenetrationBuff.h │ │ ├── CharmOfTrickery.cpp │ │ ├── CharmOfTrickery.h │ │ ├── DevilsaurEye.cpp │ │ ├── DevilsaurEye.h │ │ ├── ExtraAttackOnNextSwingBuff.cpp │ │ ├── ExtraAttackOnNextSwingBuff.h │ │ ├── FelstrikerBuff.cpp │ │ ├── FelstrikerBuff.h │ │ ├── FlatWeaponDamageBuff.cpp │ │ ├── FlatWeaponDamageBuff.h │ │ ├── GenericStatBuff.cpp │ │ ├── GenericStatBuff.h │ │ ├── HolyStrength.cpp │ │ ├── HolyStrength.h │ │ ├── JomGabbar.cpp │ │ ├── JomGabbar.h │ │ ├── Nightfall.cpp │ │ ├── Nightfall.h │ │ ├── NoEffectSelfBuff.cpp │ │ ├── NoEffectSelfBuff.h │ │ ├── NoEffectUniqueDebuff.cpp │ │ ├── NoEffectUniqueDebuff.h │ │ ├── SanctifiedOrb.cpp │ │ ├── SanctifiedOrb.h │ │ ├── SuppressCastBuff.cpp │ │ ├── SuppressCastBuff.h │ │ ├── ZandalarianHeroCharm.cpp │ │ └── ZandalarianHeroCharm.h │ ├── Enchants │ │ ├── Crusader.cpp │ │ ├── Crusader.h │ │ ├── Enchant.cpp │ │ ├── Enchant.h │ │ ├── EnchantName.cpp │ │ ├── EnchantName.h │ │ ├── EnchantProc.cpp │ │ ├── EnchantProc.h │ │ ├── EnchantStatic.cpp │ │ ├── EnchantStatic.h │ │ ├── FieryWeapon.cpp │ │ ├── FieryWeapon.h │ │ ├── WindfuryTotemAttack.cpp │ │ └── WindfuryTotemAttack.h │ ├── GeneralBuffs.cpp │ ├── GeneralBuffs.h │ ├── GeneralProcs.cpp │ ├── GeneralProcs.h │ ├── Pet │ │ ├── Pet.cpp │ │ ├── Pet.h │ │ ├── Species │ │ │ ├── Cat.cpp │ │ │ └── Cat.h │ │ └── Spells │ │ │ ├── Claw.cpp │ │ │ ├── Claw.h │ │ │ ├── PetAutoAttack.cpp │ │ │ └── PetAutoAttack.h │ ├── Procs │ │ ├── ArmorPenetrationProc.cpp │ │ ├── ArmorPenetrationProc.h │ │ ├── ExtraAttackInstantProc.cpp │ │ ├── ExtraAttackInstantProc.h │ │ ├── ExtraAttackOnNextSwingProc.cpp │ │ ├── ExtraAttackOnNextSwingProc.h │ │ ├── FelstrikerProc.cpp │ │ ├── FelstrikerProc.h │ │ ├── GenericBuffProc.cpp │ │ ├── GenericBuffProc.h │ │ ├── GenericChargeConsumerProc.cpp │ │ ├── GenericChargeConsumerProc.h │ │ ├── GenericSpellProc.cpp │ │ ├── GenericSpellProc.h │ │ ├── InstantSpellProc.cpp │ │ ├── InstantSpellProc.h │ │ ├── ResourceGainProc.cpp │ │ └── ResourceGainProc.h │ └── Spells │ │ ├── DemonicRune.cpp │ │ ├── DemonicRune.h │ │ ├── DragonbreathChili.cpp │ │ ├── DragonbreathChili.h │ │ ├── EssenceOfTheRed.cpp │ │ ├── EssenceOfTheRed.h │ │ ├── FireballInstant.cpp │ │ ├── FireballInstant.h │ │ ├── InstantSpellAttack.cpp │ │ ├── InstantSpellAttack.h │ │ ├── MainhandAttack.cpp │ │ ├── MainhandAttack.h │ │ ├── ManaPotion.cpp │ │ ├── ManaPotion.h │ │ ├── NightDragonsBreath.cpp │ │ ├── NightDragonsBreath.h │ │ ├── OffhandAttack.cpp │ │ ├── OffhandAttack.h │ │ ├── PeriodicDamageSpell.cpp │ │ ├── PeriodicDamageSpell.h │ │ ├── PeriodicResourceGainSpell.cpp │ │ ├── PeriodicResourceGainSpell.h │ │ ├── ResourceTick.cpp │ │ ├── ResourceTick.h │ │ ├── UseItem.cpp │ │ ├── UseItem.h │ │ ├── UseTrinket.cpp │ │ └── UseTrinket.h ├── Druid │ ├── Buffs │ │ ├── BearFormBuff.cpp │ │ ├── BearFormBuff.h │ │ ├── CatFormBuff.cpp │ │ ├── CatFormBuff.h │ │ ├── LeaderOfThePack.cpp │ │ ├── LeaderOfThePack.h │ │ ├── MoonkinFormBuff.cpp │ │ ├── MoonkinFormBuff.h │ │ ├── NaturesGrace.cpp │ │ ├── NaturesGrace.h │ │ ├── TigersFuryBuff.cpp │ │ └── TigersFuryBuff.h │ ├── Druid.cpp │ ├── Druid.h │ ├── DruidEnchants.cpp │ ├── DruidEnchants.h │ ├── DruidSpells.cpp │ ├── DruidSpells.h │ ├── Procs │ │ ├── BloodFrenzy.cpp │ │ ├── BloodFrenzy.h │ │ ├── ClearcastingDruid.cpp │ │ ├── ClearcastingDruid.h │ │ ├── Furor.cpp │ │ ├── Furor.h │ │ ├── PrimalFury.cpp │ │ └── PrimalFury.h │ ├── Spells │ │ ├── BearForm.cpp │ │ ├── BearForm.h │ │ ├── CasterForm.cpp │ │ ├── CasterForm.h │ │ ├── CatForm.cpp │ │ ├── CatForm.h │ │ ├── Enrage.cpp │ │ ├── Enrage.h │ │ ├── FerociousBite.cpp │ │ ├── FerociousBite.h │ │ ├── MainhandAttackDruid.cpp │ │ ├── MainhandAttackDruid.h │ │ ├── Maul.cpp │ │ ├── Maul.h │ │ ├── Moonfire.cpp │ │ ├── Moonfire.h │ │ ├── MoonkinForm.cpp │ │ ├── MoonkinForm.h │ │ ├── Shred.cpp │ │ ├── Shred.h │ │ ├── Starfire.cpp │ │ ├── Starfire.h │ │ ├── Swipe.cpp │ │ ├── Swipe.h │ │ ├── TigersFury.cpp │ │ ├── TigersFury.h │ │ ├── Wrath.cpp │ │ └── Wrath.h │ └── TalentTrees │ │ ├── Balance.cpp │ │ ├── Balance.h │ │ ├── FeralCombat.cpp │ │ ├── FeralCombat.h │ │ ├── RestorationDruid.cpp │ │ └── RestorationDruid.h ├── Hunter │ ├── Buffs │ │ ├── AspectOfTheHawkBuff.cpp │ │ ├── AspectOfTheHawkBuff.h │ │ ├── BestialWrathBuff.cpp │ │ ├── BestialWrathBuff.h │ │ ├── ExposeWeaknessBuff.cpp │ │ ├── ExposeWeaknessBuff.h │ │ ├── FrenzyBuff.cpp │ │ ├── FrenzyBuff.h │ │ ├── HuntersMarkBuff.cpp │ │ ├── HuntersMarkBuff.h │ │ ├── ImprovedAspectOfTheHawkBuff.cpp │ │ ├── ImprovedAspectOfTheHawkBuff.h │ │ ├── RapidFireBuff.cpp │ │ └── RapidFireBuff.h │ ├── Hunter.cpp │ ├── Hunter.h │ ├── HunterEnchants.cpp │ ├── HunterEnchants.h │ ├── HunterPet.cpp │ ├── HunterPet.h │ ├── HunterSpells.cpp │ ├── HunterSpells.h │ ├── Procs │ │ ├── ExposeWeaknessProc.cpp │ │ ├── ExposeWeaknessProc.h │ │ ├── FrenzyProc.cpp │ │ ├── FrenzyProc.h │ │ ├── ImprovedAspectOfTheHawkProc.cpp │ │ └── ImprovedAspectOfTheHawkProc.h │ ├── Spells │ │ ├── AimedShot.cpp │ │ ├── AimedShot.h │ │ ├── AspectOfTheHawk.cpp │ │ ├── AspectOfTheHawk.h │ │ ├── AutoShot.cpp │ │ ├── AutoShot.h │ │ ├── BestialWrath.cpp │ │ ├── BestialWrath.h │ │ ├── HuntersMark.cpp │ │ ├── HuntersMark.h │ │ ├── MultiShot.cpp │ │ ├── MultiShot.h │ │ ├── RapidFire.cpp │ │ └── RapidFire.h │ └── TalentTrees │ │ ├── BeastMastery.cpp │ │ ├── BeastMastery.h │ │ ├── Marksmanship.cpp │ │ ├── Marksmanship.h │ │ ├── Survival.cpp │ │ └── Survival.h ├── Mage │ ├── Buffs │ │ ├── ArcanePowerBuff.cpp │ │ ├── ArcanePowerBuff.h │ │ ├── CombustionBuff.cpp │ │ ├── CombustionBuff.h │ │ ├── ElementalVulnerability.cpp │ │ ├── ElementalVulnerability.h │ │ ├── EvocationBuff.cpp │ │ ├── EvocationBuff.h │ │ ├── FireVulnerability.cpp │ │ ├── FireVulnerability.h │ │ ├── IgniteBuff.cpp │ │ ├── IgniteBuff.h │ │ ├── MageArmorBuff.cpp │ │ ├── MageArmorBuff.h │ │ ├── WintersChill.cpp │ │ └── WintersChill.h │ ├── Mage.cpp │ ├── Mage.h │ ├── MageEnchants.cpp │ ├── MageEnchants.h │ ├── MageSpells.cpp │ ├── MageSpells.h │ ├── Procs │ │ ├── ClearcastingMage.cpp │ │ ├── ClearcastingMage.h │ │ ├── ImprovedScorch.cpp │ │ ├── ImprovedScorch.h │ │ ├── WintersChillProc.cpp │ │ └── WintersChillProc.h │ ├── Spells │ │ ├── ArcaneMissiles.cpp │ │ ├── ArcaneMissiles.h │ │ ├── ArcanePower.cpp │ │ ├── ArcanePower.h │ │ ├── Combustion.cpp │ │ ├── Combustion.h │ │ ├── Evocation.cpp │ │ ├── Evocation.h │ │ ├── Fireball.cpp │ │ ├── Fireball.h │ │ ├── Frostbolt.cpp │ │ ├── Frostbolt.h │ │ ├── Ignite.cpp │ │ ├── Ignite.h │ │ ├── MageArmor.cpp │ │ ├── MageArmor.h │ │ ├── RobeOfTheArchmage.cpp │ │ ├── RobeOfTheArchmage.h │ │ ├── Scorch.cpp │ │ └── Scorch.h │ └── TalentTrees │ │ ├── Arcane.cpp │ │ ├── Arcane.h │ │ ├── Fire.cpp │ │ ├── Fire.h │ │ ├── Frost.cpp │ │ └── Frost.h ├── Paladin │ ├── Buffs │ │ ├── JudgementOfTheCrusader.cpp │ │ ├── JudgementOfTheCrusader.h │ │ ├── SanctityAuraBuff.cpp │ │ ├── SanctityAuraBuff.h │ │ ├── SealOfTheCrusaderBuff.cpp │ │ ├── SealOfTheCrusaderBuff.h │ │ ├── Vengeance.cpp │ │ └── Vengeance.h │ ├── Paladin.cpp │ ├── Paladin.h │ ├── PaladinEnchants.cpp │ ├── PaladinEnchants.h │ ├── PaladinSpells.cpp │ ├── PaladinSpells.h │ ├── Procs │ │ ├── SealOfCommandProc.cpp │ │ └── SealOfCommandProc.h │ ├── Spells │ │ ├── Consecration.cpp │ │ ├── Consecration.h │ │ ├── Judgement.cpp │ │ ├── Judgement.h │ │ ├── MainhandAttackPaladin.cpp │ │ ├── MainhandAttackPaladin.h │ │ ├── PaladinSeal.cpp │ │ ├── PaladinSeal.h │ │ ├── SanctityAura.cpp │ │ ├── SanctityAura.h │ │ ├── SealOfCommand.cpp │ │ ├── SealOfCommand.h │ │ ├── SealOfTheCrusader.cpp │ │ └── SealOfTheCrusader.h │ └── TalentTrees │ │ ├── HolyPaladin.cpp │ │ ├── HolyPaladin.h │ │ ├── ProtectionPaladin.cpp │ │ ├── ProtectionPaladin.h │ │ ├── Retribution.cpp │ │ └── Retribution.h ├── Priest │ ├── Priest.cpp │ ├── Priest.h │ ├── PriestSpells.cpp │ └── PriestSpells.h ├── Rogue │ ├── Buffs │ │ ├── AdrenalineRushBuff.cpp │ │ ├── AdrenalineRushBuff.h │ │ ├── BladeFlurryBuff.cpp │ │ ├── BladeFlurryBuff.h │ │ ├── InstantPoisonBuff.cpp │ │ ├── InstantPoisonBuff.h │ │ ├── SliceAndDiceBuff.cpp │ │ └── SliceAndDiceBuff.h │ ├── Procs │ │ ├── InstantPoison.cpp │ │ ├── InstantPoison.h │ │ ├── RelentlessStrikes.cpp │ │ ├── RelentlessStrikes.h │ │ ├── Ruthlessness.cpp │ │ ├── Ruthlessness.h │ │ ├── SealFate.cpp │ │ └── SealFate.h │ ├── Rogue.cpp │ ├── Rogue.h │ ├── RogueEnchants.cpp │ ├── RogueEnchants.h │ ├── RogueSpells.cpp │ ├── RogueSpells.h │ ├── Spells │ │ ├── AdrenalineRush.cpp │ │ ├── AdrenalineRush.h │ │ ├── Backstab.cpp │ │ ├── Backstab.h │ │ ├── BladeFlurry.cpp │ │ ├── BladeFlurry.h │ │ ├── Eviscerate.cpp │ │ ├── Eviscerate.h │ │ ├── Hemorrhage.cpp │ │ ├── Hemorrhage.h │ │ ├── OffhandAttackRogue.cpp │ │ ├── OffhandAttackRogue.h │ │ ├── SinisterStrike.cpp │ │ ├── SinisterStrike.h │ │ ├── SliceAndDice.cpp │ │ ├── SliceAndDice.h │ │ ├── ThistleTea.cpp │ │ └── ThistleTea.h │ └── TalentTrees │ │ ├── Assassination.cpp │ │ ├── Assassination.h │ │ ├── Assassination │ │ ├── Malice.cpp │ │ ├── Malice.h │ │ ├── Murder.cpp │ │ ├── Murder.h │ │ ├── Vigor.cpp │ │ └── Vigor.h │ │ ├── Combat.cpp │ │ ├── Combat.h │ │ ├── Combat │ │ ├── DaggerSpecialization.cpp │ │ ├── DaggerSpecialization.h │ │ ├── FistWeaponSpecialization.cpp │ │ ├── FistWeaponSpecialization.h │ │ ├── MaceSpecialization.cpp │ │ ├── MaceSpecialization.h │ │ ├── Precision.cpp │ │ ├── Precision.h │ │ ├── WeaponExpertise.cpp │ │ └── WeaponExpertise.h │ │ ├── Subtlety.cpp │ │ ├── Subtlety.h │ │ └── Subtlety │ │ ├── Deadliness.cpp │ │ ├── Deadliness.h │ │ ├── SerratedBlades.cpp │ │ └── SerratedBlades.h ├── Shaman │ ├── Buffs │ │ ├── ElementalDevastation.cpp │ │ ├── ElementalDevastation.h │ │ ├── StormstrikeBuff.cpp │ │ └── StormstrikeBuff.h │ ├── Procs │ │ ├── ClearcastingShaman.cpp │ │ ├── ClearcastingShaman.h │ │ ├── WindfuryWeaponProc.cpp │ │ └── WindfuryWeaponProc.h │ ├── Shaman.cpp │ ├── Shaman.h │ ├── ShamanEnchants.cpp │ ├── ShamanEnchants.h │ ├── ShamanSpells.cpp │ ├── ShamanSpells.h │ ├── Spells │ │ ├── LightningBolt.cpp │ │ ├── LightningBolt.h │ │ ├── Stormstrike.cpp │ │ ├── Stormstrike.h │ │ ├── WindfuryWeapon.cpp │ │ └── WindfuryWeapon.h │ └── TalentTrees │ │ ├── Elemental.cpp │ │ ├── Elemental.h │ │ ├── Enhancement.cpp │ │ ├── Enhancement.h │ │ ├── RestorationShaman.cpp │ │ └── RestorationShaman.h ├── Warlock │ ├── Buffs │ │ ├── ImprovedShadowBolt.cpp │ │ └── ImprovedShadowBolt.h │ ├── Spells │ │ ├── LifeTap.cpp │ │ ├── LifeTap.h │ │ ├── ShadowBolt.cpp │ │ └── ShadowBolt.h │ ├── TalentTrees │ │ ├── Affliction.cpp │ │ ├── Affliction.h │ │ ├── Demonology.cpp │ │ ├── Demonology.h │ │ ├── Destruction.cpp │ │ └── Destruction.h │ ├── Warlock.cpp │ ├── Warlock.h │ ├── WarlockEnchants.cpp │ ├── WarlockEnchants.h │ ├── WarlockSpells.cpp │ └── WarlockSpells.h └── Warrior │ ├── Buffs │ ├── BattleShoutBuff.cpp │ ├── BattleShoutBuff.h │ ├── BattleStanceBuff.cpp │ ├── BattleStanceBuff.h │ ├── BerserkerStanceBuff.cpp │ ├── BerserkerStanceBuff.h │ ├── DeathWishBuff.cpp │ ├── DeathWishBuff.h │ ├── DefensiveStanceBuff.cpp │ ├── DefensiveStanceBuff.h │ ├── Flurry.cpp │ ├── Flurry.h │ ├── RecklessnessBuff.cpp │ └── RecklessnessBuff.h │ ├── Procs │ ├── SwordSpecialization.cpp │ ├── SwordSpecialization.h │ ├── UnbridledWrath.cpp │ └── UnbridledWrath.h │ ├── Spells │ ├── AngerManagement.cpp │ ├── AngerManagement.h │ ├── BattleShout.cpp │ ├── BattleShout.h │ ├── BattleStance.cpp │ ├── BattleStance.h │ ├── BerserkerRage.cpp │ ├── BerserkerRage.h │ ├── BerserkerStance.cpp │ ├── BerserkerStance.h │ ├── Bloodrage.cpp │ ├── Bloodrage.h │ ├── Bloodthirst.cpp │ ├── Bloodthirst.h │ ├── DeathWish.cpp │ ├── DeathWish.h │ ├── DeepWounds.cpp │ ├── DeepWounds.h │ ├── DefensiveStance.cpp │ ├── DefensiveStance.h │ ├── Execute.cpp │ ├── Execute.h │ ├── Hamstring.cpp │ ├── Hamstring.h │ ├── HeroicStrike.cpp │ ├── HeroicStrike.h │ ├── MainhandAttackWarrior.cpp │ ├── MainhandAttackWarrior.h │ ├── MortalStrike.cpp │ ├── MortalStrike.h │ ├── OffhandAttackWarrior.cpp │ ├── OffhandAttackWarrior.h │ ├── Overpower.cpp │ ├── Overpower.h │ ├── Recklessness.cpp │ ├── Recklessness.h │ ├── Rend.cpp │ ├── Rend.h │ ├── Revenge.cpp │ ├── Revenge.h │ ├── ShieldSlam.cpp │ ├── ShieldSlam.h │ ├── Slam.cpp │ ├── Slam.h │ ├── SunderArmor.cpp │ ├── SunderArmor.h │ ├── Whirlwind.cpp │ └── Whirlwind.h │ ├── TalentTrees │ ├── Arms.cpp │ ├── Arms.h │ ├── Arms │ │ ├── AxeSpecialization.cpp │ │ ├── AxeSpecialization.h │ │ ├── Impale.cpp │ │ ├── Impale.h │ │ ├── PolearmSpecialization.cpp │ │ ├── PolearmSpecialization.h │ │ ├── TacticalMastery.cpp │ │ ├── TacticalMastery.h │ │ ├── TwoHandedWeaponSpecialization.cpp │ │ └── TwoHandedWeaponSpecialization.h │ ├── Fury.cpp │ ├── Fury.h │ ├── Protection.cpp │ └── Protection.h │ ├── Warrior.cpp │ ├── Warrior.h │ ├── WarriorEnchants.cpp │ ├── WarriorEnchants.h │ ├── WarriorSpells.cpp │ └── WarriorSpells.h ├── ClassicSim.pro ├── CombatRoll ├── AttackTables │ ├── MagicAttackTable.cpp │ ├── MagicAttackTable.h │ ├── MeleeSpecialTable.cpp │ ├── MeleeSpecialTable.h │ ├── MeleeWhiteHitTable.cpp │ ├── MeleeWhiteHitTable.h │ ├── RangedWhiteHitTable.cpp │ └── RangedWhiteHitTable.h ├── CombatRoll.cpp ├── CombatRoll.h ├── MagicAttackResult.h ├── PhysicalAttackResult.h ├── Random.cpp ├── Random.h └── xorshift │ ├── xoroshiro128plus.cpp │ └── xoroshiro128plus.h ├── DevTools ├── config.py ├── copy_to_debug.py ├── copy_to_dir.py └── csim_release.py ├── Engine ├── Engine.cpp └── Engine.h ├── Equipment ├── Equipment.cpp ├── Equipment.h ├── EquipmentDb │ ├── Belts │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── Boots │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── Chests │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── EquipmentDb.cpp │ ├── EquipmentDb.h │ ├── Gloves │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── Helms │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── ItemFileReader.cpp │ ├── ItemFileReader.h │ ├── Legs │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── Misc │ │ ├── Shields.xml │ │ ├── backs.xml │ │ ├── neck.xml │ │ ├── offhands.xml │ │ ├── projectiles.xml │ │ ├── quivers.xml │ │ ├── relics.xml │ │ ├── rings.xml │ │ └── trinkets.xml │ ├── ProjectileFileReader.cpp │ ├── ProjectileFileReader.h │ ├── SetBonusFileReader.cpp │ ├── SetBonusFileReader.h │ ├── Shoulders │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── WeaponFileReader.cpp │ ├── WeaponFileReader.h │ ├── Weapons │ │ ├── 1hAxes.xml │ │ ├── 1hDaggers.xml │ │ ├── 1hFists.xml │ │ ├── 1hMaces.xml │ │ ├── 1hSwords.xml │ │ ├── 2hAxes.xml │ │ ├── 2hMaces.xml │ │ ├── 2hSwords.xml │ │ ├── Polearms.xml │ │ ├── Ranged.xml │ │ ├── Staves.xml │ │ └── Wands.xml │ ├── Wrists │ │ ├── cloth.xml │ │ ├── leather.xml │ │ ├── mail.xml │ │ └── plate.xml │ ├── equipment_paths.xml │ ├── random_affixes.xml │ └── set_bonuses.xml ├── Item │ ├── Item.cpp │ ├── Item.h │ ├── ItemNamespace.h │ ├── ItemStatsEnum.cpp │ ├── ItemStatsEnum.h │ ├── Projectile.cpp │ ├── Projectile.h │ ├── Quiver.cpp │ ├── Quiver.h │ ├── RandomAffix.cpp │ ├── RandomAffix.h │ ├── Weapon.cpp │ └── Weapon.h ├── RandomAffixes.cpp ├── RandomAffixes.h ├── SetBonusControl.cpp └── SetBonusControl.h ├── Event ├── Event.cpp ├── Event.h └── Events │ ├── BuffRemoval.cpp │ ├── BuffRemoval.h │ ├── CastComplete.cpp │ ├── CastComplete.h │ ├── DotTick.cpp │ ├── DotTick.h │ ├── EncounterEnd.cpp │ ├── EncounterEnd.h │ ├── EncounterStart.cpp │ ├── EncounterStart.h │ ├── IncomingDamageEvent.cpp │ ├── IncomingDamageEvent.h │ ├── MainhandMeleeHit.cpp │ ├── MainhandMeleeHit.h │ ├── OffhandMeleeHit.cpp │ ├── OffhandMeleeHit.h │ ├── PeriodicRefreshBuff.cpp │ ├── PeriodicRefreshBuff.h │ ├── PetAction.cpp │ ├── PetAction.h │ ├── PetMeleeHit.cpp │ ├── PetMeleeHit.h │ ├── PlayerAction.cpp │ ├── PlayerAction.h │ ├── RangedHit.cpp │ ├── RangedHit.h │ ├── SpellCallback.cpp │ └── SpellCallback.h ├── Faction ├── AvailableFactions.h ├── Faction.cpp └── Faction.h ├── GUI ├── ClassicSimControl.cpp ├── ClassicSimControl.h ├── GUIControl.cpp ├── GUIControl.h ├── Models │ ├── ActiveItemStatFilterModel.cpp │ ├── ActiveItemStatFilterModel.h │ ├── AvailableItemStatFilterModel.cpp │ ├── AvailableItemStatFilterModel.h │ ├── BuffModel.cpp │ ├── BuffModel.h │ ├── DamageMetersModel.cpp │ ├── DamageMetersModel.h │ ├── DebuffModel.cpp │ ├── DebuffModel.h │ ├── EnchantModel.cpp │ ├── EnchantModel.h │ ├── ItemModel.cpp │ ├── ItemModel.h │ ├── ItemTypeFilterModel.cpp │ ├── ItemTypeFilterModel.h │ ├── RandomAffixModel.cpp │ ├── RandomAffixModel.h │ ├── RotationConditionsModel.cpp │ ├── RotationConditionsModel.h │ ├── RotationModel.cpp │ ├── RotationModel.h │ ├── SimScaleModel.cpp │ ├── SimScaleModel.h │ ├── SortDirection.h │ ├── Statistics │ │ ├── BuffBreakdownModel.cpp │ │ ├── BuffBreakdownModel.h │ │ ├── DebuffBreakdownModel.cpp │ │ ├── DebuffBreakdownModel.h │ │ ├── EngineBreakdownModel.cpp │ │ ├── EngineBreakdownModel.h │ │ ├── MeleeDamageAvoidanceBreakdownModel.cpp │ │ ├── MeleeDamageAvoidanceBreakdownModel.h │ │ ├── MeleeDamageBreakdownModel.cpp │ │ ├── MeleeDamageBreakdownModel.h │ │ ├── ProcBreakdownModel.cpp │ │ ├── ProcBreakdownModel.h │ │ ├── ResourceBreakdownModel.cpp │ │ ├── ResourceBreakdownModel.h │ │ ├── RotationExecutorBreakdownModel.cpp │ │ ├── RotationExecutorBreakdownModel.h │ │ ├── RotationExecutorListModel.cpp │ │ ├── RotationExecutorListModel.h │ │ ├── ScaleResultModel.cpp │ │ ├── ScaleResultModel.h │ │ ├── ThreatBreakdownModel.cpp │ │ └── ThreatBreakdownModel.h │ ├── TemplateCharacterModel.cpp │ ├── TemplateCharacterModel.h │ ├── WeaponModel.cpp │ └── WeaponModel.h ├── SimControl.cpp ├── SimControl.h ├── SimOption.h ├── SimSettings.cpp └── SimSettings.h ├── LICENSE ├── LICENSE.LGPL ├── Mechanics ├── Mechanics.cpp └── Mechanics.h ├── Phases ├── ContentPhase.cpp ├── ContentPhase.h ├── PhaseRequirer.cpp └── PhaseRequirer.h ├── QML ├── Assets │ ├── Alliance_64.png │ ├── Horde_64.png │ ├── ability │ │ ├── Ability_ambush.png │ │ ├── Ability_backstab.png │ │ ├── Ability_bullrush.png │ │ ├── Ability_creature_poison_05.png │ │ ├── Ability_criticalstrike.png │ │ ├── Ability_defend.png │ │ ├── Ability_devour.png │ │ ├── Ability_druid_bash.png │ │ ├── Ability_druid_catform.png │ │ ├── Ability_druid_dash.png │ │ ├── Ability_druid_demoralizingroar.png │ │ ├── Ability_druid_demoralizingroar2.png │ │ ├── Ability_druid_disembowel.png │ │ ├── Ability_druid_enrage.png │ │ ├── Ability_druid_ferociousbite.png │ │ ├── Ability_druid_maul.png │ │ ├── Ability_druid_rake.png │ │ ├── Ability_druid_ravage.png │ │ ├── Ability_druid_swipe.png │ │ ├── Ability_dualwield.png │ │ ├── Ability_ensnare.png │ │ ├── Ability_eyeoftheowl.png │ │ ├── Ability_fiegndead.png │ │ ├── Ability_ghoulfrenzy.png │ │ ├── Ability_golemstormbolt.png │ │ ├── Ability_golemthunderclap.png │ │ ├── Ability_gouge.png │ │ ├── Ability_hunter_aspectofthemonkey.png │ │ ├── Ability_hunter_beastsoothe.png │ │ ├── Ability_hunter_criticalshot.png │ │ ├── Ability_hunter_mendpet.png │ │ ├── Ability_hunter_pet_bear.png │ │ ├── Ability_hunter_pet_cat.png │ │ ├── Ability_hunter_pet_hyena.png │ │ ├── Ability_hunter_quickshot.png │ │ ├── Ability_hunter_runningshot.png │ │ ├── Ability_hunter_snipershot.png │ │ ├── Ability_hunter_swiftstrike.png │ │ ├── Ability_impalingbolt.png │ │ ├── Ability_kick.png │ │ ├── Ability_marksmanship.png │ │ ├── Ability_mount_jungletiger.png │ │ ├── Ability_parry.png │ │ ├── Ability_piercedamage.png │ │ ├── Ability_poisons.png │ │ ├── Ability_racial_avatar.png │ │ ├── Ability_racial_bearform.png │ │ ├── Ability_racial_bloodrage.png │ │ ├── Ability_racial_cannibalize.png │ │ ├── Ability_rogue_ambush.png │ │ ├── Ability_rogue_eviscerate.png │ │ ├── Ability_rogue_feigndeath.png │ │ ├── Ability_rogue_feint.png │ │ ├── Ability_rogue_kidneyshot.png │ │ ├── Ability_rogue_rupture.png │ │ ├── Ability_rogue_slicedice.png │ │ ├── Ability_rogue_sprint.png │ │ ├── Ability_rogue_trip.png │ │ ├── Ability_sap.png │ │ ├── Ability_searingarrow.png │ │ ├── Ability_shockwave.png │ │ ├── Ability_stealth.png │ │ ├── Ability_thunderbolt.png │ │ ├── Ability_townwatch.png │ │ ├── Ability_trueshot.png │ │ ├── Ability_upgrademoonglaive.png │ │ ├── Ability_warrior_battleshout.png │ │ ├── Ability_warrior_challange.png │ │ ├── Ability_warrior_charge.png │ │ ├── Ability_warrior_cleave.png │ │ ├── Ability_warrior_decisivestrike.png │ │ ├── Ability_warrior_disarm.png │ │ ├── Ability_warrior_innerrage.png │ │ ├── Ability_warrior_offensivestance.png │ │ ├── Ability_warrior_punishingblow.png │ │ ├── Ability_warrior_revenge.png │ │ ├── Ability_warrior_riposte.png │ │ ├── Ability_warrior_savageblow.png │ │ ├── Ability_warrior_shieldbash.png │ │ ├── Ability_warrior_shieldwall.png │ │ ├── Ability_warrior_sunder.png │ │ ├── Ability_warrior_warcry.png │ │ └── Ability_whirlwind.png │ ├── char_slots.png │ ├── classes │ │ ├── Ui-charactercreate-classes_druid.png │ │ ├── Ui-charactercreate-classes_hunter.png │ │ ├── Ui-charactercreate-classes_mage.png │ │ ├── Ui-charactercreate-classes_paladin.png │ │ ├── Ui-charactercreate-classes_priest.png │ │ ├── Ui-charactercreate-classes_rogue.png │ │ ├── Ui-charactercreate-classes_shaman.png │ │ ├── Ui-charactercreate-classes_warlock.png │ │ └── Ui-charactercreate-classes_warrior.png │ ├── cross.png │ ├── druid │ │ ├── druid_balance.jpg │ │ ├── druid_feral.jpg │ │ └── druid_restoration.jpg │ ├── hunter │ │ ├── hunter_beastmastery.jpg │ │ ├── hunter_marksmanship.jpg │ │ └── hunter_survival.jpg │ ├── items │ │ ├── Ability_hunter_criticalshot.png │ │ ├── Ability_rogue_rupture.png │ │ ├── Inv_ammo_arrow_01.png │ │ ├── Inv_ammo_arrow_02.png │ │ ├── Inv_ammo_bullet_01.png │ │ ├── Inv_ammo_bullet_02.png │ │ ├── Inv_ammo_bullet_03.png │ │ ├── Inv_axe_01.png │ │ ├── Inv_axe_02.png │ │ ├── Inv_axe_06.png │ │ ├── Inv_axe_07.png │ │ ├── Inv_axe_08.png │ │ ├── Inv_axe_09.png │ │ ├── Inv_axe_10.png │ │ ├── Inv_axe_11.png │ │ ├── Inv_axe_12.png │ │ ├── Inv_axe_15.png │ │ ├── Inv_axe_17.png │ │ ├── Inv_axe_21.png │ │ ├── Inv_axe_22.png │ │ ├── Inv_axe_24.png │ │ ├── Inv_axe_26.png │ │ ├── Inv_axe_35.png │ │ ├── Inv_banner_01.png │ │ ├── Inv_battery_02.png │ │ ├── Inv_belt_01.png │ │ ├── Inv_belt_02.png │ │ ├── Inv_belt_03.png │ │ ├── Inv_belt_04.png │ │ ├── Inv_belt_06.png │ │ ├── Inv_belt_08.png │ │ ├── Inv_belt_09.png │ │ ├── Inv_belt_10.png │ │ ├── Inv_belt_11.png │ │ ├── Inv_belt_12.png │ │ ├── Inv_belt_13.png │ │ ├── Inv_belt_14.png │ │ ├── Inv_belt_15.png │ │ ├── Inv_belt_16.png │ │ ├── Inv_belt_17.png │ │ ├── Inv_belt_18.png │ │ ├── Inv_belt_19.png │ │ ├── Inv_belt_20.png │ │ ├── Inv_belt_21.png │ │ ├── Inv_belt_22.png │ │ ├── Inv_belt_23.png │ │ ├── Inv_belt_24.png │ │ ├── Inv_belt_25.png │ │ ├── Inv_belt_26.png │ │ ├── Inv_belt_27.png │ │ ├── Inv_belt_28.png │ │ ├── Inv_belt_29.png │ │ ├── Inv_belt_30.png │ │ ├── Inv_belt_31.png │ │ ├── Inv_belt_32.png │ │ ├── Inv_belt_33.png │ │ ├── Inv_belt_34.png │ │ ├── Inv_boots_01.png │ │ ├── Inv_boots_02.png │ │ ├── Inv_boots_03.png │ │ ├── Inv_boots_04.png │ │ ├── Inv_boots_05.png │ │ ├── Inv_boots_06.png │ │ ├── Inv_boots_07.png │ │ ├── Inv_boots_08.png │ │ ├── Inv_boots_chain_02.png │ │ ├── Inv_boots_chain_04.png │ │ ├── Inv_boots_chain_05.png │ │ ├── Inv_boots_chain_07.png │ │ ├── Inv_boots_chain_08.png │ │ ├── Inv_boots_chain_11.png │ │ ├── Inv_boots_chain_13.png │ │ ├── Inv_boots_cloth_01.png │ │ ├── Inv_boots_cloth_02.png │ │ ├── Inv_boots_cloth_03.png │ │ ├── Inv_boots_cloth_05.png │ │ ├── Inv_boots_cloth_07.png │ │ ├── Inv_boots_cloth_09.png │ │ ├── Inv_boots_cloth_14.png │ │ ├── Inv_boots_cloth_16.png │ │ ├── Inv_boots_fabric_01.png │ │ ├── Inv_boots_plate_01.png │ │ ├── Inv_boots_plate_03.png │ │ ├── Inv_boots_plate_04.png │ │ ├── Inv_boots_plate_05.png │ │ ├── Inv_boots_plate_06.png │ │ ├── Inv_boots_plate_07.png │ │ ├── Inv_boots_plate_08.png │ │ ├── Inv_boots_plate_09.png │ │ ├── Inv_boots_wolf.png │ │ ├── Inv_bracer_02.png │ │ ├── Inv_bracer_03.png │ │ ├── Inv_bracer_04.png │ │ ├── Inv_bracer_05.png │ │ ├── Inv_bracer_06.png │ │ ├── Inv_bracer_07.png │ │ ├── Inv_bracer_08.png │ │ ├── Inv_bracer_09.png │ │ ├── Inv_bracer_12.png │ │ ├── Inv_bracer_13.png │ │ ├── Inv_bracer_14.png │ │ ├── Inv_bracer_15.png │ │ ├── Inv_bracer_17.png │ │ ├── Inv_bracer_18.png │ │ ├── Inv_bracer_19.png │ │ ├── Inv_chest_chain_03.png │ │ ├── Inv_chest_chain_04.png │ │ ├── Inv_chest_chain_07.png │ │ ├── Inv_chest_chain_11.png │ │ ├── Inv_chest_chain_12.png │ │ ├── Inv_chest_chain_13.png │ │ ├── Inv_chest_chain_14.png │ │ ├── Inv_chest_chain_15.png │ │ ├── Inv_chest_chain_16.png │ │ ├── Inv_chest_chain_17.png │ │ ├── Inv_chest_cloth_03.png │ │ ├── Inv_chest_cloth_04.png │ │ ├── Inv_chest_cloth_06.png │ │ ├── Inv_chest_cloth_07.png │ │ ├── Inv_chest_cloth_08.png │ │ ├── Inv_chest_cloth_09.png │ │ ├── Inv_chest_cloth_10.png │ │ ├── Inv_chest_cloth_11.png │ │ ├── Inv_chest_cloth_12.png │ │ ├── Inv_chest_cloth_15.png │ │ ├── Inv_chest_cloth_16.png │ │ ├── Inv_chest_cloth_17.png │ │ ├── Inv_chest_cloth_18.png │ │ ├── Inv_chest_cloth_22.png │ │ ├── Inv_chest_cloth_24.png │ │ ├── Inv_chest_cloth_25.png │ │ ├── Inv_chest_cloth_26.png │ │ ├── Inv_chest_cloth_28.png │ │ ├── Inv_chest_cloth_29.png │ │ ├── Inv_chest_cloth_31.png │ │ ├── Inv_chest_cloth_38.png │ │ ├── Inv_chest_cloth_39.png │ │ ├── Inv_chest_cloth_43.png │ │ ├── Inv_chest_cloth_45.png │ │ ├── Inv_chest_cloth_46.png │ │ ├── Inv_chest_cloth_47.png │ │ ├── Inv_chest_cloth_48.png │ │ ├── Inv_chest_cloth_49.png │ │ ├── Inv_chest_cloth_50.png │ │ ├── Inv_chest_cloth_51.png │ │ ├── Inv_chest_leather_01.png │ │ ├── Inv_chest_leather_02.png │ │ ├── Inv_chest_leather_03.png │ │ ├── Inv_chest_leather_05.png │ │ ├── Inv_chest_leather_07.png │ │ ├── Inv_chest_leather_08.png │ │ ├── Inv_chest_leather_10.png │ │ ├── Inv_chest_plate02.png │ │ ├── Inv_chest_plate03.png │ │ ├── Inv_chest_plate04.png │ │ ├── Inv_chest_plate06.png │ │ ├── Inv_chest_plate07.png │ │ ├── Inv_chest_plate08.png │ │ ├── Inv_chest_plate09.png │ │ ├── Inv_chest_plate12.png │ │ ├── Inv_chest_plate16.png │ │ ├── Inv_crown_01.png │ │ ├── Inv_crown_02.png │ │ ├── Inv_drink_01.png │ │ ├── Inv_drink_04.png │ │ ├── Inv_gauntlets_03.png │ │ ├── Inv_gauntlets_04.png │ │ ├── Inv_gauntlets_05.png │ │ ├── Inv_gauntlets_06.png │ │ ├── Inv_gauntlets_09.png │ │ ├── Inv_gauntlets_10.png │ │ ├── Inv_gauntlets_11.png │ │ ├── Inv_gauntlets_13.png │ │ ├── Inv_gauntlets_14.png │ │ ├── Inv_gauntlets_15.png │ │ ├── Inv_gauntlets_16.png │ │ ├── Inv_gauntlets_17.png │ │ ├── Inv_gauntlets_18.png │ │ ├── Inv_gauntlets_19.png │ │ ├── Inv_gauntlets_21.png │ │ ├── Inv_gauntlets_22.png │ │ ├── Inv_gauntlets_23.png │ │ ├── Inv_gauntlets_24.png │ │ ├── Inv_gauntlets_25.png │ │ ├── Inv_gauntlets_26.png │ │ ├── Inv_gauntlets_27.png │ │ ├── Inv_gauntlets_28.png │ │ ├── Inv_gauntlets_29.png │ │ ├── Inv_gauntlets_30.png │ │ ├── Inv_gauntlets_31.png │ │ ├── Inv_gizmo_02.png │ │ ├── Inv_hammer_03.png │ │ ├── Inv_hammer_04.png │ │ ├── Inv_hammer_05.png │ │ ├── Inv_hammer_08.png │ │ ├── Inv_hammer_09.png │ │ ├── Inv_hammer_10.png │ │ ├── Inv_hammer_11.png │ │ ├── Inv_hammer_13.png │ │ ├── Inv_hammer_17.png │ │ ├── Inv_hammer_19.png │ │ ├── Inv_hammer_20.png │ │ ├── Inv_hammer_21.png │ │ ├── Inv_hammer_23.png │ │ ├── Inv_hammer_unique_sulfuras.png │ │ ├── Inv_helmet_01.png │ │ ├── Inv_helmet_02.png │ │ ├── Inv_helmet_03.png │ │ ├── Inv_helmet_04.png │ │ ├── Inv_helmet_05.png │ │ ├── Inv_helmet_06.png │ │ ├── Inv_helmet_08.png │ │ ├── Inv_helmet_09.png │ │ ├── Inv_helmet_10.png │ │ ├── Inv_helmet_11.png │ │ ├── Inv_helmet_15.png │ │ ├── Inv_helmet_17.png │ │ ├── Inv_helmet_18.png │ │ ├── Inv_helmet_19.png │ │ ├── Inv_helmet_21.png │ │ ├── Inv_helmet_22.png │ │ ├── Inv_helmet_24.png │ │ ├── Inv_helmet_25.png │ │ ├── Inv_helmet_27.png │ │ ├── Inv_helmet_29.png │ │ ├── Inv_helmet_30.png │ │ ├── Inv_helmet_32.png │ │ ├── Inv_helmet_34.png │ │ ├── Inv_helmet_36.png │ │ ├── Inv_helmet_38.png │ │ ├── Inv_helmet_39.png │ │ ├── Inv_helmet_41.png │ │ ├── Inv_helmet_44.png │ │ ├── Inv_helmet_46.png │ │ ├── Inv_helmet_47.png │ │ ├── Inv_helmet_50.png │ │ ├── Inv_helmet_51.png │ │ ├── Inv_helmet_52.png │ │ ├── Inv_helmet_53.png │ │ ├── Inv_helmet_58.png │ │ ├── Inv_helmet_59.png │ │ ├── Inv_helmet_61.png │ │ ├── Inv_helmet_62.png │ │ ├── Inv_helmet_63.png │ │ ├── Inv_helmet_70.png │ │ ├── Inv_helmet_71.png │ │ ├── Inv_helmet_72.png │ │ ├── Inv_helmet_73.png │ │ ├── Inv_jewelry_amulet_03.png │ │ ├── Inv_jewelry_amulet_04.png │ │ ├── Inv_jewelry_amulet_05.png │ │ ├── Inv_jewelry_amulet_07.png │ │ ├── Inv_jewelry_necklace_03.png │ │ ├── Inv_jewelry_necklace_04.png │ │ ├── Inv_jewelry_necklace_05.png │ │ ├── Inv_jewelry_necklace_09.png │ │ ├── Inv_jewelry_necklace_10.png │ │ ├── Inv_jewelry_necklace_12.png │ │ ├── Inv_jewelry_necklace_13.png │ │ ├── Inv_jewelry_necklace_14.png │ │ ├── Inv_jewelry_necklace_16.png │ │ ├── Inv_jewelry_necklace_17.png │ │ ├── Inv_jewelry_necklace_19.png │ │ ├── Inv_jewelry_necklace_22.png │ │ ├── Inv_jewelry_necklace_25.png │ │ ├── Inv_jewelry_necklace_26.png │ │ ├── Inv_jewelry_necklace_28naxxramas.png │ │ ├── Inv_jewelry_necklace_29naxxramas.png │ │ ├── Inv_jewelry_necklace_ahnqiraj_01.png │ │ ├── Inv_jewelry_necklace_ahnqiraj_02.png │ │ ├── Inv_jewelry_necklace_ahnqiraj_03.png │ │ ├── Inv_jewelry_necklace_ahnqiraj_04.png │ │ ├── Inv_jewelry_ring_01.png │ │ ├── Inv_jewelry_ring_03.png │ │ ├── Inv_jewelry_ring_04.png │ │ ├── Inv_jewelry_ring_05.png │ │ ├── Inv_jewelry_ring_06.png │ │ ├── Inv_jewelry_ring_07.png │ │ ├── Inv_jewelry_ring_10.png │ │ ├── Inv_jewelry_ring_12.png │ │ ├── Inv_jewelry_ring_13.png │ │ ├── Inv_jewelry_ring_14.png │ │ ├── Inv_jewelry_ring_15.png │ │ ├── Inv_jewelry_ring_16.png │ │ ├── Inv_jewelry_ring_17.png │ │ ├── Inv_jewelry_ring_18.png │ │ ├── Inv_jewelry_ring_19.png │ │ ├── Inv_jewelry_ring_20.png │ │ ├── Inv_jewelry_ring_21.png │ │ ├── Inv_jewelry_ring_23.png │ │ ├── Inv_jewelry_ring_24.png │ │ ├── Inv_jewelry_ring_27.png │ │ ├── Inv_jewelry_ring_28.png │ │ ├── Inv_jewelry_ring_30.png │ │ ├── Inv_jewelry_ring_32.png │ │ ├── Inv_jewelry_ring_34.png │ │ ├── Inv_jewelry_ring_35.png │ │ ├── Inv_jewelry_ring_37.png │ │ ├── Inv_jewelry_ring_38.png │ │ ├── Inv_jewelry_ring_40.png │ │ ├── Inv_jewelry_ring_41.png │ │ ├── Inv_jewelry_ring_43.png │ │ ├── Inv_jewelry_ring_44.png │ │ ├── Inv_jewelry_ring_46.png │ │ ├── Inv_jewelry_ring_48naxxramas.png │ │ ├── Inv_jewelry_ring_49naxxramas.png │ │ ├── Inv_jewelry_ring_51naxxramas.png │ │ ├── Inv_jewelry_ring_52naxxramas.png │ │ ├── Inv_jewelry_ring_53naxxramas.png │ │ ├── Inv_jewelry_ring_ahnqiraj_01.png │ │ ├── Inv_jewelry_ring_ahnqiraj_02.png │ │ ├── Inv_jewelry_ring_ahnqiraj_03.png │ │ ├── Inv_jewelry_ring_ahnqiraj_04.png │ │ ├── Inv_jewelry_ring_ahnqiraj_05.png │ │ ├── Inv_jewelry_ring_ahnqiraj_06.png │ │ ├── Inv_jewelry_talisman_01.png │ │ ├── Inv_jewelry_talisman_07.png │ │ ├── Inv_jewelry_talisman_08.png │ │ ├── Inv_jewelry_talisman_09.png │ │ ├── Inv_jewelry_talisman_10.png │ │ ├── Inv_knife_1h_stratholme_d_01.png │ │ ├── Inv_knife_1h_stratholme_d_02.png │ │ ├── Inv_knife_1h_stratholme_d_03.png │ │ ├── Inv_mace_01.png │ │ ├── Inv_mace_02.png │ │ ├── Inv_mace_04.png │ │ ├── Inv_mace_05.png │ │ ├── Inv_mace_06.png │ │ ├── Inv_mace_08.png │ │ ├── Inv_mace_09.png │ │ ├── Inv_mace_13.png │ │ ├── Inv_mace_14.png │ │ ├── Inv_mace_15.png │ │ ├── Inv_mace_19.png │ │ ├── Inv_mace_1h_stratholme_d_01.png │ │ ├── Inv_mace_21.png │ │ ├── Inv_mace_24.png │ │ ├── Inv_mace_25.png │ │ ├── Inv_mace_26.png │ │ ├── Inv_mace_28.png │ │ ├── Inv_mask_02.png │ │ ├── Inv_misc_ahnqirajtrinket_04.png │ │ ├── Inv_misc_ammo_bullet_01.png │ │ ├── Inv_misc_armorkit_09.png │ │ ├── Inv_misc_armorkit_18.png │ │ ├── Inv_misc_bag_09_black.png │ │ ├── Inv_misc_bag_10_black.png │ │ ├── Inv_misc_bandage_15.png │ │ ├── Inv_misc_bandana_01.png │ │ ├── Inv_misc_bandana_03.png │ │ ├── Inv_misc_bone_04.png │ │ ├── Inv_misc_bone_05.png │ │ ├── Inv_misc_bone_06.png │ │ ├── Inv_misc_bone_10.png │ │ ├── Inv_misc_bone_elfskull_01.png │ │ ├── Inv_misc_bone_taurenskull_01.png │ │ ├── Inv_misc_book_01.png │ │ ├── Inv_misc_book_05.png │ │ ├── Inv_misc_book_06.png │ │ ├── Inv_misc_book_09.png │ │ ├── Inv_misc_book_11.png │ │ ├── Inv_misc_book_12.png │ │ ├── Inv_misc_book_15.png │ │ ├── Inv_misc_branch_01.png │ │ ├── Inv_misc_cape_01.png │ │ ├── Inv_misc_cape_02.png │ │ ├── Inv_misc_cape_05.png │ │ ├── Inv_misc_cape_06.png │ │ ├── Inv_misc_cape_07.png │ │ ├── Inv_misc_cape_08.png │ │ ├── Inv_misc_cape_10.png │ │ ├── Inv_misc_cape_11.png │ │ ├── Inv_misc_cape_14.png │ │ ├── Inv_misc_cape_15.png │ │ ├── Inv_misc_cape_16.png │ │ ├── Inv_misc_cape_17.png │ │ ├── Inv_misc_cape_18.png │ │ ├── Inv_misc_cape_19.png │ │ ├── Inv_misc_cape_20.png │ │ ├── Inv_misc_cape_22.png │ │ ├── Inv_misc_cape_naxxramas_01.png │ │ ├── Inv_misc_cape_naxxramas_03.png │ │ ├── Inv_misc_enggizmos_19.png │ │ ├── Inv_misc_eye_01.png │ │ ├── Inv_misc_gem_pearl_04.png │ │ ├── Inv_misc_gem_sapphire_01.png │ │ ├── Inv_misc_head_dragon_black.png │ │ ├── Inv_misc_monsterclaw_03.png │ │ ├── Inv_misc_monsterclaw_04.png │ │ ├── Inv_misc_monsterscales_15.png │ │ ├── Inv_misc_orb_01.png │ │ ├── Inv_misc_orb_03.png │ │ ├── Inv_misc_orb_04.png │ │ ├── Inv_misc_orb_05.png │ │ ├── Inv_misc_pelt_bear_03.png │ │ ├── Inv_misc_quiver_03.png │ │ ├── Inv_misc_quiver_06.png │ │ ├── Inv_misc_quiver_07.png │ │ ├── Inv_misc_root_02.png │ │ ├── Inv_misc_rune_05.png │ │ ├── Inv_misc_rune_06.png │ │ ├── Inv_misc_rune_07.png │ │ ├── Inv_misc_stonetablet_11.png │ │ ├── Inv_misc_ticket_tarot_maelstrom_01.png │ │ ├── Inv_misc_token_argentdawn2.png │ │ ├── Inv_misc_token_argentdawn3.png │ │ ├── Inv_offhand_naxxramas_03.png │ │ ├── Inv_offhand_naxxramas_d_01.png │ │ ├── Inv_ore_arcanite_02.png │ │ ├── Inv_pants_02.png │ │ ├── Inv_pants_03.png │ │ ├── Inv_pants_04.png │ │ ├── Inv_pants_06.png │ │ ├── Inv_pants_07.png │ │ ├── Inv_pants_08.png │ │ ├── Inv_pants_09.png │ │ ├── Inv_pants_11.png │ │ ├── Inv_pants_12.png │ │ ├── Inv_pants_13.png │ │ ├── Inv_pants_cloth_02.png │ │ ├── Inv_pants_cloth_05.png │ │ ├── Inv_pants_cloth_06.png │ │ ├── Inv_pants_cloth_08.png │ │ ├── Inv_pants_cloth_14.png │ │ ├── Inv_pants_leather_05.png │ │ ├── Inv_pants_leather_07.png │ │ ├── Inv_pants_leather_09.png │ │ ├── Inv_pants_leather_11.png │ │ ├── Inv_pants_mail_03.png │ │ ├── Inv_pants_mail_09.png │ │ ├── Inv_pants_mail_10.png │ │ ├── Inv_pants_mail_11.png │ │ ├── Inv_pants_mail_15.png │ │ ├── Inv_pants_mail_16.png │ │ ├── Inv_pants_mail_17.png │ │ ├── Inv_pants_plate_02.png │ │ ├── Inv_pants_plate_03.png │ │ ├── Inv_pants_plate_05.png │ │ ├── Inv_pants_plate_12.png │ │ ├── Inv_pants_plate_15.png │ │ ├── Inv_pants_plate_16.png │ │ ├── Inv_pants_plate_20.png │ │ ├── Inv_pants_plate_21.png │ │ ├── Inv_pants_wolf.png │ │ ├── Inv_pick_05.png │ │ ├── Inv_potion_25.png │ │ ├── Inv_relics_idolofrejuvenation.png │ │ ├── Inv_relics_libramofhope.png │ │ ├── Inv_relics_libramoftruth.png │ │ ├── Inv_relics_totemofrage.png │ │ ├── Inv_scroll_08.png │ │ ├── Inv_shield_05.png │ │ ├── Inv_shield_06.png │ │ ├── Inv_shield_10.png │ │ ├── Inv_shield_17.png │ │ ├── Inv_shoulder_01.png │ │ ├── Inv_shoulder_02.png │ │ ├── Inv_shoulder_03.png │ │ ├── Inv_shoulder_05.png │ │ ├── Inv_shoulder_07.png │ │ ├── Inv_shoulder_08.png │ │ ├── Inv_shoulder_10.png │ │ ├── Inv_shoulder_11.png │ │ ├── Inv_shoulder_13.png │ │ ├── Inv_shoulder_14.png │ │ ├── Inv_shoulder_15.png │ │ ├── Inv_shoulder_16.png │ │ ├── Inv_shoulder_17.png │ │ ├── Inv_shoulder_18.png │ │ ├── Inv_shoulder_19.png │ │ ├── Inv_shoulder_20.png │ │ ├── Inv_shoulder_21.png │ │ ├── Inv_shoulder_22.png │ │ ├── Inv_shoulder_23.png │ │ ├── Inv_shoulder_24.png │ │ ├── Inv_shoulder_25.png │ │ ├── Inv_shoulder_27.png │ │ ├── Inv_shoulder_28.png │ │ ├── Inv_shoulder_29.png │ │ ├── Inv_shoulder_30.png │ │ ├── Inv_shoulder_32.png │ │ ├── Inv_shoulder_34.png │ │ ├── Inv_shoulder_35.png │ │ ├── Inv_shoulder_36.png │ │ ├── Inv_spear_01.png │ │ ├── Inv_spear_02.png │ │ ├── Inv_spear_03.png │ │ ├── Inv_spear_04.png │ │ ├── Inv_spear_06.png │ │ ├── Inv_spear_07.png │ │ ├── Inv_spear_08.png │ │ ├── Inv_staff_01.png │ │ ├── Inv_staff_06.png │ │ ├── Inv_staff_07.png │ │ ├── Inv_staff_10.png │ │ ├── Inv_staff_11.png │ │ ├── Inv_staff_12.png │ │ ├── Inv_staff_13.png │ │ ├── Inv_staff_14.png │ │ ├── Inv_staff_15.png │ │ ├── Inv_staff_18.png │ │ ├── Inv_staff_20.png │ │ ├── Inv_staff_21.png │ │ ├── Inv_staff_23.png │ │ ├── Inv_staff_25.png │ │ ├── Inv_staff_28.png │ │ ├── Inv_staff_29.png │ │ ├── Inv_staff_30.png │ │ ├── Inv_staff_32.png │ │ ├── Inv_staff_33.png │ │ ├── Inv_staff_34.png │ │ ├── Inv_staff_goldfeathered_01.png │ │ ├── Inv_stone_02.png │ │ ├── Inv_stone_15.png │ │ ├── Inv_sword_01.png │ │ ├── Inv_sword_04.png │ │ ├── Inv_sword_05.png │ │ ├── Inv_sword_07.png │ │ ├── Inv_sword_10.png │ │ ├── Inv_sword_11.png │ │ ├── Inv_sword_12.png │ │ ├── Inv_sword_13.png │ │ ├── Inv_sword_14.png │ │ ├── Inv_sword_15.png │ │ ├── Inv_sword_17.png │ │ ├── Inv_sword_18.png │ │ ├── Inv_sword_20.png │ │ ├── Inv_sword_21.png │ │ ├── Inv_sword_22.png │ │ ├── Inv_sword_23.png │ │ ├── Inv_sword_25.png │ │ ├── Inv_sword_27.png │ │ ├── Inv_sword_28.png │ │ ├── Inv_sword_29.png │ │ ├── Inv_sword_2h_ashbringercorrupt.png │ │ ├── Inv_sword_31.png │ │ ├── Inv_sword_32.png │ │ ├── Inv_sword_34.png │ │ ├── Inv_sword_35.png │ │ ├── Inv_sword_36.png │ │ ├── Inv_sword_37.png │ │ ├── Inv_sword_38.png │ │ ├── Inv_sword_39.png │ │ ├── Inv_sword_40.png │ │ ├── Inv_sword_41.png │ │ ├── Inv_sword_42.png │ │ ├── Inv_sword_43.png │ │ ├── Inv_sword_44.png │ │ ├── Inv_sword_46.png │ │ ├── Inv_sword_47.png │ │ ├── Inv_sword_48.png │ │ ├── Inv_sword_49.png │ │ ├── Inv_sword_50.png │ │ ├── Inv_sword_51.png │ │ ├── Inv_sword_54.png │ │ ├── Inv_sword_55.png │ │ ├── Inv_sword_56.png │ │ ├── Inv_sword_57.png │ │ ├── Inv_sword_58.png │ │ ├── Inv_sword_60.png │ │ ├── Inv_sword_61.png │ │ ├── Inv_sword_62.png │ │ ├── Inv_sword_84.png │ │ ├── Inv_trinket_naxxramas02.png │ │ ├── Inv_trinket_naxxramas03.png │ │ ├── Inv_trinket_naxxramas04.png │ │ ├── Inv_trinket_naxxramas06.png │ │ ├── Inv_waepon_bow_zulgrub_d_01.png │ │ ├── Inv_waepon_bow_zulgrub_d_02.png │ │ ├── Inv_wand_01.png │ │ ├── Inv_wand_02.png │ │ ├── Inv_wand_04.png │ │ ├── Inv_wand_05.png │ │ ├── Inv_wand_06.png │ │ ├── Inv_wand_07.png │ │ ├── Inv_wand_09.png │ │ ├── Inv_wand_10.png │ │ ├── Inv_wand_11.png │ │ ├── Inv_wand_12.png │ │ ├── Inv_wand_1h_stratholme_d_01.png │ │ ├── Inv_wand_1h_stratholme_d_02.png │ │ ├── Inv_weapon_bow_01.png │ │ ├── Inv_weapon_bow_03.png │ │ ├── Inv_weapon_bow_04.png │ │ ├── Inv_weapon_bow_08.png │ │ ├── Inv_weapon_bow_09.png │ │ ├── Inv_weapon_bow_11.png │ │ ├── Inv_weapon_bow_12.png │ │ ├── Inv_weapon_bow_13.png │ │ ├── Inv_weapon_bow_14.png │ │ ├── Inv_weapon_crossbow_04.png │ │ ├── Inv_weapon_crossbow_06.png │ │ ├── Inv_weapon_crossbow_07.png │ │ ├── Inv_weapon_crossbow_08.png │ │ ├── Inv_weapon_crossbow_09.png │ │ ├── Inv_weapon_crossbow_10.png │ │ ├── Inv_weapon_crossbow_11.png │ │ ├── Inv_weapon_crossbow_12.png │ │ ├── Inv_weapon_halbard_01.png │ │ ├── Inv_weapon_halberd_04.png │ │ ├── Inv_weapon_halberd_11.png │ │ ├── Inv_weapon_halberd_12.png │ │ ├── Inv_weapon_halberd_ahnqiraj.png │ │ ├── Inv_weapon_hand_01.png │ │ ├── Inv_weapon_hand_03.png │ │ ├── Inv_weapon_rifle_02.png │ │ ├── Inv_weapon_rifle_03.png │ │ ├── Inv_weapon_rifle_05.png │ │ ├── Inv_weapon_rifle_06.png │ │ ├── Inv_weapon_rifle_08.png │ │ ├── Inv_weapon_rifle_09.png │ │ ├── Inv_weapon_rifle_10.png │ │ ├── Inv_weapon_rifle_11.png │ │ ├── Inv_weapon_shortblade_03.png │ │ ├── Inv_weapon_shortblade_04.png │ │ ├── Inv_weapon_shortblade_05.png │ │ ├── Inv_weapon_shortblade_06.png │ │ ├── Inv_weapon_shortblade_07.png │ │ ├── Inv_weapon_shortblade_11.png │ │ ├── Inv_weapon_shortblade_12.png │ │ ├── Inv_weapon_shortblade_16.png │ │ ├── Inv_weapon_shortblade_18.png │ │ ├── Inv_weapon_shortblade_22.png │ │ ├── Inv_weapon_shortblade_25.png │ │ ├── Inv_weapon_shortblade_27.png │ │ ├── Inv_weapon_shortblade_28.png │ │ ├── Inv_weapon_shortblade_29.png │ │ ├── Inv_weapon_shortblade_30.png │ │ ├── Inv_weapon_shortblade_31.png │ │ ├── Inv_weapon_shortblade_33.png │ │ ├── Inv_weapon_shortblade_35.png │ │ ├── Inv_weapon_shortblade_37.png │ │ ├── Inv_zulgurubtrinket.png │ │ ├── Spell_frost_frostblast.png │ │ ├── Spell_frost_frostbrand.png │ │ ├── Spell_frost_iceshard.png │ │ ├── Spell_nature_abolishmagic.png │ │ ├── Spell_nature_wispheal.png │ │ └── Spell_shadow_haunting.png │ ├── mage │ │ ├── mage_arcane.jpg │ │ ├── mage_fire.jpg │ │ └── mage_frost.jpg │ ├── misc │ │ ├── Inv_ammo_firetar.png │ │ ├── Inv_drink_17.png │ │ ├── Inv_drink_milk_05.png │ │ ├── Inv_misc_birdbeck_01.png │ │ ├── Inv_misc_dust_02.png │ │ ├── Inv_misc_fish_13.png │ │ ├── Inv_misc_food_41.png │ │ ├── Inv_misc_food_45.png │ │ ├── Inv_misc_food_63.png │ │ ├── Inv_misc_food_64.png │ │ ├── Inv_misc_gem_sapphire_01.png │ │ ├── Inv_misc_head_dragon_01.png │ │ ├── Inv_misc_monsterscales_07.png │ │ ├── Inv_misc_monsterscales_11.png │ │ ├── Inv_misc_orb_02.png │ │ ├── Inv_misc_rune_04.png │ │ ├── Inv_potion_32.png │ │ ├── Inv_potion_40.png │ │ ├── Inv_potion_41.png │ │ ├── Inv_potion_45.png │ │ ├── Inv_potion_61.png │ │ ├── Inv_potion_76.png │ │ ├── Inv_potion_92.png │ │ ├── Inv_potion_94.png │ │ ├── Inv_potion_97.png │ │ ├── Inv_scroll_02.png │ │ ├── Inv_stone_04.png │ │ ├── Inv_stone_15.png │ │ ├── Spell_holy_greaterheal.png │ │ └── Trade_engraving.png │ ├── paladin │ │ ├── paladin_combat.jpg │ │ ├── paladin_holy.jpg │ │ └── paladin_protection.jpg │ ├── races │ │ ├── Racial_orc_berserkerstrength.png │ │ ├── Racial_troll_berserk.png │ │ ├── Ui-charactercreate-races_dwarf-female.png │ │ ├── Ui-charactercreate-races_gnome-female.png │ │ ├── Ui-charactercreate-races_human-female.png │ │ ├── Ui-charactercreate-races_nightelf-female.png │ │ ├── Ui-charactercreate-races_orc-female.png │ │ ├── Ui-charactercreate-races_tauren-female.png │ │ ├── Ui-charactercreate-races_troll-female.png │ │ └── Ui-charactercreate-races_undead-female.png │ ├── rogue │ │ ├── rogue_assassination.jpg │ │ ├── rogue_combat.jpg │ │ └── rogue_subtlety.jpg │ ├── shaman │ │ ├── shaman_elemental.jpg │ │ ├── shaman_enhancement.jpg │ │ └── shaman_restoration.jpg │ ├── spell │ │ ├── Spell_arcane_arcaneresilience.png │ │ ├── Spell_arcane_blink.png │ │ ├── Spell_arcane_mage_armor.png │ │ ├── Spell_arcane_starfire.png │ │ ├── Spell_arcane_teleportorgrimmar.png │ │ ├── Spell_fire_elementaldevastation.png │ │ ├── Spell_fire_enchantweapon.png │ │ ├── Spell_fire_fire.png │ │ ├── Spell_fire_firearmor.png │ │ ├── Spell_fire_fireball.png │ │ ├── Spell_fire_fireball02.png │ │ ├── Spell_fire_firebolt.png │ │ ├── Spell_fire_flamebolt.png │ │ ├── Spell_fire_flameshock.png │ │ ├── Spell_fire_flametounge.png │ │ ├── Spell_fire_flare.png │ │ ├── Spell_fire_immolation.png │ │ ├── Spell_fire_incinerate.png │ │ ├── Spell_fire_lavaspawn.png │ │ ├── Spell_fire_masterofelements.png │ │ ├── Spell_fire_meteorstorm.png │ │ ├── Spell_fire_sealoffire.png │ │ ├── Spell_fire_selfdestruct.png │ │ ├── Spell_fire_soulburn.png │ │ ├── Spell_fire_volcano.png │ │ ├── Spell_fire_windsofwoe.png │ │ ├── Spell_frost_chillingblast.png │ │ ├── Spell_frost_freezingbreath.png │ │ ├── Spell_frost_frost.png │ │ ├── Spell_frost_frostarmor.png │ │ ├── Spell_frost_frostbolt.png │ │ ├── Spell_frost_frostbolt02.png │ │ ├── Spell_frost_frostshock.png │ │ ├── Spell_frost_frostward.png │ │ ├── Spell_frost_glacier.png │ │ ├── Spell_frost_iceshock.png │ │ ├── Spell_frost_icestorm.png │ │ ├── Spell_frost_manaburn.png │ │ ├── Spell_frost_manarecharge.png │ │ ├── Spell_frost_stun.png │ │ ├── Spell_frost_summonwaterelemental.png │ │ ├── Spell_frost_windwalkon.png │ │ ├── Spell_frost_wisp.png │ │ ├── Spell_frost_wizardmark.png │ │ ├── Spell_holy_ashestoashes.png │ │ ├── Spell_holy_auraoflight.png │ │ ├── Spell_holy_blessingofagility.png │ │ ├── Spell_holy_blessingofprotection.png │ │ ├── Spell_holy_blessingofstamina.png │ │ ├── Spell_holy_blessingofstrength.png │ │ ├── Spell_holy_devotion.png │ │ ├── Spell_holy_devotionaura.png │ │ ├── Spell_holy_dispelmagic.png │ │ ├── Spell_holy_divinespirit.png │ │ ├── Spell_holy_dizzy.png │ │ ├── Spell_holy_elunesgrace.png │ │ ├── Spell_holy_excorcism_02.png │ │ ├── Spell_holy_eyeforaneye.png │ │ ├── Spell_holy_fistofjustice.png │ │ ├── Spell_holy_greaterblessingofkings.png │ │ ├── Spell_holy_greaterblessingofwisdom.png │ │ ├── Spell_holy_greaterheal.png │ │ ├── Spell_holy_heal.png │ │ ├── Spell_holy_healingaura.png │ │ ├── Spell_holy_holybolt.png │ │ ├── Spell_holy_holysmite.png │ │ ├── Spell_holy_innerfire.png │ │ ├── Spell_holy_layonhands.png │ │ ├── Spell_holy_lesserheal02.png │ │ ├── Spell_holy_magicalsentry.png │ │ ├── Spell_holy_mindsooth.png │ │ ├── Spell_holy_mindvision.png │ │ ├── Spell_holy_persuitofjustice.png │ │ ├── Spell_holy_power.png │ │ ├── Spell_holy_prayerofhealing.png │ │ ├── Spell_holy_retributionaura.png │ │ ├── Spell_holy_righteousfury.png │ │ ├── Spell_holy_sealoffury.png │ │ ├── Spell_holy_sealofmight.png │ │ ├── Spell_holy_sealofprotection.png │ │ ├── Spell_holy_sealofwisdom.png │ │ ├── Spell_holy_searinglight.png │ │ ├── Spell_holy_unyieldingfaith.png │ │ ├── Spell_holy_vindication.png │ │ ├── Spell_ice_lament.png │ │ ├── Spell_ice_magicdamage.png │ │ ├── Spell_lightning_lightningbolt01.png │ │ ├── Spell_magic_greaterblessingofkings.png │ │ ├── Spell_magic_lesserinvisibilty.png │ │ ├── Spell_magic_magearmor.png │ │ ├── Spell_nature_ancestralguardian.png │ │ ├── Spell_nature_astralrecalgroup.png │ │ ├── Spell_nature_bloodlust.png │ │ ├── Spell_nature_callstorm.png │ │ ├── Spell_nature_cyclone.png │ │ ├── Spell_nature_earthbindtotem.png │ │ ├── Spell_nature_enchantarmor.png │ │ ├── Spell_nature_eyeofthestorm.png │ │ ├── Spell_nature_faeriefire.png │ │ ├── Spell_nature_forceofnature.png │ │ ├── Spell_nature_healingtouch.png │ │ ├── Spell_nature_healingwavegreater.png │ │ ├── Spell_nature_healingwavelesser.png │ │ ├── Spell_nature_healingway.png │ │ ├── Spell_nature_insectswarm.png │ │ ├── Spell_nature_invisibility.png │ │ ├── Spell_nature_lightning.png │ │ ├── Spell_nature_lightningshield.png │ │ ├── Spell_nature_manaregentotem.png │ │ ├── Spell_nature_mirrorimage.png │ │ ├── Spell_nature_moonglow.png │ │ ├── Spell_nature_naturesblessing.png │ │ ├── Spell_nature_natureswrath.png │ │ ├── Spell_nature_nullward.png │ │ ├── Spell_nature_protectionformnature.png │ │ ├── Spell_nature_purge.png │ │ ├── Spell_nature_ravenform.png │ │ ├── Spell_nature_regeneration.png │ │ ├── Spell_nature_reincarnation.png │ │ ├── Spell_nature_rejuvenation.png │ │ ├── Spell_nature_removecurse.png │ │ ├── Spell_nature_resistmagic.png │ │ ├── Spell_nature_resistnature.png │ │ ├── Spell_nature_sentinal.png │ │ ├── Spell_nature_sleep.png │ │ ├── Spell_nature_spiritarmor.png │ │ ├── Spell_nature_spiritwolf.png │ │ ├── Spell_nature_starfall.png │ │ ├── Spell_nature_stoneclawtotem.png │ │ ├── Spell_nature_stoneskintotem.png │ │ ├── Spell_nature_stormreach.png │ │ ├── Spell_nature_stranglevines.png │ │ ├── Spell_nature_thorns.png │ │ ├── Spell_nature_thunderclap.png │ │ ├── Spell_nature_timestop.png │ │ ├── Spell_nature_tranquility.png │ │ ├── Spell_nature_undyingstrength.png │ │ ├── Spell_nature_unyeildingstamina.png │ │ ├── Spell_nature_windfury.png │ │ ├── Spell_nature_wispheal.png │ │ ├── Spell_nature_wispsplode.png │ │ ├── Spell_shadow_abominationexplosion.png │ │ ├── Spell_shadow_antishadow.png │ │ ├── Spell_shadow_blackplague.png │ │ ├── Spell_shadow_burningspirit.png │ │ ├── Spell_shadow_callofbone.png │ │ ├── Spell_shadow_charm.png │ │ ├── Spell_shadow_chilltouch.png │ │ ├── Spell_shadow_contagion.png │ │ ├── Spell_shadow_corpseexplode.png │ │ ├── Spell_shadow_curse.png │ │ ├── Spell_shadow_curseofachimonde.png │ │ ├── Spell_shadow_curseofmannoroth.png │ │ ├── Spell_shadow_curseofsargeras.png │ │ ├── Spell_shadow_darkritual.png │ │ ├── Spell_shadow_deathpact.png │ │ ├── Spell_shadow_deathscream.png │ │ ├── Spell_shadow_detectlesserinvisibility.png │ │ ├── Spell_shadow_enslavedemon.png │ │ ├── Spell_shadow_fingerofdeath.png │ │ ├── Spell_shadow_fumble.png │ │ ├── Spell_shadow_gathershadows.png │ │ ├── Spell_shadow_grimward.png │ │ ├── Spell_shadow_haunting.png │ │ ├── Spell_shadow_impphaseshift.png │ │ ├── Spell_shadow_lifedrain.png │ │ ├── Spell_shadow_lifedrain02.png │ │ ├── Spell_shadow_manaburn.png │ │ ├── Spell_shadow_metamorphosis.png │ │ ├── Spell_shadow_possession.png │ │ ├── Spell_shadow_psychicscream.png │ │ ├── Spell_shadow_requiem.png │ │ ├── Spell_shadow_ritualofsacrifice.png │ │ ├── Spell_shadow_scourgebuild.png │ │ ├── Spell_shadow_shadetruesight.png │ │ ├── Spell_shadow_shadowbolt.png │ │ ├── Spell_shadow_shadowpact.png │ │ ├── Spell_shadow_shadowward.png │ │ ├── Spell_shadow_shadowworddominate.png │ │ ├── Spell_shadow_shadowwordpain.png │ │ ├── Spell_shadow_siphonmana.png │ │ ├── Spell_shadow_summonimp.png │ │ ├── Spell_shadow_summonsuccubus.png │ │ ├── Spell_shadow_summonvoidwalker.png │ │ ├── Spell_shadow_teleport.png │ │ ├── Spell_shadow_twilight.png │ │ ├── Spell_shadow_unholyfrenzy.png │ │ ├── Spell_shadow_unholystrength.png │ │ ├── Spell_shadow_unsummonbuilding.png │ │ └── Spell_shadow_vampiricaura.png │ ├── talents │ │ ├── arrow-hook.png │ │ ├── arrow-horizontal-0.png │ │ ├── arrow-vertical-0.png │ │ ├── arrow-vertical-1.png │ │ └── arrow-vertical-2.png │ ├── warlock │ │ ├── warlock_curses.jpg │ │ ├── warlock_destruction.jpg │ │ └── warlock_summoning.jpg │ └── warrior │ │ ├── warrior_arms.jpg │ │ ├── warrior_arms_old.jpg │ │ ├── warrior_fury.jpg │ │ └── warrior_protection.jpg ├── AttackModeChoice.qml ├── BuffBox.qml ├── Buffs.qml ├── CharacterStats.qml ├── CharacterStatsMelee.qml ├── CharacterStatsRanged.qml ├── CharacterStatsSpell.qml ├── ClassChoice.qml ├── ClassChoiceBox.qml ├── ClickableImage.qml ├── Equipment.qml ├── EquipmentEnchant.qml ├── EquipmentFilters.qml ├── EquipmentSlotBox.qml ├── EquipmentSortingItem.qml ├── EquipmentSortingWeapon.qml ├── EquipmentStatFilterBox.qml ├── EquipmentTooltip.qml ├── EquipmentTooltipProjectile.qml ├── FactionChoice.qml ├── GradientButton.qml ├── GradientSelectedButton.qml ├── ItemEntry.qml ├── ItemEntryWeapon.qml ├── NavigationBar.qml ├── PartyMemberTemplates.qml ├── PartyMembers.qml ├── PercentBar.qml ├── QuickSwitchBar.qml ├── QuickSwitchBox.qml ├── RaceChoice.qml ├── RaceChoiceBox.qml ├── RaidSetup.qml ├── RandomAffixDelegate.qml ├── RandomAffixesList.qml ├── RectangleBorders.qml ├── RotationInformation.qml ├── RotationSpellConditions.qml ├── Rotations.qml ├── Settings.qml ├── SettingsCommon.qml ├── SettingsScaleFactors.qml ├── SettingsTextFieldEntry.qml ├── StaticTable.qml ├── StatisticEntry.qml ├── Statistics.qml ├── StatisticsBuffBreakdownSorting.qml ├── StatisticsEngineBreakdownSorting.qml ├── StatisticsEntryBuffBreakdown.qml ├── StatisticsEntryEngineBreakdown.qml ├── StatisticsEntryExecutorBreakdown.qml ├── StatisticsEntryExecutorList.qml ├── StatisticsEntryMeleeDamageAvoidanceBreakdown.qml ├── StatisticsEntryMeleeDamageBreakdown.qml ├── StatisticsEntryProcBreakdown.qml ├── StatisticsEntryResourceBreakdown.qml ├── StatisticsEntryScaleResult.qml ├── StatisticsEntryThreatBreakdown.qml ├── StatisticsExecutorBreakdownSorting.qml ├── StatisticsHeader.qml ├── StatisticsMeleeDamageAvoidanceBreakdownSorting.qml ├── StatisticsMeleeDamageBreakdownSorting.qml ├── StatisticsProcBreakdownSorting.qml ├── StatisticsResourceBreakdownSorting.qml ├── StatisticsScaleResultSorting.qml ├── StatisticsThreatBreakdownSorting.qml ├── TalentBox.qml ├── TalentCalculator.qml ├── TalentTree.qml ├── TextSmall.qml └── main.qml ├── Queue ├── Queue.cpp └── Queue.h ├── README.md ├── Raid ├── RaidControl.cpp ├── RaidControl.h └── template_characters.json ├── Resource ├── Energy.cpp ├── Energy.h ├── Focus.cpp ├── Focus.h ├── Mana.cpp ├── Mana.h ├── Rage.cpp ├── Rage.h ├── RegeneratingResource.cpp ├── RegeneratingResource.h └── Resource.h ├── Rotation ├── Condition.cpp ├── Condition.h ├── Conditions │ ├── ConditionBuffDuration.cpp │ ├── ConditionBuffDuration.h │ ├── ConditionBuffStacks.cpp │ ├── ConditionBuffStacks.h │ ├── ConditionResource.cpp │ ├── ConditionResource.h │ ├── ConditionSpell.cpp │ ├── ConditionSpell.h │ ├── ConditionVariableBuiltin.cpp │ └── ConditionVariableBuiltin.h ├── Rotation.cpp ├── Rotation.h ├── RotationExecutor.cpp ├── RotationExecutor.h ├── RotationFileReader.cpp ├── RotationFileReader.h └── Rotations │ ├── Druid │ ├── FeralPowershifting.xml │ ├── FeralTank.xml │ ├── Starfire │ └── Starfire.xml │ ├── Hunter │ └── Marksmanship.xml │ ├── Mage │ ├── Arcane.xml │ ├── Fire.xml │ └── Frost.xml │ ├── Paladin │ ├── SealOfCommand.xml │ └── SealOfTheCrusader.xml │ ├── Rogue │ ├── Combat.xml │ ├── CombatDagger.xml │ ├── Hemorrhage.xml │ ├── SealFateDagger.xml │ └── SealFateEA.xml │ ├── Shaman │ ├── Elemental.xml │ └── Stormstrike.xml │ ├── Warlock │ └── ShadowBolt.xml │ ├── Warrior │ ├── 2hFury.xml │ ├── Arms.xml │ ├── DWFury.xml │ ├── DWFuryConservative.xml │ ├── DWFuryHSFocus.xml │ └── Prot.xml │ └── rotation_paths.xml ├── Rulesets ├── RulesetControl.cpp ├── RulesetControl.h └── Rulesets.h ├── Spells ├── Buff.cpp ├── Buff.h ├── CastingTimeRequirer.cpp ├── CastingTimeRequirer.h ├── CooldownControl.cpp ├── CooldownControl.h ├── ExternalBuff.cpp ├── ExternalBuff.h ├── ItemModificationRequirer.cpp ├── ItemModificationRequirer.h ├── MagicSchools.h ├── PartyBuff.cpp ├── PartyBuff.h ├── Proc.cpp ├── Proc.h ├── ProcInfo.h ├── ProcPPM.cpp ├── ProcPPM.h ├── SelfBuff.cpp ├── SelfBuff.h ├── SetBonusRequirer.cpp ├── SetBonusRequirer.h ├── SharedBuff.cpp ├── SharedBuff.h ├── SharedDebuff.cpp ├── SharedDebuff.h ├── Spell.cpp ├── Spell.h ├── SpellPeriodic.cpp ├── SpellPeriodic.h ├── SpellRankGroup.cpp ├── SpellRankGroup.h ├── UniqueDebuff.cpp └── UniqueDebuff.h ├── Statistics ├── ClassStatistics.cpp ├── ClassStatistics.h ├── NumberCruncher.cpp ├── NumberCruncher.h ├── RaidMemberResult.h ├── StatisticsBuff.cpp ├── StatisticsBuff.h ├── StatisticsEngine.cpp ├── StatisticsEngine.h ├── StatisticsProc.cpp ├── StatisticsProc.h ├── StatisticsResource.cpp ├── StatisticsResource.h ├── StatisticsRotationExecutor.cpp ├── StatisticsRotationExecutor.h ├── StatisticsSpell.cpp └── StatisticsSpell.h ├── Talent ├── CharacterTalents.cpp ├── CharacterTalents.h ├── Talent.cpp ├── Talent.h ├── TalentRequirer.cpp ├── TalentRequirer.h ├── TalentStatIncrease.cpp ├── TalentStatIncrease.h ├── TalentTree.cpp └── TalentTree.h ├── Target ├── Target.cpp └── Target.h ├── Test ├── AttackTables │ ├── TestAttackTables.cpp │ └── TestAttackTables.h ├── Druid │ ├── Spells │ │ ├── TestBearForm.cpp │ │ ├── TestBearForm.h │ │ ├── TestCatForm.cpp │ │ ├── TestCatForm.h │ │ ├── TestEnrage.cpp │ │ ├── TestEnrage.h │ │ ├── TestFerociousBite.cpp │ │ ├── TestFerociousBite.h │ │ ├── TestMaul.cpp │ │ ├── TestMaul.h │ │ ├── TestMoonfire.cpp │ │ ├── TestMoonfire.h │ │ ├── TestMoonkinForm.cpp │ │ ├── TestMoonkinForm.h │ │ ├── TestShred.cpp │ │ ├── TestShred.h │ │ ├── TestStarfire.cpp │ │ ├── TestStarfire.h │ │ ├── TestSwipe.cpp │ │ ├── TestSwipe.h │ │ ├── TestWrath.cpp │ │ └── TestWrath.h │ ├── Talents │ │ ├── TestBalance.cpp │ │ ├── TestBalance.h │ │ ├── TestFeralCombat.cpp │ │ ├── TestFeralCombat.h │ │ ├── TestRestorationDruid.cpp │ │ └── TestRestorationDruid.h │ ├── TestDruid.cpp │ ├── TestDruid.h │ ├── TestSpellDruid.cpp │ └── TestSpellDruid.h ├── General │ ├── Procs │ │ ├── TestFelstrikerProc.cpp │ │ └── TestFelstrikerProc.h │ └── Spells │ │ ├── TestEssenceOfTheRed.cpp │ │ └── TestEssenceOfTheRed.h ├── Hunter │ ├── Spells │ │ ├── TestAimedShot.cpp │ │ ├── TestAimedShot.h │ │ ├── TestAutoShot.cpp │ │ ├── TestAutoShot.h │ │ ├── TestMultiShot.cpp │ │ └── TestMultiShot.h │ ├── Talents │ │ ├── TestBeastMastery.cpp │ │ ├── TestBeastMastery.h │ │ ├── TestHunterTalentStatIncrease.cpp │ │ ├── TestHunterTalentStatIncrease.h │ │ ├── TestMarksmanship.cpp │ │ ├── TestMarksmanship.h │ │ ├── TestSurvival.cpp │ │ └── TestSurvival.h │ ├── TestHunter.cpp │ ├── TestHunter.h │ ├── TestSpellHunter.cpp │ └── TestSpellHunter.h ├── Mage │ ├── Spells │ │ ├── TestArcaneMissiles.cpp │ │ ├── TestArcaneMissiles.h │ │ ├── TestEvocation.cpp │ │ ├── TestEvocation.h │ │ ├── TestFireball.cpp │ │ ├── TestFireball.h │ │ ├── TestFrostbolt.cpp │ │ ├── TestFrostbolt.h │ │ ├── TestMageArmor.cpp │ │ ├── TestMageArmor.h │ │ ├── TestScorch.cpp │ │ └── TestScorch.h │ ├── Talents │ │ ├── TestArcane.cpp │ │ ├── TestArcane.h │ │ ├── TestFire.cpp │ │ ├── TestFire.h │ │ ├── TestFrost.cpp │ │ ├── TestFrost.h │ │ ├── TestMageTalentStatIncrease.cpp │ │ └── TestMageTalentStatIncrease.h │ ├── TestMage.cpp │ ├── TestMage.h │ ├── TestSpellMage.cpp │ └── TestSpellMage.h ├── Paladin │ ├── Spells │ │ ├── TestConsecration.cpp │ │ ├── TestConsecration.h │ │ ├── TestJudgement.cpp │ │ ├── TestJudgement.h │ │ ├── TestMainhandAttackPaladin.cpp │ │ ├── TestMainhandAttackPaladin.h │ │ ├── TestSealOfCommand.cpp │ │ ├── TestSealOfCommand.h │ │ ├── TestSealOfTheCrusader.cpp │ │ └── TestSealOfTheCrusader.h │ ├── Talents │ │ ├── TestHolyPaladin.cpp │ │ ├── TestHolyPaladin.h │ │ ├── TestPaladinTalentStatIncrease.cpp │ │ ├── TestPaladinTalentStatIncrease.h │ │ ├── TestProtectionPaladin.cpp │ │ ├── TestProtectionPaladin.h │ │ ├── TestRetribution.cpp │ │ └── TestRetribution.h │ ├── TestPaladin.cpp │ ├── TestPaladin.h │ ├── TestSpellPaladin.cpp │ └── TestSpellPaladin.h ├── Rogue │ ├── Procs │ │ ├── TestRelentlessStrikes.cpp │ │ ├── TestRelentlessStrikes.h │ │ ├── TestSealFate.cpp │ │ └── TestSealFate.h │ ├── Spells │ │ ├── TestAdrenalineRush.cpp │ │ ├── TestAdrenalineRush.h │ │ ├── TestBackstab.cpp │ │ ├── TestBackstab.h │ │ ├── TestBladeFlurry.cpp │ │ ├── TestBladeFlurry.h │ │ ├── TestEviscerate.cpp │ │ ├── TestEviscerate.h │ │ ├── TestHemorrhage.cpp │ │ ├── TestHemorrhage.h │ │ ├── TestSinisterStrike.cpp │ │ ├── TestSinisterStrike.h │ │ ├── TestSliceAndDice.cpp │ │ └── TestSliceAndDice.h │ ├── Talents │ │ ├── TestAssassination.cpp │ │ ├── TestAssassination.h │ │ ├── TestCombat.cpp │ │ ├── TestCombat.h │ │ ├── TestSubtlety.cpp │ │ └── TestSubtlety.h │ ├── TestEnergy.cpp │ ├── TestEnergy.h │ ├── TestProcRogue.cpp │ ├── TestProcRogue.h │ ├── TestRogue.cpp │ ├── TestRogue.h │ ├── TestSpellRogue.cpp │ └── TestSpellRogue.h ├── Rotation │ ├── TestConditionResource.cpp │ ├── TestConditionResource.h │ ├── TestConditionVariableBuiltin.cpp │ ├── TestConditionVariableBuiltin.h │ ├── TestRotationFileReader.cpp │ └── TestRotationFileReader.h ├── Shaman │ ├── Spells │ │ ├── TestLightningBolt.cpp │ │ ├── TestLightningBolt.h │ │ ├── TestStormstrike.cpp │ │ └── TestStormstrike.h │ ├── Talents │ │ ├── TestElemental.cpp │ │ ├── TestElemental.h │ │ ├── TestEnhancement.cpp │ │ ├── TestEnhancement.h │ │ ├── TestRestorationShaman.cpp │ │ └── TestRestorationShaman.h │ ├── TestShaman.cpp │ ├── TestShaman.h │ ├── TestSpellShaman.cpp │ └── TestSpellShaman.h ├── Target │ ├── TestTarget.cpp │ └── TestTarget.h ├── Test.cpp ├── Test.h ├── TestBloodFury.cpp ├── TestBloodFury.h ├── TestBuff.cpp ├── TestBuff.h ├── TestCharacterStats.cpp ├── TestCharacterStats.h ├── TestCombatRoll.cpp ├── TestCombatRoll.h ├── TestMana.cpp ├── TestMana.h ├── TestMechanics.cpp ├── TestMechanics.h ├── TestObject.cpp ├── TestObject.h ├── TestProc.cpp ├── TestProc.h ├── TestSpell.cpp ├── TestSpell.h ├── TestSpellDamage.cpp ├── TestSpellDamage.h ├── TestStats.cpp ├── TestStats.h ├── TestTalentTree.cpp ├── TestTalentTree.h ├── TestUtils.h ├── Warlock │ ├── Spells │ │ ├── TestLifeTap.cpp │ │ ├── TestLifeTap.h │ │ ├── TestShadowBolt.cpp │ │ └── TestShadowBolt.h │ ├── Talents │ │ ├── TestAffliction.cpp │ │ ├── TestAffliction.h │ │ ├── TestDemonology.cpp │ │ ├── TestDemonology.h │ │ ├── TestDestruction.cpp │ │ └── TestDestruction.h │ ├── TestSpellWarlock.cpp │ ├── TestSpellWarlock.h │ ├── TestWarlock.cpp │ └── TestWarlock.h └── Warrior │ ├── Buffs │ ├── TestFlurryWarrior.cpp │ └── TestFlurryWarrior.h │ ├── Procs │ ├── TestSwordSpecialization.cpp │ ├── TestSwordSpecialization.h │ ├── TestUnbridledWrath.cpp │ └── TestUnbridledWrath.h │ ├── Spells │ ├── TestBattleShout.cpp │ ├── TestBattleShout.h │ ├── TestBerserkerStance.cpp │ ├── TestBerserkerStance.h │ ├── TestBloodrage.cpp │ ├── TestBloodrage.h │ ├── TestBloodthirst.cpp │ ├── TestBloodthirst.h │ ├── TestDeathWish.cpp │ ├── TestDeathWish.h │ ├── TestDeepWounds.cpp │ ├── TestDeepWounds.h │ ├── TestExecute.cpp │ ├── TestExecute.h │ ├── TestHeroicStrike.cpp │ ├── TestHeroicStrike.h │ ├── TestMainhandAttackWarrior.cpp │ ├── TestMainhandAttackWarrior.h │ ├── TestMortalStrike.cpp │ ├── TestMortalStrike.h │ ├── TestOffhandAttackWarrior.cpp │ ├── TestOffhandAttackWarrior.h │ ├── TestOverpower.cpp │ ├── TestOverpower.h │ ├── TestRecklessness.cpp │ ├── TestRecklessness.h │ ├── TestRend.cpp │ ├── TestRend.h │ ├── TestRevenge.cpp │ ├── TestRevenge.h │ ├── TestSlam.cpp │ ├── TestSlam.h │ ├── TestWhirlwind.cpp │ └── TestWhirlwind.h │ ├── Talents │ ├── TestArms.cpp │ ├── TestArms.h │ ├── TestDefiance.cpp │ ├── TestDefiance.h │ ├── TestFury.cpp │ ├── TestFury.h │ ├── TestTwoHandedWeaponSpecialization.cpp │ └── TestTwoHandedWeaponSpecialization.h │ ├── TestBuffWarrior.cpp │ ├── TestBuffWarrior.h │ ├── TestProcWarrior.cpp │ ├── TestProcWarrior.h │ ├── TestSpellWarrior.cpp │ ├── TestSpellWarrior.h │ ├── TestWarrior.cpp │ └── TestWarrior.h ├── Thread ├── SimulationRunner.cpp ├── SimulationRunner.h ├── SimulationThreadPool.cpp └── SimulationThreadPool.h ├── Utils ├── Check.h ├── CompareDouble.cpp └── CompareDouble.h ├── assets.qrc ├── main.cpp └── qml.qrc /.gitattributes: -------------------------------------------------------------------------------- 1 | *.png filter=lfs diff=lfs merge=lfs -text 2 | *.jpg filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /Character/Race/Race.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "Race.h" 3 | 4 | Race::~Race() = default; 5 | -------------------------------------------------------------------------------- /Class/Common/AttackMode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum AttackMode 4 | { 5 | MeleeAttack = 0, 6 | RangedAttack, 7 | MagicAttack 8 | }; 9 | -------------------------------------------------------------------------------- /GUI/Models/SortDirection.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class SortDirection : int 4 | { 5 | Forward, 6 | Reverse 7 | }; 8 | -------------------------------------------------------------------------------- /QML/Assets/Alliance_64.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69ae7cbda73149c412b09f539fb7cac6a38f9d7acb7e9dcdfc22d632113635cb 3 | size 9188 4 | -------------------------------------------------------------------------------- /QML/Assets/Horde_64.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea32ec7042fa2f5bda217aae171ac54cebabc385dd5f4558b57f39d912a2ea69 3 | size 4778 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_ambush.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60142d9aff99a953f4dc98cee617639b0c82323c55ea50cd4d476e78592f9930 3 | size 4883 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_backstab.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:614c33feee2df6622d7678cebe46427dcf041e16258f0614cf2d47acfc2c6727 3 | size 6572 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_bullrush.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf6ab7cca6bcfd6e2f3a75c4610b3deb28fcfe3215cd1bfcc755145bd5ac509d 3 | size 6609 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_criticalstrike.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eefe9dd774f49e4c111b814a7172b4abfd7595db65d5c4cc4758f5b29d7007a3 3 | size 6631 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_defend.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feba3a34ad616d51d5a7028c914fedeb8ff6a871f4a48d260360356a42bbab13 3 | size 4731 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_devour.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae5bf000f1d1e257be40e93f12ab1d951cff86def15254fd6006810de80dc4d5 3 | size 6798 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_bash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03aeece817d2196173addbf03db411b4911b4666b8b2c7c026e0ca23f38e7a6f 3 | size 5957 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_catform.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0813d6da9c27b08421710546fe42839e8c2b4fc3578f6719e9083d23c6a7a4a1 3 | size 3883 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_dash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfa98fb1f45321f8017f0a3a29acc08347bebf6179b07a11cf8f99c9697a7a9c 3 | size 4328 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_disembowel.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab42b9df370350d1a21ae1b7f29015658ce79d6136deb9769d9f1289a32fbd88 3 | size 4497 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_enrage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81ca73a88c84751bd22c0ea956462fc813c007da54ce60b58a8c1626e552764c 3 | size 7499 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_maul.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02882888298978512947fc7ffd5ea26498bc1167b6e6b02a547d79a4a9baeab5 3 | size 10102 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_rake.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d3b542a83effb7191734c8efc0d5990b062cf6dc9016e68853ade690bc09763 3 | size 5801 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_ravage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea30268eda6d92769d21bbbdba7852eb0298673e8886f42da9055b40ac9230da 3 | size 4402 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_druid_swipe.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:759e7db355d0191db90dc4278165d3cc70e9aca3da314c404a5d9833e6d1d3df 3 | size 9400 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_dualwield.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:249ba64fbb486ddb628eabbb8e7167ba42ab0163084d369f88f7853249b39e7f 3 | size 2797 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_ensnare.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2f1712b1d1ba89529c6b6a4a27a0b2bc8ce33a875ab7ce881697bc054bd6f24 3 | size 6651 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_eyeoftheowl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b13cf38f169dcd0a2fa9555cd8429d940cb1094660bb9bc27df8b33d19d80a7 3 | size 6430 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_fiegndead.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38c748215319add28e7b09e12a7512bd4f6cd28a9092f02c5240b765efc0cae6 3 | size 6453 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_ghoulfrenzy.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f9f4492b51e42683d6b70f67433027b6f4482ca51dfa58dbe254b74ed501189 3 | size 3559 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_golemstormbolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa6a9eee32f425da94ad77022fab698433c2d651c9e63b458c0f3b290c16e281 3 | size 6522 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_golemthunderclap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:362b74ddf2f58adfd463b269341fd7fc550e55180fd1e1526cdd8170efc5dc96 3 | size 4557 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_gouge.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22a834a43210e3ab521342fa64d5d0889c816658dbf274839e6f8a197b018c2f 3 | size 5496 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_hunter_mendpet.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5446c37fc368cd4c44d272ab8102e3a2d2beb7204d0334428776fd2bddd7c202 3 | size 5527 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_hunter_pet_bear.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd400c39c7f5e3f6ec209553487fcf1a3a018fda6eb28c81a4b4a4df3fabf8f2 3 | size 6718 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_hunter_pet_cat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:813bb2ae69f58158c9749179d0f4069089314b8199f3c6e1bea5a04cede14fce 3 | size 6497 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_hunter_pet_hyena.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c37b7e879b68cc67e185c530c29b98641cf92bafc361551427ff1c15604481a 3 | size 5979 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_hunter_quickshot.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b25380756d119b38684aab284e2366bea5003bb51e2d98d388fd0abd7c0bacf3 3 | size 6747 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_impalingbolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6201b63e430b541e0d3af063ca1a7f1093433b23123e50a25f8109e18bb0224 3 | size 6773 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_kick.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0514d4fcb430dcd328de3a5c9ceaae833b42e58d48d1facc489a98b7ecb3bee 3 | size 3350 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_marksmanship.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:442a42c3c29a34b65aac5a7171ecc364b56c966bdd1c1deb45bf3eb705d4815a 3 | size 10069 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_parry.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7666f55cf5c1041cb345123a0695ed4a370e77363c261c0edf8d138fbbde2af 3 | size 5652 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_piercedamage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b28617a18b30e160a78fb4779dd9a18e768e0cb762b87ba3804e01188bfee26 3 | size 4933 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_poisons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94123b5a8d53b9479ad02c25feb80e741a1e3a72ea760b74e91a0b43babfcf11 3 | size 3501 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_racial_avatar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62c2cedc6975a2f5649cab9e99271c13bce8142dcedcde987f5e040a42438e93 3 | size 7069 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_racial_bearform.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:154f38f5a27c3ca9ebd492e6c3acad31dbfd479b54711003abc326416919901d 3 | size 5597 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_racial_bloodrage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ba8fecc24d5c7327456e1ddf6e570366f6334de09c56647932cfbe8c7048a25 3 | size 3622 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_ambush.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b80a80b5eafbdc89b5b120d95e3876b589788e9e390c52c162cb1228df78bab7 3 | size 7495 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_eviscerate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85d5c648369eccce52a3ced7723110c7cf2548a8d0b7f38f6765ac983b605b0d 3 | size 5646 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_feigndeath.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81a4eacbb351cf5f8f040a0b1dbcdb9fee858f4cdbeb2b423ca07846864e0fa3 3 | size 6328 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_feint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:087cacb5547763a9c860f282d69c95295a3965d6e45d16265f3ff32f325afb12 3 | size 3658 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_kidneyshot.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f30da23526cddba33c81b27800977d24a9e04d40a9fa9bdd712e537a20011ed6 3 | size 5751 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_rupture.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a392b53f321008aa0311dcbf6f77dadfcce29168755d19bd15c407cbbdd3239d 3 | size 4705 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_slicedice.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec255583b07a11eec947c0f76404fd1e7d4b3139b10653e8fba4f42cbf3341e6 3 | size 4808 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_rogue_trip.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6d396e14403fbb5df3a51502d728681dcf99b8d6a43ebe22ca0209068834cec 3 | size 7096 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_sap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66d8023653bfc62c65302e6378ceb4a03de4f4d07437ef033bf9131e1d8374d2 3 | size 6125 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_shockwave.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e842ad5390884e788b5577ae72ac272154d11000b775aac909a49c75a49c585 3 | size 5893 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_stealth.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0d79abc69ea795db2efea120dfe74efa6c5541a76144468df8aa68c2a98c8a6 3 | size 4024 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_thunderbolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d16fa5eccb767becda28be82cbe9ff17bbf35d1c6389d7a840e7c374eb4ce181 3 | size 6360 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_townwatch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6070b5cccabd9a81181332a98bdef885eedb8af5c3d81eb69f06c702b699149 3 | size 3448 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_trueshot.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb0315f7aee4cb548b80db30cff00c148d2adf0ce4f9db5eb5d24eb10cd2775f 3 | size 5957 4 | -------------------------------------------------------------------------------- /QML/Assets/ability/Ability_whirlwind.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bf8e1cbb78ccd8ed52736d5dc33ffa5425ca0b19d1642881c20b03455dd9e37 3 | size 4422 4 | -------------------------------------------------------------------------------- /QML/Assets/char_slots.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50ce5ce2c64a9707397e59b1969f69ffe1b14ff81091988e2a8dd042ffdfb4ab 3 | size 138116 4 | -------------------------------------------------------------------------------- /QML/Assets/cross.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73f0dcf4f70d669a5e74d6f58c1f25afd8ae9c3eeee0537bafd0ba45725dd5bb 3 | size 399 4 | -------------------------------------------------------------------------------- /QML/Assets/druid/druid_balance.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22f6d70dbf743d9f15ff2fa8bd88201b01b6c16cb6c79265d037749923ff7d3c 3 | size 182122 4 | -------------------------------------------------------------------------------- /QML/Assets/druid/druid_feral.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ba7fd027d7f1a196db39d94bdf665cd3be0f3d6371ab6031a70c2ab794b0800 3 | size 144991 4 | -------------------------------------------------------------------------------- /QML/Assets/druid/druid_restoration.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebccfbb93d8bebb9390b4723e0c488031e545d08a42fb03e4cd89207a5c5061f 3 | size 164035 4 | -------------------------------------------------------------------------------- /QML/Assets/hunter/hunter_survival.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0925f90f4c543edc72a6318574d48afb8a96e569e22b106ce012c48df37e1c99 3 | size 183258 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Ability_rogue_rupture.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a392b53f321008aa0311dcbf6f77dadfcce29168755d19bd15c407cbbdd3239d 3 | size 4705 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ammo_arrow_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:110eab9ef0cfed5fcf09fbf8279e4297c7fffb56177586abc8ccda5b1e330bce 3 | size 6219 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ammo_arrow_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05c2f5c97dcae9ad65dadbcc394f59430e7cc0fc1dc6cc6558b79a07f4f70f63 3 | size 3908 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ammo_bullet_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d2f732bf11489cf6291f8fcbee8ba37b95a5c5850576eeb5aa2aba8d5411e82 3 | size 3343 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ammo_bullet_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50d8941dd0768fced6dfd03fbd1292b788a9072485bc1c5448218db314269f77 3 | size 3816 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ammo_bullet_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60fa7eb4c299be56741e3133d3d6040e2af248f593dd6d6f06f4106ef6b38252 3 | size 4639 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cd391717aaa09ee45e45aa62a7fa02d7b627838d73595fcdb7e82a0b5e95da1 3 | size 3345 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:330f0c9cf2cd217686280422e9d0546ca4193822df08a1aa8517d475c6b47805 3 | size 6540 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24f0cb47d102183dfdd78664237874bed0a8227f070a8b8e05e2b943d014fa2d 3 | size 5634 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4c2f2a9cba4385247ee83838ec7f65bcf097b4429a61e3f530cf1d01c050067 3 | size 3165 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea345af767c69756dcc2afb740cf1d52266f9e3d3334185a40ba009f7db77287 3 | size 6005 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a37203712893f80bd963137ae7c7be6cf11ca520eecff0970cd4d5564bbafefc 3 | size 5799 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c561b1ba65132340b0b5a9e1258467717c15c9ba9d86b1a1670e701870232d74 3 | size 3812 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4042d00f7f18c3f57d0c759bc819ca8d135890a5476730c340d30aa9583c7ac 3 | size 4290 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59950ff1d8b7b88cede06c0bc06ac5e54830290d5550c675152342d64db585af 3 | size 4866 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e1630b6f5f48deedce997b8436607a7337927e141bd361eb0fe389eda911ca3 3 | size 6020 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a6a5ccdb345083c9becf6442f0249471f7df0a2afc19a8d45e2a79d80f873cf 3 | size 4397 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c2f7961871ece0e7ba1c85c30a0a862c3adbb8c1d324501377241638b099c5a 3 | size 4198 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61b7ad0676ce1c11bbd78808a2ce5815bdf067c6c1fbba66e0dcb8a49d3b5ffa 3 | size 4051 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd6cc675b575aecd44ef839b838ff268b888d53db0211eb4875e4f1de8155095 3 | size 4251 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_26.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:773650955b6c5fd1f632a127aa0b826428cfc444516f251b164aab1b9703127d 3 | size 4174 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_axe_35.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4d2ab0ff80037828e5bf94d7f9dbfd5582bc2424262aaee58b050ff28d387b5 3 | size 3952 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_banner_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b98a7722f3afd82a22f2a8521407b82243931e3a4e379e85befcb882bb86091e 3 | size 6700 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_battery_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb88b5efbe348bd9241f2d084750260c7a12002544edd19442561beb8958c299 3 | size 5728 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e07d4ba1c8feca338f11692f6f2a30608dd95e3e40d6a9e25d40e7f53a57eb78 3 | size 3882 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5df61b43d40441ab788dcc7e495c5772d3365b23b06fbab51e9c6ab8bcffa30b 3 | size 3791 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79ad908360c3957a70fb84929c82e17a4ba8b27b4500eee25bbcb1cca54139ad 3 | size 5828 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8836c4d3ff550b2973dbc2cdd0f1ff16f19b3300b77e45d725371858ba2089cb 3 | size 4569 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:288155ea8db7befd24409931dbf5b15f69284ffa39949e49ffb05ecfb1a2210d 3 | size 4037 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52ef419879a078c4e0c54ef49e16b524d35abe698567a85b58235f79ea8008e2 3 | size 6214 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d2296d980b7b59a2236c088931a44343b71ac8f086bf5565e140f547897a2cf 3 | size 3306 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4766ee182694d09ee877c2968d62017bd96cdff34af775e7500c462f3a5e24c 3 | size 6507 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e7dd697f5b38b764b8b453fb77f244c098c0ca341ec65d8f212d476f519a7f5 3 | size 5270 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5858a7f75c923cb72e5de47e6969f1ce2d78e7f28abc5920b277861417aa04c4 3 | size 6434 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa68d4d391f9367b38cd52310310b27c1c898c86b3ca15cd201f89e25677f47c 3 | size 4132 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfc3eec9433e947f4a6d4b8befbbcdf08cf2deea060eb9e07bdabe7cd096bc1f 3 | size 6765 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2bd2519460870d4415773e13d4b48dbe022bcb9ea5ebefc5e4fbfaeec258f91 3 | size 6315 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6211d19fa8441d91414c7cfafbf60cf61cb96918fe98e3e0b3488edd12619832 3 | size 6438 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a82b21b42b1c89ea0c7b782e036abfd616af579ab103fdda9d964b4c849067d8 3 | size 6629 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3329cae2ebf1a6589e1a0d8f5d054ef5f2fc715b5563ad27513c352fbf216170 3 | size 3893 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2c5377c74309eaa777d09c4e7271075cd49a7068c53f4ccefe58f2e8d6ab4da 3 | size 3000 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:453e72e126fe0f6823940a1121818c048d46a064f7947155fcd691d5dec6e412 3 | size 5690 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:604245f82da913301fba928238c7cc63a9ca63b3e22fe748f62b3a5552dc545b 3 | size 3940 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f38d522e9e35ac139eba0bafab017ec2cbf03c93e1e2577f05855d0b2590d008 3 | size 5965 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c58999090500993062c4399a7200dcb5a323705a719c88b17b5972d8dee78e88 3 | size 4189 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3f3cbb3a20c41706e60a0228f2e7ec9ff1b6dfdac28505a01967cc00596ef80 3 | size 3966 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c8e0ffe7b2a897c457aa98c0ace9380f9ab9f5d9ed2c729acd1e7777816cdb7 3 | size 5461 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_26.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:900ce79c29f0f0693f0fcaab8f5160975b0579b78a7a7a8f3e98be15c8ed6b65 3 | size 5532 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63e60ed210e363741ba1c5c0db85cde0c6cf73d7b46635f27d10ec86b0239b59 3 | size 5855 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5859faff53b734e9c1d2c9035c95a989d40dc753a79b22557f574eec3e648033 3 | size 4035 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8f0657e32b0d04cb9ea35fdbf3a4b0aa191da47be7dab86ec025ffa946a110a 3 | size 3502 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77a8ec110a0b8495b7464d76639afb4df4d19260d5b3cd188237eae17f98c0a5 3 | size 5647 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_31.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d73d9ff946d018d08ee042e250a8a699a7b43cf796268773f9a4f37d5c363874 3 | size 5423 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:658a39bedef8436a720258f14e306dee136bbe55bf4f4c8c76838bc95b50dd45 3 | size 4017 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_33.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f5fdd03e40ad241992da85228ee0d090c10f94c22410a2429db54a6a5d267ee 3 | size 7045 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_belt_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a7b9ce33a1996a7a831a20e470e0dd15cf4e99bcaa80e0282ac3daade023349 3 | size 6635 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9e2070a0d5f25acca05399a83f9541de0bb6a78781ff6cdf44a5746a702e633 3 | size 5858 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a86ad2b5a202648f14627262a3854b532cdd3a836244b47553bb063ac942d59c 3 | size 3266 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b93843173df6db12f62ab07f8fe74d45ff7ba66f847ab11de0939e7e124eead 3 | size 3283 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2a585d7afa372c2696cab8b6cbb6b867328e4ee5dede7838f28cb07cf02219b 3 | size 3718 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b30d7b11c9fd0b0a839725a119f2274a0ba5b044cfa6ba8014ff0c7f2dbda376 3 | size 3215 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13a0b5eeac8a05e74706d0a82631eff183f49b7258a0ef09c6819e1ca7c625da 3 | size 4769 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ae068d2d50618ebe8f12100fbdea16c2444b2149411453c871782e5e8e78eb2 3 | size 5478 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50b9e65a5d5458b0252f8f27d478f65bd8373776b9e21f83fbafbcfa8928a977 3 | size 3860 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:661b1d41e3cde239c804ebeb93fc6fcb11e8d8dffc7b26293131c82fc2e71525 3 | size 4213 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f81346f06362f8b61e30173b380eb47bbfbc739079c9a74e4e8174d5c357b068 3 | size 5909 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8766d2a2925035cb4997f8a9a2e7c519d565b7d748505874db4181b51b355edb 3 | size 4437 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba4b7cef53584d1530e8923e35cd5651ee7414633e49d0ca246d076d26bc722d 3 | size 4227 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a58ffbe8be96c531058112a4e7ecc629fb38386eba17cde8ea4ae0e0bbb87657 3 | size 4614 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30aa1771789811e7d28b07ccd93a17b537cacc8028533e3d89adeaf9be625161 3 | size 6964 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_chain_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8a6d26cb91cae0d97cd72510bf56ac03d06ec177d6a3e3b47a03b19f1b8b30c 3 | size 4446 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:979736533c63fb208d69721b5a808b5b0c66426f081978b173740bbe82779a7d 3 | size 3194 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1baaeed586d3e6d4b104f3021059e078af6894e1e409e98225352d2fcb3eda6 3 | size 4266 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb403915277c58093ecb802fce2fbaf57526bf96592fea52bea0bd3835311613 3 | size 3265 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e88a54b94c604abe2f73a52bde15913d64f7a7f09eab9058903e1ba81cb2ac6c 3 | size 3310 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:981989b1120fc3c2b3dd145932eca55013703d945b5e2acd8d3341ab2dad5e11 3 | size 3337 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3f6bb0303d22b4820c550096b6c4885995d7d39d4939a74005bb9ef18723df7 3 | size 4896 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:529ea7f292e11823fb39f3aaa327e773a32dcae2965aa4eceb9b91f974abbb4a 3 | size 5487 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_cloth_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8003ddbfb2fd427f968ec83218452392d1f7369c18fb1005769c682589d27b80 3 | size 5343 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_fabric_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b94f9b67db825ff08fbc153c66f943e8d5caf8013c9643e7053193395319d1c5 3 | size 3718 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:540290c6cd1606b609186bc9dabb49a9fc09693a09e83f5e630bb351cd628e89 3 | size 5670 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8ff49a7709db7ed48e8c7c8b23c2b80937a36f7aa4fb65a60ca74ba1bf3a205 3 | size 5797 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b6b60a52c6f3e909df55dcbac17ed6c2c2bd2c5b8904cd84ef7ae8290c386bf 3 | size 3536 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fd4f1def6b88ff8b0d5a7965b105d7695e626b9cc170089209320c88f542b8e 3 | size 7509 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac94b5ee00454b633f55dbfb7820bb2ef618786508b1c2e3d99799364e976a5 3 | size 3801 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31fe46d6f6130e8cac0e538fb4ce7f4fcf06f51dfeed954b85ccf94ebcb7a08d 3 | size 6609 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a0d03bde008b1c2630656c627e220c1d4827dd5523f88a7f25c8be5515c05c1 3 | size 4111 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_plate_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecb6c734bec299e75013ed54f4ad25416408fa172b9a9757999e58e08474f687 3 | size 6888 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_boots_wolf.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68323bf6cb22cddf612d775cc544f58a154c6106c0f829ba141bff82cb63f749 3 | size 3537 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4084f9dd79d74eba9ec766abdf10599471fa1c8c934e64dcc89a8b18915a773 3 | size 3082 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:220efbe27a459eee7069dcc0dbec12738b4709c35001d70ec5bdd38be1fc49f0 3 | size 2797 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:290afab71663849fa6dc6dd0a3d561b107d2ee5fab3b7a62cde2ddb880c2cc33 3 | size 5141 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24c18f1d2efd58cd79fee8789e85251d56a9a7c6c17b2a7f487ac1da15a776dc 3 | size 4670 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:685aac517ef4a195f31c32e1f859f2fdb1386c4ac6902ad69a93ca9ad9caa517 3 | size 2790 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:301e21813dcd17d09b780ed770ef1e5dae06d254788cdb65525e5505a55f6234 3 | size 3909 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8148df78d18ca74395ba46bea500cfd3d7674f16710cf7640ff0a113cfa6fa0 3 | size 3770 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9872c6adea652dc6399b53341784aa8dae2a89ef1ee519a87e6ee23dd6e799d1 3 | size 2928 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a096f8a3c4421634fff1757668a5acac336d8fb4fcc42d72fbaba13779a1cdb3 3 | size 5254 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47aa2db16cf8ebc78c3e868acee0d28db33245f24bdb2cc497e8e5ec6fa86398 3 | size 4783 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8856f45fcffa49657f940ec5c1317fc3cd18be5db969a015a8fcae436820c9a 3 | size 4611 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22243893a08b641f8e8897d6ab57d227de3a2c5fd0a9539d41f5931245af6c4d 3 | size 4946 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:068fd9995982963ef1735f6d1f7d3410e7645587189437f94427336c66a3d7af 3 | size 5173 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1301a9adad89abf3f6d044acfddedd9925314396ada344e1ab09712d9c05679 3 | size 3842 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_bracer_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04e00ba51ce7199c2c9181ff36c6a25e8a45f11ec7a070a37893c510f32a86c3 3 | size 3687 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c911592ac333f04eeeccd98a1c75bbd95f050f62e84d659713e98c8529b1f78 3 | size 4070 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f443d5f57a824c0e9d5352254720d1e4f2c8ea245deaa8ac0fa7876e118aa9bf 3 | size 5781 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d37d2d28f572c1cade96b0bb76bb62fdb4ddacca48d130c9d5802e29b9cf77da 3 | size 4058 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdff29de8d206476b2033f470b05a730aef20bce5d4e79c220b195439d28b671 3 | size 5716 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6f3bcd119cb19e9904d66b45d82951000b67bba0f7192bceee843bffc80cf51 3 | size 3262 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfcf95381a0c9a3cfe9509e5c538578d9529065c105e02d645dcbf71cfc57cb2 3 | size 5781 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a824a9e8d49af331bed32179bf21acde0a4f3e39dd904346f7db98af412c36e3 3 | size 3695 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:115078ac99a306312121fb709d0cc4cbaf5a930314989bfe2aeb030064ff3e88 3 | size 3487 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:873d1432302062c0cf1f32b681493c0144e2f61f03e8ff6011f1b45949b13b9e 3 | size 6040 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_chain_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98320581f8df2754d81b20c9dc42d274115230b455c58d73308c74fec8cbc4e6 3 | size 3705 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dff504d5a3b9da5ff7f0d8156249b90347ed51e06e4046ca664342b1cf9bcef2 3 | size 3917 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44da7b841ab63c4e01c5725335526cd28cef938c0d44efdebf933b03ce186618 3 | size 5098 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:273eb63adff4653a41a3b5ccc7fc7e433f4d78c860ccce07f976c471b8c753fa 3 | size 5883 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d80d11062dc46028e5282987f4a14537da11961b354c27b9a7d901a1e137713 3 | size 5917 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37159d25609df86d2f2543ac0fe57919aaae2dd1cbf3c160969e0bea4cbb09ba 3 | size 6117 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcf704175e2fbb78827673d0bb4bf0a4cb1049536b4a4cb79540a0c5114ce6c6 3 | size 4206 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ff9bd167779b065d6331223329ce7c2b8714a49021b8f886b97728fc9c9f795 3 | size 5637 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f502b30d50fa17cd5505436c633e9582d3585ede173b626e44122f8377fd678f 3 | size 4453 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e85aa9a3d7bed81417dc8ced6352351c62cb5347614fe5b00444b3051525fb4c 3 | size 4115 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d412f331ed6acfda6b20841dbbb6e7727618eb867f8016898d794e6adaaeb03 3 | size 4507 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74444151e351ecf0bb1f4ba737c7556893dd71a5fe5dbbaee7f2b4a530ea70b0 3 | size 4483 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:533fa898447d71fab39d3b2cbbb57b4590615b4cb5847d301c190b63163c1824 3 | size 5070 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9477ec800a0efd7d10d3dcec9bed6e711095fe7f16d0cff65c258d0beeb5e306 3 | size 3759 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e62cb54b42563658b21b59bd0992f5dce294841632720c453ad402c08ec245cd 3 | size 5394 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffdf6aded97b004f11147dbcc36be009f7f8cbd83ea51c8d6d472f2aa5c92051 3 | size 5362 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:023908bcff242ba7c85bb00001d1085d4814a137ad36f6ed6a9e9f5084aa8ed9 3 | size 3870 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_26.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31099e81ffceb9e9fcd1b71a023ce5eebfb0817ae8e34b4358012d78a1209dee 3 | size 5627 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:baef82dd77f57a5fb4d4bf022fedd5f04e5262af7ef5f3c35c1c8c218eb06ef4 3 | size 5742 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2905df5ded959546c7c35bd31f74fa1a29543aaa13a40b924f903c9615537ea9 3 | size 5130 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_31.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0129409110e2ab37ac25f6e1f8c21562da59d4bd70db403243e98e3d214e3027 3 | size 3937 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_38.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12c6300b958a9e09ff8270b6b0382d33d7a0558ab208dc724742639686424659 3 | size 3873 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_39.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16385f6eded647fb756983a8a3be4c7ed6c35861db2f880c80c0cc5a39df1cbe 3 | size 4958 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_43.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65447dade43b8c2ea68be373cc243e3337c51d9347184e26c02d6990a66df1c3 3 | size 4006 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_45.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:803aeec628ff0235a1e3d3e9ab2f59c7a71cbcda2f29c242b8839046f6c6e9f0 3 | size 3796 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_46.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:873bc69e3f2166229bbceaed1f719c7d337482318424f6d98f08a7f6cf6e51d8 3 | size 5031 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_47.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fb3eebf36a901d03b6d0d4b5577dfbaf096fb5d8ba2c0d47dcbc8c03ee53fd8 3 | size 2469 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_48.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86a7f6f9b6f7971a35b03241d30b0f5d53ed5bdd8ab25ade5a20ce444450e6bd 3 | size 4569 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_49.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bad13b364d24f1e5a5acb3bde45ea66503307faacf93e2445cf1e5009f696484 3 | size 5489 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_50.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4c99be09fd8f60eece99e151bc93e40d1bfae038a01d6d2fbcd1ccd96e78344 3 | size 5492 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_cloth_51.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d617289116c9a22a7189388c17b6e1823b25c11e436fbf6fba87cdc906ede34 3 | size 5304 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5db3336cd8b5e1ee2e9e55357db601617f05b1aacfd04b0479f8929a69498c37 3 | size 4010 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1045dd1e70a638e7fc1a66531186500084b912f147a8712526a89e63ae3edfd6 3 | size 5677 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6b2354731684035499a317e26b3ecba3b7fb25829348fe488538b7c51dc7b1e 3 | size 3663 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58fa2e4ec60dc3fc155b7e81fa883d39959c7a9015b355a6909e2ac57e86c4bf 3 | size 4800 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de22d2fc71313c2f8928c356d5dd8766eead8254cd93658b08065bfd1a0a820f 3 | size 3573 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c15d7e806b841bf6c09fd6ca25dd6e01b2b0ed8b545c33ee9aa0c87a7ccb37e9 3 | size 3992 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_leather_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a11489a9c5cb129f404e3d05b7d4420b4553f7d65743d14d53b7b4654878f6d 3 | size 3896 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f2e319992a2ae449626506bfa926350d40705f6c7fd926412047fda61ad61d6 3 | size 6351 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3df1dc5902bfdbc069b45a390e11991a64cc47b592ffb197214740576bf79185 3 | size 5043 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5569b835b670d388c283e4a788f40327beceb4fd52df07f6a60a5c2d9134ab9b 3 | size 6020 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48e6b3d39e32436edd89be9ddf8e81dd363fce5fe624afec673f4e30fd56b114 3 | size 4222 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d204c3808ae664bacb3385fb619bd9420025077ff415a12c5c98218b1ac57869 3 | size 3920 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50a5885a8f99098125a523ef2e1a8e05f9bd2c4567e8a09057c55d667260db22 3 | size 3991 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4102dd220cec09c59aeb27b1bbc26db126137e7e9eae8743594bf7c03524d6a4 3 | size 5774 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f028cff6a5f86ff7b6435f0ed940b44c62e33e93325db3c19884a5184a064ea 3 | size 5290 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_chest_plate16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b99b6b9e5ca3caca62281e4a35072a00d183a32dd75fd8169f63539c89c6266 3 | size 4832 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_crown_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddbe07b978bc585eac9c79585ab1867cd29fb31ecb0568617fed0d478bec77bf 3 | size 5244 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_crown_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b3b779ba15cb0d1cf074212d80c91ded3a6659a79e414e813ade065ff7bf80 3 | size 5673 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_drink_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:505c6623d27dd722b62829daae3a1f0c7c6aabe1cf4a06ea8dc2b79bdb68349a 3 | size 2748 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_drink_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0a93034b1873b84bd053e7d6f65f3f780dd638a6b1c1e64cbfab8c7a1fef7d1 3 | size 3086 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14682bfadcc1f49fb54d22369bd6971f5271d5855c2586a4d79a3ca452f6b61d 3 | size 6702 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34ac795ff9dbfc4e2bda36b41fa49bf10d5fb6d75317a2b1fd69c90ba9223b99 3 | size 6590 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c49af4a2dc531d0e2258b63a5c575b62b60fa7c4fa4d530f8257a36880cd837e 3 | size 3690 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3db3e38e6f140ed9e28b141f06327ac99d3f7865510b52283cf95dc00bf0a189 3 | size 5933 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5ef58ac82abc1ae1d29cfd2dacb9880be018b7ff1c84737dffb3b3ab63c7bb5 3 | size 6670 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27a5a3320908bf5f6ddf6c2114689649eef4f1cc17b560efdf595f62f57c29d0 3 | size 3452 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d552a8d63c76857990003439e6b3fedad95ac05451eb695e06c5e91b02b83101 3 | size 6434 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebe5b093a74bf3537ef7c260b582458981c0a765ac7da62fdc763b25d8a184f4 3 | size 4189 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e13d2afa4a50f692fe2d22e7188db4b9a7c82619f161caf42160f1ca81e00d71 3 | size 6100 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9287ae11e3d3f46b2173e82e48b2cd5c387aa7733ad2e607558a167be9a75c35 3 | size 6068 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5830a449165d118429e79cb40811bad9cd00aa1f7e46b5ea1d810c4072c0644e 3 | size 2903 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15c72ca03de982cc51658540878c226d30870e60fb342255518a27553099d14d 3 | size 5323 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d8ca20150a93a7abffe08b7c4c2b3778bb9c1142017e8240b8199cef91e860c 3 | size 5984 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c8ef8a43d03425e752ec20c18240ce23a3f10288cc41a4ffb7983e861668335 3 | size 4637 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98c173f6a51c758683974539749faf7b46f88cf0041a8b6a4591f880b8d37e7f 3 | size 3788 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5051cfed4a53618f0ff4239244ef33a4fae4c43e5bbf6de747b700b29f45f8fb 3 | size 6188 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d281c649e35016f236eb136c195896daa1164804d4b26ebf8e9b7d4878c22c1 3 | size 3559 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7d7bc31c167a4096555e3fe9a5ebdbb64f1e85a3dabca50ba71d3d3847673c8 3 | size 9235 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5af5f1a2682fa9a6d5f464c42dbfd871f212c6dc81861e55cb2d41f91fbb69af 3 | size 5651 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_26.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6893b79e4143ff0a4d94b18003f816b26afdec1fd01896bdcb3a9df2a1b0defc 3 | size 4548 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f28246454569d0508c78da143650e84f021705d7666988ccdac37bd8a3712d83 3 | size 2866 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4daaffad09a91346da6aa01ea189c9df64d7b85d7d6a54be64dc8d6f1405521e 3 | size 5328 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57d39ed4d6ead49a2f71d3331927144aba524789e01d540f8c81adadcaaab756 3 | size 5226 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81f8c0bb94d2305a1c60982c3600a2a5428d0d8fb2511dc9bef4d7647bab13e0 3 | size 4424 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gauntlets_31.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98f1874dbb32c5fa2605e0f4157d1483c0c6174490ef4f896d1d054c23dab47f 3 | size 5959 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_gizmo_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29d49ea000f63eceeb24e40fb41672aff417019508247f804e0ad53e91e2aa26 3 | size 3839 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19a87ab526ad73c30c3f4522b01fe292bb2ed2031bfdd0cbf8cb5f01e46abcbb 3 | size 4960 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:733a2c7561f2419d72e31a5d13b87e4d0784e47123a48bba73fc3e00974fd680 3 | size 5414 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5905a6f6108c4a91da0dd26c7f469de54c2b8b023efbbd1d904b388bc09328d 3 | size 4904 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f7d8d5e626ceeacd68e7716206eeb79476b97c0af3c921302b099d6678451ed 3 | size 5482 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2fcec8a0d607172218628fff74a2f163814e8dd835bf2fa4db7f7feb6a3f595 3 | size 3240 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fd71fa748ac4aa4e976801805c76c8de551f3009cb73a1234f5511751a19336 3 | size 3636 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e7334febf35883b4f8686a979d27b2b102ec26a63a37f0f28b9a7089b8512b4 3 | size 5211 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bbdfca433834dedcc0f567da8ed19017ac009496027a283bd519d82952f0183 3 | size 3371 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20898f8592d044f8430d12162f8dd332665725490476e9fe80520be5655d3131 3 | size 6216 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5277ad74eb497dc9cf3eea86573994f2a127bf01d90e359d6d514f4100487598 3 | size 4681 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdbc7c822152fba4cce8ccfbdcb1aab4057cbc03abc27bab281b792fe580857a 3 | size 4299 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15ad837388044f018372db4a3ec2a3a56863e94385e8dae19617308973c0c898 3 | size 3980 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_hammer_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eba70141fd32832ea73a4b0f772a034597a4189e5441b84251a90683cb82dbf 3 | size 2632 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:215e113c835c75e510d72e35c8b8daead1532e22e93533fad6779e689649f154 3 | size 3828 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:155f00e3a79284b5d22773aa43a287a9f91f7e7c21326682938282ae42e5ecd5 3 | size 5163 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61c12eaa670442624b8187133b8aa3b8c112dc69e42ec0fda9f9d70c4830e2e5 3 | size 3224 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8f67dafcce70575341ff84f8a627fe925c39a6f6bb12b71b0ca3de81b538e15 3 | size 5188 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ab308e0d446055501077a0e5d4071e47edf8d5bf6a19be8869a2217214e9bb4 3 | size 6376 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c84b75a765a98ca296bcf08e9a6f7c4a3648dd7df7ceaf75db1b633f0d367ed2 3 | size 5688 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ec3e21ba54dbbc6d0e5ba7dbc1aff99ea2f16951d8b0bfca861962440f17ec9 3 | size 5737 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1775c4bcc177b240ff7fa19ea5949fa11be374ce9c018b62d41d87424ec00ea2 3 | size 3588 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17713dc9496cac1a9d9ab2c538b09a298fe83bda6556adb9384394af6c59d194 3 | size 3862 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a87ff8e962f58c34ed90beb6a0c0c8eb1a8270bb88f4f2c1ca44a808125f1d2 3 | size 3521 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88281743e02ae8eda3badc46ff609530b68ad800a3d56ce66f940b35fc70c8c2 3 | size 3983 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53579de9fa2f3ad1b13a2187fe4d2e28596c6cd016764492754ebc2e8f6571e6 3 | size 4304 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e881fb08aa119c2f00caccb1d7ed5a82674acf28f851e45d708c880a980c686 3 | size 2885 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05a1b4bbf620cb9754c8345e5cc1dc7b9598b59c962154a9615cc4089b73c655 3 | size 5790 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:700b50b54169988a8c5c6f4a92caf96acb94363c1af51c484429e3883982abb3 3 | size 6241 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:baacfd4ab01d4a3ad468c4b7ada7f5efc52a52f8e116db574e0bb5073a6e7b19 3 | size 5537 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8e89fff551be6de482771607f3a2b939b4d560e716c85006da598713a7b8d9f 3 | size 5791 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e731e833bd8ba13f097d28dba9c21d84d5790245c4ea306ac777cb2aa78de3e9 3 | size 3671 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12a4d1665268a68f20a0a4b260f1ebdac195b0aec9b86e67648e365f5295a8f9 3 | size 5314 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e5bd6ece8a34c381d2f0b7e93f734a82081ff3244ef27571e2c346f63da8a59 3 | size 3225 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38bfbcfbe2d2b73a4a88d3c2fe54e77ca47d6fc632598668d616bf1576394d88 3 | size 2976 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44b1af0411995ae8f3a1c623fa2a2a3c3a21c94d276bc1e214a9b84ed2036134 3 | size 3500 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d14bf0e49d15c3f645faec0fdc373fcae8135b0715ee93abd1ae68bbd33906ce 3 | size 4441 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_36.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:264a33389591f8add4ee7d3b5d6b4069b5a8f7872c49c2b5e996f4c134d19d75 3 | size 4715 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_38.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d872f94071c2ae3507adf037cf3de164e5d61a9729297b48f7bf006e8c970d8c 3 | size 2876 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_39.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5952c35f45c83aa022e77ddab30792642b51dd81de6e3d6d4a392921ae368d7d 3 | size 4639 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_41.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79d80dbb7bf8666f3a0cf09940396ca45e01624b5a9dbbaa678feaebaa6156b3 3 | size 3563 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_44.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c80d92e96c23a0ecc9acc5ef7fa3a6b914f6328e5b00992fcfd33dd7bd692e62 3 | size 3760 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_46.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca592b94780b8ceec87512ab8285e3106870f1a51d3f1d648914b12a668c8579 3 | size 4021 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_47.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:391819672d6b110ea062bd370a823772652a5b74b6b37acb82ed28118abaca1f 3 | size 3211 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_50.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7fdef75029de3a4c7a9b6e7f065c410c348f61b3dcee328597742a74c43c147 3 | size 3176 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_51.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5dad318e558b95c3df446bc45c148731414f8c1a5f046ff309c756507a87c90 3 | size 4543 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_52.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5667ba4c50f6022408be2b676b10dc79d091ec2142458e3f39d765a9fd75a61a 3 | size 2916 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_53.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3985436dfb1223b3e68ecf5c7f4da4ab4bb22a26f731b9606d3f534a201a30a5 3 | size 2759 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_58.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c20e0fad422723156fd77c697291686e6a9b15d3c9d04f01a733efe5b57916c7 3 | size 4874 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_59.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc5c664cf5e8a963349028ab07080e9da90a3812911a58fcd0a8d9ed22db631a 3 | size 3900 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_61.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:103df4140fce9a60b638aae176aa2645c08845b3f63381a1585776ae7d5d9d44 3 | size 3620 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_62.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b214cc175f8aa288eea19364f412a76e2a2ba764387f38acef42f3cb445a63fb 3 | size 5049 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_63.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b699dfa2ca9652be2ce80c71da70646b2d15f9aacc6bcf6e72d2cc3e88245e55 3 | size 5066 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_70.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90c0a5eadec522fd5e4583f37e32ce09aacea07f5cc2c230df8d9aceeba1ce58 3 | size 6673 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_71.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3d77ed992f512351a728f6b4830f335b7769c39afb2b28ff1bbcd31a15069ec 3 | size 6181 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_72.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3705f586fa9fa1a3a4f0c0eec5e818749ca9935a80dfe5651d756dc5eedfacb 3 | size 6370 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_helmet_73.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b390bddb93fce110543fea07761a70e7c825e564b71f818b48c7d4ce29a8703d 3 | size 5061 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_amulet_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7aace585b313916bb2755ef147f54443ad4955ea6a4ffc9cb2d13ce319e6fa95 3 | size 3939 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_amulet_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8770c7b9bae1033d8c759be6bcef3536c2d63592fa7903ee9b926432b4003929 3 | size 5938 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_amulet_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54ef09c95cdfacedcc81fa25f4f254f5459c103236a6ecc195ebdc8badcc7e38 3 | size 3471 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_amulet_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f01d8217efc97a5d6624532dd09279fdc9200d6844081565d417474ab189d1a 3 | size 3621 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5193b4bea8b7e41fb7fe5da47906b1e9b8750078a6662c21dcad335bd9bf327 3 | size 4994 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3073191e570e1b0b121d81ffc10c7e0ef24b50437d5e74a3d17db6ad9e034591 3 | size 3177 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:859c58647c9fd5f51c2abf26c1a90f51fb9030b2dfd0415571ee7872960d3094 3 | size 5383 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d49a22cf747dda9338c3a1bcbc7c0b7d4993c1fb4d8cd4ec150ce113c44014d 3 | size 4673 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7168f412df947d9584bb32b3ee08e09c0d397d4f3958eecbaf7cf175b6ccd4b0 3 | size 3002 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccb1db149e5820376d7b1abf91f7856afba04693de7660586a0542c5f4080014 3 | size 2029 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eac7a475c30557a8b277807f80a64c804569abaad9c9ff3e8eb8eec536060058 3 | size 6267 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:067c05705655029df1b1f64127e437d08e91258dc4161bd35ec0d24033ef6227 3 | size 3041 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6c662e5eeaf94b5e1badad08c74f97e976df200b7e77caa4071f669739692f9 3 | size 2004 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ab0118a752cc26cb32783058037fefd4752bbee32f6f14be76f6731559f7e53 3 | size 2275 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:134b632e35741b1cdaa385a6fa986d4d4f19dce45820f0ea187c0258804b7fc0 3 | size 3967 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c338185a437d3be31f6bf4830fe8494a8841a08db68442f2238b2db0c7d84f71 3 | size 6360 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecdcced2f37ab5778d6e4aa0b8928fad8459278a0df83f054b60994d387b79df 3 | size 6279 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9b885a431c4722a3b4e4210bd3910149d65cc4712d8e9009099b34117384d7a 3 | size 3224 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1feb802639ef78916f249aa49b2730bda06abab2989005d82a1c0aafa82d06c9 3 | size 3612 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df61a3f94e5bac9751085c390d4853ab9ae04f5614162d26df17ea47545c07c0 3 | size 4468 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9081d2247dda67f1004b35bd025d012a876a5f13ac629be4fe7c66fa02e640c8 3 | size 5836 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:466a8699c0c2c7384a9e6ce815f80b0d74b3806947c525e36bcfca8e4d5a4d0f 3 | size 4897 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc16019e4af83fad480a6f122e43a25cc0256b5056836eb37b8937e03ea3959a 3 | size 5913 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d0477e59c35a3ec43ee6ed258a0b69ce22df57ccccae041c2843716dccba4c2 3 | size 3590 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:676b40a9b345e4b029c75498860a6196affb2d83872d559635321ac2ebdd0859 3 | size 4460 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fff2a5fb1062c6195b6bec6808ae4febfca22d9c8097a7b47ea5131f38388420 3 | size 5295 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25038b292b7878ce59598272579c3c897db795431fb4f778a1063657dce62581 3 | size 4307 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd67f6e919b723dbcacd29b7e4ba4f02297c3ca064d14d9684654f3081d8050a 3 | size 4578 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_35.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6dcda19a47e1f05f9162414d7296f1f88f3c0340824c8b4a6ca073d8519cfc87 3 | size 6210 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_37.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23055b1c4d75c77227a65bd500692f9e34f0fcee5bde5ade7b041b552ca628d0 3 | size 6059 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_38.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2acc862baf0c3fcc4032e25d11034c8e490d1c7b3becd211173490f8d905fc2a 3 | size 5003 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_40.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:095c2d60b14e765443cde21046847472e4ed0dd8f07b3df06b6fca095bc5abed 3 | size 4351 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_41.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a84af641f744269bb2d19b86386b2099de55e9fd876edc7c4b73ca0c5b1bd98 3 | size 4511 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_43.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19c9dbe8c7d1d7e8e1d34ddd60cec38d4cfe1f7d52816139e8150555eed245e3 3 | size 5960 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_44.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68c29905938298d439b79339817f42620b62fd6e4fbc55a74dc0a8f4166deaef 3 | size 6065 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_jewelry_ring_46.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:551d65ffedfff0f2dccc3971024f511a7b9fe23335bf56e65ea84fde1b4db9fa 3 | size 3747 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:026b5a6814add107a1647930ff217ddf754c07879a6847cd9fc2e465a433e194 3 | size 5330 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4a75207e5ba939924ba091cf95f00ed050adc3897cc542dbecefb19b77ba8fa 3 | size 4400 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e24f30d352ec556ce8463c9bb7f7b4e1a3d05b5477de44dc3b670e7ef59f0afd 3 | size 3492 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0c1456baa5a43cfce84f639acdaf6c9e5f1e579e5ec9afd617863a0a9298058 3 | size 3459 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e67c0f17a5b1ebb844e5d67d2e33ae85359f62995f54394c72bcb0f397c1c414 3 | size 4199 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b532d9c5b998fbb4d1f483146085a30a24d7fec4bde8c257805b6eb7d9341da 3 | size 5628 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:614ad1a1fcaacd4e1bb3d7e4b340ee734c50b316ec1064647c4c7116d360f38c 3 | size 4388 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e09a373cf8570da0b467503d63ad620143fcad8cfbd14564aaab2f8aae87ce35 3 | size 3921 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8e279acf69777ba16b82bd5f4e3f35efee71d353185cefe403b86311493a168 3 | size 2400 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72533888d36a1a968c502f5c21ba494f30e4f5fdb9ec626a661d629686fc2613 3 | size 3217 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1405619f0ef25efed328eec2f1b8ac3052cb31b57b4bfa26880213b737a63250 3 | size 3731 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:276b24a6027314b1a213104387d1291dd7b2e3eb501cda6b0514124a8fe59859 3 | size 2423 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aff3c1ddc0aefd795fd7fd83a71a152800dbf7e8109bfc88fdea2c9a91355730 3 | size 6173 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff63aa54477463df13be6e61125a6b955f2fa35b77dfba2989e36aef6e860798 3 | size 3975 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_26.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff2e54f4e6c7f53c5e199beddd410d68d407f5d78ed3e60ccc0eea6a031b9ae4 3 | size 4316 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mace_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75050d5738577420d4476f08a8de2baf2cd07fcdde2d898249ef1dc71ee361cd 3 | size 4805 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_mask_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3be3e7b2e1421c193c209e6b5fe93a157f688bdb7ad8cdbe4fc7de81853dc8e 3 | size 6213 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_armorkit_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c38676220d0742ecf004373b57cbd15c1a4ddc4d611d6e19464c2470acf3af77 3 | size 3640 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_armorkit_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba23e5c0b705393ffe6cdd3c7934d15d06a41e4fdc9a67dd797b8854e275e5c2 3 | size 2687 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bag_09_black.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0cef71eebd1f4b4a8b9367fbdc71d1756ce673638c0b740953222d100678039 3 | size 3413 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bag_10_black.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e19fac41294d34556b98a4ad8081cfb4152c7f8ed5f7fa8de640cf978d013e78 3 | size 3133 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bandage_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c683f831bd333e511d24dbdc24b736fbd56e6611dd24a067d1eb773d3ad9a45 3 | size 2744 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bandana_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2efc78882f66a622ac8e2342dcd934101ff7ee4532183647e9646b1ccb040c47 3 | size 4662 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bandana_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:283d7a54d269e2d90a92a462163b74aeda8954130c22b8199170d5e2d980ff32 3 | size 3233 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bone_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ba8d7b6b06e95b35cce08509c1d97ab1d03111a44e7abc683b758631e20834c 3 | size 3194 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bone_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bed100a8b5d52f75051f654d082503b6b89c8b3b3af7d5d2be251fd418f6ca3 3 | size 2768 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bone_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f144ed96d16794c6fee7e7adf827baf97fc52554223c0b79100d001f867386e 3 | size 4224 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_bone_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af64f88d40742d4cdb6e4718b7f2e766f01d2dda34f8c7267824373e2f0f1065 3 | size 2694 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84178b411062b00f46c6c5342fded001d87887a30c116d50bfb1a8a5cc0cf9e5 3 | size 6600 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4624ae28f41116fe54a2cf1520740de64b7fb6a521d8dbd2a2b68b6feea60ced 3 | size 10389 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dbc6175400bed32c6e8f330041e173c8255f8589ea158a952bad5683efe3f82b 3 | size 6483 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b762d7493012b89aa478d263b7b1006281c8754a86756f8c489147813ed17394 3 | size 3716 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69afba8991efb2f3428edb4695f24bf8f88fa4d77b3138017c0281a7100a8345 3 | size 6583 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f099af90c48c134ca24bf8a746a960ad7681bd1821cd024116177658f45f4b7e 3 | size 3923 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_book_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6971bac1de68edb6de108698c830ef0f3c37e18edb461d52cabb25c14057e3e7 3 | size 4719 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_branch_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed3a6d07af0523638259e0404495953b058a2cb3400430f9800927d03a61ae1a 3 | size 5184 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81f0cd6f2e215fd4ea5fce722908cc31484e341da0c2e9cbacb1baad31f8f7d5 3 | size 4888 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d75c0eb966cb1c65f9a035cc8c79a000291d6e913f6a0d5dc43240ae7fb6c7b6 3 | size 5520 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ea1a5870f3cf7b487b3ebb01a6f784e33dbc6a2cd58ace7f22d28772b620146 3 | size 6182 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c51337398757165af4639498eeade70ec26eb5ddce02ca238742f87590a0d099 3 | size 3880 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57115051a08ddabc0034d5f5027147f3c930583f45866a2c218f8f9b83cdead2 3 | size 3734 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf143caed41e9261ce4d3179df3585baac4b38b1b5f3a3015d3280b33c107bc6 3 | size 3557 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0060fe2d0a531f90cd02569f6efaf89d1baa28d8ca94d43921e11b57b82187f9 3 | size 3769 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e17869350055928dd0748313befc6faffc8fc1d2bfe963a8b84e8bc4d882970 3 | size 3764 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c855c9a0702b3392dee479feb5052d926d6c9c978bc305b67ddd701ddb239ea 3 | size 2946 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9709459441a2b9c7401537e58838da813ab3ec117975107d2eb9c75d71cf85af 3 | size 2974 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:045100f5041ce51c9bfe1f51d4c5a3fb38853a10c86f5674479544416ec9d6f9 3 | size 5291 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d0edc2d44632f46777bda546c180065ee34dc07dab6f0c34a6261c5d0d41ffe 3 | size 3783 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c0fb56d73c0506b88c1a2a31c66c8895d6a50f4142b15a625252689352f72d4 3 | size 5506 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c2b629b29fc5c2893aa214ec0b7181c0525c069992069dabdaf09ef2899fd66 3 | size 5782 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eacbd8cc62c5dcd3aef5042ba138a22d8231d6c672561c39ef2357849a093cad 3 | size 4274 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_cape_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdc97ac08c188cd6d038ed672feb3ac55949ac12eaaf93874e23d23ee01e6caf 3 | size 4261 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_enggizmos_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c115b2f29c796dcd9db3463bb4968353b16026a73dc6a199dbc2e7362d0049ab 3 | size 6372 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_eye_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b3e8f8668cae42f9a4ae6589f668207de882221fde5a8c720fa0b3bb44c23c6 3 | size 5322 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_gem_pearl_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ae518c955b268ad8f8ad149fa9c2681a34eaaca4dcf142b1ddaf0ebb24691e3 3 | size 4921 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_orb_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:874b716eefd926093e6ea2b3a7b10bbb7d63e34b9246b6b70cfb5871e4745659 3 | size 3745 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_orb_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0abc5e5180cd00f0cfa12a3e681e264c11332dd6387e32a1aec211b5493f80d 3 | size 5421 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_orb_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d05290d2ac40f441e6079222c1969d0d65c6e92afe8c5ee471358a67aff5071 3 | size 4758 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_orb_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df74c853c88547e1a110aca3ded9fb003d237497f246043d0f4a9faf77fe2d16 3 | size 4170 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_pelt_bear_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e89d5f1eada9d96591dff4a31b20f1a51a8341de88acf407b380de476089371 3 | size 5728 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_quiver_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbb220ea6c3717975dda6fa839b32e7c0fa1eb047879ec00e59b940534969fe7 3 | size 3967 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_quiver_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcd2c5e6e9d28aedc8a72b880305881bc4ebb893a36962f72e44e45938fa5f88 3 | size 3907 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_quiver_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2605cc84aa59cbd8a925a2dd58c6fca7e0180479b97b8c1fd84ba64682d3d691 3 | size 4094 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_root_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46ef49c7c0b459c474063d28754c196a8131094c5949c70bbf57d5ec082ffbdc 3 | size 6324 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_rune_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c98d438ff9592a98d7f9da2b78d9fe70840563b85257725b1fbdbd4fc496d9b6 3 | size 3556 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_rune_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5112d67b74f9e8456c9e3051e847e18ef28e004c9b5acb273f6648f2fccbc0d6 3 | size 3035 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_misc_rune_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25a7615d6f8f6d58ffbd6847d76e4797c5f4ae1015b1938738296e56724bed4b 3 | size 5514 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_ore_arcanite_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50897fbd066698392af783222dec48692f88fc1c205a6d60638054ee248bce9d 3 | size 5307 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0eb8e7f3a3d18d19bbb6f5838127e224bc55d25ffd9eeaa0f4cf16be5c1250fe 3 | size 3816 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:499e50ab6ff59575b76e03c38ae3a079b5c623f2d2ae8781aa680f547140d1fe 3 | size 4036 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1110cdb5a8dbd77d36aa9edacbdb864ace9852d9ca94274397a1b15135eb3a0 3 | size 5906 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1e05da44774f5a09504109371ded3a8fdb96130f52607bf089eb5a3db9884ef 3 | size 5905 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b23b7f06acc752075c39fb8e3b1e62e9d74fc08fb53346eac879cfc468cb4e7b 3 | size 6031 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8274276e83a79e9c0d9106f110c05770437eec928ea54f9f88a020d9b7c91bf 3 | size 4283 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8acce3831227282dc5d7a7878ef2addee1a0d29cbd592e6aa95cfa629deb8c54 3 | size 3941 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16200b3ec8082b060a7c4ab8ae5d85f8c326477ee623d7d6dc1e45d8e236125d 3 | size 4201 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bb2a47d5a206cccefdda08cfffc28c356922a16df20ef2537bc81692aecc80e 3 | size 6283 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e28455a367ab1f4f012a35d908405274f29847c184e98312e599a69938b7fdf 3 | size 4327 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_cloth_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f323638194b2a8ad3aacc53417c21febaafc70fff6bc014cadb80116502c87c 3 | size 4529 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_cloth_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1a41ba78d9be2fe7d3e5807aac61e2e75a2dbbe3f5a4570e9d14e2ffa9a584a 3 | size 4593 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_cloth_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5345d22e47051900fee1668e248bb06dff68aeddeab3ab721c5e70f1c5779fae 3 | size 4548 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_cloth_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df7aad468d40234de5da13aa20cefa7b41c7dbdb68f91e57f1ccb9561ac974f9 3 | size 4209 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_cloth_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32a160a3e633fb84d727a78ab9231f95a83bbf1f437197af64210412131cee6c 3 | size 4885 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_leather_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27daac74c041e765d8863a1fb0ca10b032ccb81a45f7de23a0e727f9685f31ca 3 | size 3128 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_leather_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f99f4a50d4e45e3f8780296b3847e5d3f70a2701d00f4e1607469160839ffee 3 | size 4682 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_leather_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a391514d16fa3a17059484d0bb9a72d5d340a3866c057675fec3af99667b670 3 | size 4939 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_leather_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8cc3f6f3992d8789ba5e548caf2a5567fb487452e9230a878cac24ed5f1b7f0 3 | size 4643 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cf5c44b53ab77462a1a80b72833cc74ad68fbbedc14410e7640f3dcc204f8c7 3 | size 4798 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f05638f56e4f6aa582275dfd34dbe6c68d95b5624999d6da51c1bf734588a62 3 | size 7079 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c5127303952d603b6b381fc64f1e68a97741cbdd3f9d4473a2103c1d1254c96 3 | size 4561 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45bbbe198295477a2778bcd4970a983f4de9b4815d91a6690331688f6ad199a7 3 | size 4595 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:820d6bd4cbe8ab5aaedb2090160d57d8ae08e041ea0a08043f5ba2d368319a90 3 | size 4548 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9999dcb670797a81e1b6323c81a6b0a2384192bc6331de0f7e1b0513dadb2ee 3 | size 7307 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_mail_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:257e790b7a557f5733a302414270c4b4b29068b9ad9c94e9cef72eaf7ab13fd0 3 | size 4672 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7218a62f8ed3ab9b9bc25cb1568602e13303fdc40412826bed2b7d5836716327 3 | size 6342 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3af1041ffac6fd087af666cf8be187f3579b23943ae8abfa7383c3e216a4c7a1 3 | size 3952 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9089869de7fda7b9a9a777901b55c0c2e2975967006b2237b1a0a706a4f18a3 3 | size 4196 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ba5b4fb100d64c859933d51f5421790a150538962f1a915e2eee281b07c193e 3 | size 7023 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c056e39929fff77f916868da43fed40bb35800e2f8e18da796c4840d433f7fc6 3 | size 4319 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0322e18bbb3fccf7ba9330062560cb7e3ac581c80e20c7180b47ddda133b1c1d 3 | size 6047 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43898b4d15955e3e3b1a3437be5a4aafcbda9cbd4e931b45bf09d29a9b449c4f 3 | size 6585 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_plate_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c86bbcd33f1a50bc7fac938e052527b86748435a0c4856cc3a48963a855f169 3 | size 4375 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pants_wolf.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f844c8ecd3faf8e76c363eda0efca58ec05a970e95f54525ea486ff46850094b 3 | size 3904 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_pick_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:811d79cb7ca47a80c8150645becfaef2072fbd1b3db2c039de0e2a1fc5ba50ab 3 | size 5071 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_potion_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a354c7f511322184c895dc2df598ed37f1a659ee91cc7c8d4db710b73ab4298 3 | size 6508 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_scroll_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13305238f5bb2548db73471a621bfc0de0ad5a5a4432e7bd8e4d767089ed8b07 3 | size 5782 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shield_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2ec67938c26853ec8363ca663fb0361d02883c402e26d0662f1835d86e92dda 3 | size 4180 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shield_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6535b84d13e07e4723dff1ed8438b74fded4be712a34a270a450276224508cd8 3 | size 5671 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shield_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de63d82ab7161339f740c0f43db8ae9df4797897431d389fbf6e75035ef6a776 3 | size 6256 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shield_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae026b93b6e4383e4c1395fb32c21c99cbd1e49e59561a8f73b5a875c613b09e 3 | size 5903 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:800ac1a1acc8e06a1d0dc9472cc654b6d2aa12b802bd3afaee24e91cc4d1f6a7 3 | size 6221 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91e61dcd14d4b939dbceb26b6d835607bd94e7c63a1b8720a63697e8eb7bfd56 3 | size 4513 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11a423448a8ab7b4cb1a5274b4337a6553e2649f70651232bcc7c9e895d3f2a5 3 | size 3921 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa5c7fafe2248a3587f428fa8b7c074f5d271f729a116e52e2969f3fc2632664 3 | size 4110 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dfacdd66f804a9dda4584bb35849aebfc85e755ddf6e1393c36486878f2eb1a 3 | size 4269 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e4470e626bc78b0acad9774e1805423c5dea21721c87a13741470cc3eaf041d 3 | size 3887 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c318b22e6c97a254f71ae73158fe1a6c3535473f139d42ad219d5f1d8c40f6b6 3 | size 6415 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e57f81613e49742638ab7d73ddf86afcdac65c5a2afb474ae95c9c13b6c6116 3 | size 6941 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8394a58d0a6ed5240a120b53f545d60a2113a1a4b486f11b91b1bcdcc15a29c1 3 | size 6397 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:523afb94cfdfc5c216036256177bf3e1c86c26475013f9c2f59a8c879d095b49 3 | size 6529 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd3ad79b00b696a1e323a30bf377c90d661908d860f0b6c9f943862421e38fdf 3 | size 6549 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0525ea2c4f98a64e0c66ee82cea7f708e63d0cac5c1cd35096467b49db7350d 3 | size 4347 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86639f23555afe72d892eb583e386afd30ecc4cd7e3ccaf46bed90838ea2e365 3 | size 4235 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c3e96c33c6b8e4a44d12115028ef76d5175840d1eeaeb3b83c8afc79323594d 3 | size 4437 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_19.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25ce0f3f58f0a8c311de290aad6f0c8350f35353fb71f32b39b26531c89f3478 3 | size 6702 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8888486f0e97c3312c0dd63a709b8f476780eb22c0ebac59bb4c9da05afb723b 3 | size 5902 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2f3db03a0f1c227847a59c6171d8cee62e5f19700694d2a52753540d2ebf7c8 3 | size 6144 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:438d615dda97f2b976d2b844430c84c6a580d3c0ef82ddbc56dd9bbdb9dd0d1f 3 | size 4017 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab0d971eeb6913c3bc6d7f5623b8851df9bd2ba196134194b4e27bd75f54e48f 3 | size 4689 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f1cdf934b0763f642a9b4de6fda021dafcd7273c238ee9e1f902ab6acabf1c7 3 | size 3270 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d4b1d6d8b0cc01a147fb6976e67632974e5150789789127c485d26941cc486d 3 | size 4104 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f8e5602e24ba065ca1d529269bb3975193f6f661b70a442a518ab5c64c778ba 3 | size 3221 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bf13bb706c5d50da74d708b6149e9b6274481c246eeca492798d3b71ad05112 3 | size 2765 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fba410c716653d773598faad6d6a6e3397940c1d03092253f3db94bc1a2f8adb 3 | size 3258 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89354d7ef30ffc17a411a07113c0d907e34b82fcceadc0200bd372e304d7c823 3 | size 3485 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adb9acecc38ec88c7d982d333288409cf9687993f89b3f5556e6c9bc17d7672a 3 | size 4742 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81c563d1c07ea535fe8d62207fedcbe2b7157e8cabb47f410218b7feb8fddc5e 3 | size 6622 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_35.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3a86cfa7bba91f5671f0632327d0cf05c0201437d8d3cf41ba31be1cfad7499 3 | size 6262 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_shoulder_36.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49e78363b374a2310d928f9204c1cef8e767c10c52c1b87e5c81acdc1ada2bdc 3 | size 5930 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16849eff474884aa053ca8dfb7a365d539e6621666b569d03fdbc64ed18efde4 3 | size 3542 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2284b475ebe6c150b534fe7e4b1315c4c40e1d95d48c33e528813ec9e77f13a3 3 | size 4491 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:811cc98df6dc93d362d06cc66c4762a166cfbe56468bca6025d72f730b5168dc 3 | size 6101 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7003f8ba62d675d566f1563d2576cee2638a2c683c6491bc25b47e9fa95087e9 3 | size 4355 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06b6b0272bfe83c733a9fafe7d7737b46378ef7283184ec2132f8ca521ef4704 3 | size 2933 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16c642a130c624cdf0e113b4a1681dc73241e9e4c11ccc82c0cb31344cf18020 3 | size 5023 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_spear_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dfb6d0f748ec94dd69046307a1aa1e08ec217aee4d93e9285337b69d4bbbe11 3 | size 4335 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0be98fa9074ba43154ea5ddccbcc737459e84e2e3c84daf5c1669f3b2516152d 3 | size 3338 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:945141d45c1e96a0143311b8f1ec0aea458d9d3f1c84a1c383ca04b688c1e5a0 3 | size 5553 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:900d390a0bc00df7baca1c99c15ed3420db968fda910d8b4ad050bf7c9140c20 3 | size 4374 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bdacb3e65c03a7d8445de9cdf589a470847f184dec885f45ee5fe1f0b5362f5 3 | size 5590 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bb3d1ea55db7ec01b46a22b013751b7c8b86b861abc8fb3fcba131a9b3902f9 3 | size 5761 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adedba95f2ccca38d99210bfb2faad08e061a429660c0c54216805016df2fb72 3 | size 4792 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a027c1f1bdf0b2dc40ab33cadf106069b0c2fa29968aa60b68d46982140ece12 3 | size 5748 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe1793ed18b247261e894ca22f9e730608a1f0357e2376b025f96cf2d16d1d09 3 | size 5902 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09d0b1c357754fefc755998b030540e6bb0a644baa5a2fbd50983a27ff94ba4d 3 | size 4640 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce741ff6bae61b74505b0de73634877d8285a5c11472ecb936a9d1021393c928 3 | size 5897 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b9c005f0332217a737c3535c5adfebc2887cbd10d071ff7be5486e4280c00fb 3 | size 4462 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5bc6872560b7d1e87c918ffa7f085b2b688465fee067a1f4bdb2b501e486517 3 | size 2100 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75d4ab35c7cd4851a58dabf4aa430d7324ee9d1dfe65f3c73047d6574c571cf8 3 | size 4531 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:765546c1a57f00d84632e4013ec167bdeffe83fe9c640fc5ee542d092d621727 3 | size 5906 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b4f75a81b8bb7660e341a0efd274bda664eb14eb3f1fb8cd1c91e5fe448d44d 3 | size 3027 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:134948602680b3186aeee385bc37960d77f476815d6e850bb6ab23fb197a23d9 3 | size 5173 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_30.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21844e65ab77e26969f3c37bb1738eb9edef5228d05a73e4cebe3c355a20fe08 3 | size 5202 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb57708e23bfb5de47ab8d2364973ba0383168c6b3f87abb2dd3cac1eeaa1114 3 | size 5695 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_33.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98a6d0424a2631d9b9caf9b5c2875fe25f66d6dbfa0e0f449a980f661d1d5fa8 3 | size 6659 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_staff_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9458a790892fa8c842f61cb54b0d53b6558d9b1dd589f9c7754dd80a72ec49d1 3 | size 3996 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_stone_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b749cd20fb0038f9a395f4a0898cfdb4c9ece3b0d114bded076c343f3c4d3d6d 3 | size 5124 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_stone_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae44f0e092a3e65417e515f4d29725a7cb0f05cc50f15ea19bbd00f104e48c77 3 | size 3940 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:254da89cdd1d1490a33e4746a03c270ca21afdab1e505ed9812cc8a56b3c4a56 3 | size 5323 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93d85c958001fcb2bc4fe366c4e8d1389b4dc1b5adc60757f4f7957dcad86977 3 | size 3641 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:499c1b72adaf557fcfed6cabca7f1b33725dc67b8fd4e4b0c6965a8e013f4d20 3 | size 5324 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06c58816a6414dcd97430c1d719b3a5e5d2d94bab2bd1f5fa2e4deae74888142 3 | size 6775 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b60f713b66b9b000092f6996756f8f062f97bbc53bb767527eac6b2a3863122 3 | size 4078 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cdb17da62cc38e527e9c2af8643122cca98e61392ce0c39d69f6631cd323b4d 3 | size 6398 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af3f2a13c69a3583296b1e224cae747d5258cd67014fb5cb2fc5133e79566421 3 | size 3795 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f048a83214a358e692020ba8829ff35421fba7a79d6ef9cdf682ae94052aeb6 3 | size 3670 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b18bcbfd14338b9d3a05d77519ae64d34c5fce9230995cae04787da001800669 3 | size 3497 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d14643440ec1659e11376cc25cf0127ce8ef0a43917bff0cb58b01cd341df45 3 | size 4845 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd9e1bd1a17522deade09ad22c451e42a9ef4332523e5bdabc7624f4522a3893 3 | size 3101 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_18.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfa343606c871a4148ee0e19ab952acf14f0ab3c9444b7e1d3c8b86a1efa9c23 3 | size 2388 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_20.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfd5e9a2b937e8a48ea47b9e7a9be8f5f6dc99eec43c85e7fbb25cc5b2ed4f2a 3 | size 4376 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_21.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddce872b1bd62235de359083bac0d0bdf344866916cfa0ff5d4bc45510064a50 3 | size 3728 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_22.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c11d8a1145ca5584d0d5eac6c98f1f0c984fc78b3767910d278e354567192bbb 3 | size 3628 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_23.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:526c043ff4c0b021c542ba153d781411e5f622baec84507a879a814fcd825bb3 3 | size 4511 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_25.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a0c6ca4c5036240df6b5e2d466dd187ccbda0666169b30405035a2524a2b153 3 | size 4130 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_27.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:200932a41a351b5bf2515018eb14ab0de89830e9a42d61af52d8ad7cc1b340be 3 | size 5097 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_28.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ab89bd793d439a516f99573bce5ff31dbd805cb1247022118b1116df2205722 3 | size 3531 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_29.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af7a9a11c7d8be006a23f81f13d31c77a79138cbd0da6cdacd0756086a72e3b8 3 | size 4858 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_31.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74731650bf6e5a5dfd3045c05ecd9e29a2e882f28133c423436e416769e68f9a 3 | size 4765 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:405846543530c8c4c251fe99bb56e67862a9f5be1937fd7afd2316aba9fcfa45 3 | size 3933 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_34.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be8ceada37f7da30cc927fb9373115dea57e9a9e0c7d06518cf9052f6cc2aa6b 3 | size 4979 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_35.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:909fc05320323bfda22ecebce17977a922f4375bbe65a2ed160ad1b00203e42d 3 | size 5678 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_36.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd8ceeeed56a0febfff77f42a9b0867df06e894f78a417baab9407dc79b0b78a 3 | size 1941 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_37.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:526c99b2ada177e339d754bf3165b52525e0b96869f397e51d48f5c4d6e6afa7 3 | size 6142 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_38.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a17c6ed4e1a4fc45824c33244572475ea0e9963f58fa5cde8a5004ac459d8d8 3 | size 6589 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_39.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a42b3b2f4c3281c5644a10b4c5095f80946db95a1dae89f1fb4e91e566cf80d7 3 | size 6477 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_40.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85b53cac64a50a0a53477d3f3d85509dbf75de12b8278318cadde94ebecd9aa5 3 | size 5028 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_41.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45a1122c267e8c66a93f6936f8434e6d167a870921ee8584b8749a134d29fee7 3 | size 2660 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_42.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95122ef2f8f66211ef38b80ab60af189855159d856f5526729d0a98d7f6c5ef6 3 | size 3260 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_43.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:642b3a157284251ba9161086100b9eb6362acf35ffecfad746ad0402a70adaf4 3 | size 4394 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_44.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c545625c57f915647c7cb4baed8a368e400c8da2b068671cb5ff7bfacf3aa388 3 | size 4381 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_46.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f60b304e2c351051a72f70780ddec3ff746ac5cd2fa0603ae1019ff02f09403d 3 | size 5542 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_47.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09c7ba2f50c292689c07d8ad75917bafab3f8e50adda9056a2ba9e0e651d4a99 3 | size 4120 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_48.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fc7035c424ea82a637bc1344a63c914bc4ffdd5489f47eba879ad38ba161159 3 | size 6459 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_49.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ae3d6b247d0460a6425cc8dcab1b9b4b09ed39de763ccab3c635a4d51129948 3 | size 6546 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_50.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18c47cb004d5119d63696517e0cfe73ccc1216c7aba8a5b8dcdb0803d8042989 3 | size 6247 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_51.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:763bf3d54189a5432f1a107eb15aabc56b8e3cabac5964305833157bfd56cc9a 3 | size 7353 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_54.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0bb77ed3d06d98448a8b9104271acdaa49e40ab3ff94c7609daf4c48c38f213 3 | size 4988 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_55.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ec323d397eaec94d957a0e8eb9a20bff498276517c72292699699c98b194f3d 3 | size 4979 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_56.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37ce68cd46c7e6d239c9e99b1fb68fdc68112a94366eb70ad3a4d700e8869746 3 | size 5971 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_57.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46c3a82798489e4f45b05697dcff2373155c31d049e45f36a187bdb75886aa6e 3 | size 3284 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_58.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:650e02fdc7faf201ae5ef14a364a16ec57e06d7093767efff18f741239809c0c 3 | size 4000 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_60.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7b6f7ec7e118b45fe12077ca91d6cc4bab6ed20f0db9a2d603f51050baf3f1c 3 | size 6476 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_61.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:924d4c790806602e7c52833600ac16e52ea2c9977989ab92767f758d9d7f02c6 3 | size 7027 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_62.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77c3977fd949d130eec065eda5ab99e76d91be0ec27690bf06ebb1c626361ff5 3 | size 6283 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_sword_84.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24f1fbf89af0af91c579c23eb6d8ebd485bbfd11708f1db6e8b132ab9f83cd19 3 | size 7517 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be30346e8bb51444633e7d5a3323cf0a6abea84b6342415203b5be3b984ed0b4 3 | size 4042 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7609566e42fc6e8b844810202c81eec173b64c7efd2480dd94b0142edc9bf02 3 | size 5905 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67f5aa015e4c8e06d69ab2aa0b336c163d27a7add50448ebe51029953c5991c3 3 | size 5970 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f5f999421b6e790b7244b5e79ba2e105766f06bb6dd83b4198f5a51078c3573 3 | size 4059 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81980e9f27ecc62753cf8ce00373975d4d030321dd201d58c5982803b02708e2 3 | size 5803 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_07.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ce9a88add4b74386314f7b9e5eca3c4a308baf5e4131ce8b60b864fd3f6dae8 3 | size 5692 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ca37e43669cb85b353b58e76ff26c15acf2c2b312868679aeb82d112f02d7bb 3 | size 5546 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf4eeeccce4d333a57bc965d0c0f1957ada2885b852cd941995501c1ecb0b710 3 | size 2863 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffea23da47bb6b32b949f35e37c95a681f7ec15813f62008a523ab715fb61aaa 3 | size 6036 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_wand_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f6fe98e01854b8fcc5d0479325b6f5498db44bfbfc5bedb52409f15a9ad06c1 3 | size 4987 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57056558c85853cd573ccf84ec68e62e6a82f3921d242651edfc68c31eb27cd0 3 | size 2584 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f69e63b44a1c74cc1bc9671a13548b1c7df5a89c97f36d27e3f0e88c9944e41b 3 | size 3560 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7dac83adac44fee16ebe0a756e006459d8619c91b2ef14be78f2dd0b52fe0e7e 3 | size 3253 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19c72c57280aceea443cfdc18b22ac5be7ce3dfd80817fcb7db664471b5bbab3 3 | size 3293 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15ac1ff3f50c6923b1dcae3f8579bc4a3d93d9bab09994913aff237ae7277e2d 3 | size 4290 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92db38b931f16ff444e4e8ea3ce4790555033d7c1fd08c729abc803403ebfacd 3 | size 2504 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddbda8d48cb62fe29d789edb34d3d7c9993c660bb90cfada0147b01c2504e737 3 | size 2249 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68360f179c5155cdda65a2adc1319cea970f2c02070c081ec88230d547045e4d 3 | size 6240 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_bow_14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ded3dc3fd891c03f0ecd429ce15bbb291ea8aa12c61c9017406363de67cb4f3a 3 | size 2597 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_halbard_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c9c806e39632d5f4917c9b86636625051b9aa555f0ff2096c4d1a2aad8aaeaa 3 | size 4119 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_halberd_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:497f28c9d71bd29a8dbb00b927160c6f2a799ee3b51e5f8b749431eaa6275403 3 | size 3442 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_halberd_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b54213cc9f1fddb809f6a006b4e61e7df6a5678e4a65f404c75700f19277781e 3 | size 5526 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_halberd_12.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed35124525a4c8daee68d35b488fe2f2e659ae258ed890aa5489fe4d6006f904 3 | size 4212 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_hand_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2751a854c18d2f796fa0896f423acdbb46bfb63c177e94cad94144992fb078b2 3 | size 5148 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_hand_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0c882afb2bae3244f052499c2d5808dc0ae8212e08e0d0123cec8bc7ca436fd 3 | size 5665 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a07f41bd7dfd24b45b24245a61d331b9209a730ab7ae1fe380d0d3931c5acc1 3 | size 5259 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_03.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5524de1de718bea8763b5f98e2e880abc84ba00e08c32ca5abd051010f86c04 3 | size 3589 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c30feaadeb54863138bdded5bc6492dbeaaf59c104a0ddafa21521dcd1b1b995 3 | size 5161 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_06.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d90bf92f9986ef7b98dcb02176776fc9df72123472b59f3b02a3c454b9b10e25 3 | size 4763 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b2f1eaf12ab87fc63d2fd4e839e1dd4f7fb6e06db9e592c12fc767b8d2e4ae8 3 | size 3822 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_09.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02e9e3a786e98f10e6f443241975d15dabbbba178b80244eaa1a70942274cb69 3 | size 5590 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfc95e75af237b274799ba0464f1d96b7a76af9a2f310c9d1ebe55ec04ae8474 3 | size 5092 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_weapon_rifle_11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ce1721907a3af4a00d3245ede32039d0d79bb32c3ac24de3ce09e3c211e298d 3 | size 2407 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Inv_zulgurubtrinket.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd609c707b9600968e111e233d0d8f948b9c1a25dcac4ce3d9a826a62f15260b 3 | size 3376 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Spell_frost_iceshard.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:220b30f0d14226af1581ab249c9e04e510e97aef84257e93b632278c2c43636f 3 | size 4691 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Spell_nature_wispheal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8336a3631c25f479802a2a2ae6964465bd2324ac62f2ac4834e779f5b1ecec76 3 | size 5440 4 | -------------------------------------------------------------------------------- /QML/Assets/items/Spell_shadow_haunting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6213444c49d3828584d0def6e667688ddbf993821fe74ffaed842247da7e61d 3 | size 5250 4 | -------------------------------------------------------------------------------- /QML/Assets/mage/mage_arcane.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee894dcf29f707a7d558e9b6d10b530f3626b674c516e4f56ad879ac98f7091b 3 | size 183098 4 | -------------------------------------------------------------------------------- /QML/Assets/mage/mage_fire.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec0e9fa2d886d06a2db597b435fbdd62d0aa7af8b8425e7f5b3714f5cb7093c7 3 | size 156652 4 | -------------------------------------------------------------------------------- /QML/Assets/mage/mage_frost.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66e21ae0b77e2b0c590250c4546811b382ec8d32db4ac800e29f7c7d68161983 3 | size 135231 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_ammo_firetar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a3ace8e534cf66d9b89f5f115b2ddcd6da8010a1f9ac070e1ca7bcaa7bf4e40 3 | size 6122 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_drink_17.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa8afecf40aa4dcbf719cf3955c83d051e8b34f25a0374c626f534aeb0fff3a4 3 | size 4897 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_drink_milk_05.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:327cba03b32c75c13a7f9bf27541ed3edd16f58b24db4792443701a178847f96 3 | size 3254 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_birdbeck_01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31d4a9b176857475dfb402d450197978edd2174f0538abedc0f3efce18a63b31 3 | size 4907 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_dust_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddc8c8741a15709805792506ad33578365991f78349ee145f1ffcfa69e700951 3 | size 2939 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_fish_13.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fff79b011652bac475ea3f18a9443611120697dd8abaa1c8218a0c7caff8fc4f 3 | size 3144 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_food_41.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:781318c0cfec5e84bd3612a95a19a6d6d409e3b4f7092f8c58ed82d516ae5b92 3 | size 5071 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_food_45.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c67af3f24d709b3537616949376795d89dab30caded1590cf0ac8a51645c70e1 3 | size 3701 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_food_63.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbca371c585d039f966e62842170ef747c7e43db19c9ed63a344d47153ce649f 3 | size 5711 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_food_64.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c23c2658206c74f733ed0b2b146f9d0b312c405c116bb03ad97e727986bcbcae 3 | size 5086 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_orb_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13ff0669287d8280766446b44207e3821448f493bbbdc5784e28eeb575483bef 3 | size 4440 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_misc_rune_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61b2b0394fe8cdda6a57ec1c8b63355fc5387a45d68c4ceb9f7ff479b6d5a10c 3 | size 2849 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5262ee152c9b003ce33c55c4b1191d8010e03aaa86baf2b0ef50135373c5af7c 3 | size 3904 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_40.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c49caf76edb5c862d1d54197b5d8a748f775d95478c7e91edae33bb73403c9 3 | size 4111 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_41.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1718062067f57f498083cada8b86ddf9800bdadac2c610ea48c1632a63eb8c4d 3 | size 4233 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_45.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff478870af6413faacfcaceaffef451eff4ef7cf72b83f6f185f4be17211e761 3 | size 3707 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_61.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9009c7be74aaa903e9493dbb225d5538b29d1e4aeb8c8eb1982eccc919d1a5e6 3 | size 4226 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_76.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fecee35f1346737b4368090d788132d9790f72c615e5c8f23f2d9f541c4ca346 3 | size 6541 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_92.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e51278c0b96fee22a2bfcba3ce13e99305ab245a64b16d79ca241c1ce39d1752 3 | size 4293 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_94.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4f984ae334626c8eeaa0387d36164ce09b469ddf9cb7f1aecbe6414b831aaca 3 | size 4731 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_potion_97.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:948ebf4b419e34cb106a0fe94b4b3df053b2be025945e560da1c8fc2953447bb 3 | size 6108 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_scroll_02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c102bb3a6633972754c0f2c83fbd7cf7ae30191a64ec4da01cd302feb4a6774 3 | size 6409 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_stone_04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d025d3dad96912b5589017e6dfea48e86629d1bc10c04da4aec55e737577bc5 3 | size 5390 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Inv_stone_15.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae44f0e092a3e65417e515f4d29725a7cb0f05cc50f15ea19bbd00f104e48c77 3 | size 3940 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Spell_holy_greaterheal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f6226d24b1a1539ae25ed10f4c0203e838dcd38c29f20d4b0b3de74ff410bae 3 | size 5309 4 | -------------------------------------------------------------------------------- /QML/Assets/misc/Trade_engraving.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6dd5832810de4b7a76296c2c4c3748fd6a2e7a40848a0d2791c4e379f88d4dec 3 | size 4476 4 | -------------------------------------------------------------------------------- /QML/Assets/paladin/paladin_combat.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfd5ec44f549d5c0644f164f10d4db58c19a7d0bc2c44ae68287b808fe21b47b 3 | size 207985 4 | -------------------------------------------------------------------------------- /QML/Assets/paladin/paladin_holy.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7fa72fe7ab4ecb41b0a561b6dd29d43081faf89f64941e7cf6cb29a89bd191b 3 | size 216109 4 | -------------------------------------------------------------------------------- /QML/Assets/races/Racial_troll_berserk.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:669360e1ead496c75b2daee35e6664315c76dfee29df8c09d8755999bfbd4412 3 | size 4136 4 | -------------------------------------------------------------------------------- /QML/Assets/rogue/rogue_assassination.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5e3906e1ff46c10cd90ea60ea492a3492907d14a7e5ce2c9c0f6ad18cc4977d 3 | size 142452 4 | -------------------------------------------------------------------------------- /QML/Assets/rogue/rogue_combat.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a04f454cfe0b89d72aadd38d21cb94d803560dff6e6a958a3dd8c7ec3dfdb8d 3 | size 137341 4 | -------------------------------------------------------------------------------- /QML/Assets/rogue/rogue_subtlety.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:877f1be9e0cc54a5fc9fdab2a3bbfcc131c54340ae91bb669a8b47f644da8c8e 3 | size 139182 4 | -------------------------------------------------------------------------------- /QML/Assets/shaman/shaman_elemental.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb81c5b7bc08358269e387d622a3a749ead996f4938177b44024ce5cb3fa904f 3 | size 154465 4 | -------------------------------------------------------------------------------- /QML/Assets/shaman/shaman_enhancement.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7273a3e8fa551674eb1cea1a575ebdeb99c8d5791c4c5d77586f3474f0c5bceb 3 | size 143854 4 | -------------------------------------------------------------------------------- /QML/Assets/shaman/shaman_restoration.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fc9e495686e88d8ffa456ff769d53db304c12a9513da52bfca071a2ab112f7b 3 | size 228506 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_arcane_blink.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46e6cec3e291ae897c9bc52b1b0a2ab6422e2039c4973993205e6eda4ccc79a0 3 | size 5501 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_arcane_starfire.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:520ea88132ad2f2b5a45e5d14bb1d3335308a82c7c400041a67ff82cea946a73 3 | size 4239 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_fire.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:989160089f39bdca6bfeeedf7f1bfaaac46f4b8b4703758327196281f738cca3 3 | size 4899 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_firearmor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:463ec2d9414f2d6387d9bdf2c762f96a275e165a8464154c95a2deb317518f7a 3 | size 4396 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_fireball.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e47208109b1c0e2eeac56e667a13041854cdcf342af05f55253485d6a41bdd0e 3 | size 4599 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_fireball02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd97af917b1828fcb17b370d35d9e314a13fbb8d8189f3e449ba83fe01fde285 3 | size 6316 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_firebolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4950af1679bdf077c79075b0ec94df1603214fc2db645dcd0ca4a90eb502cc4c 3 | size 6382 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_flamebolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10b843e3f5436af59fbe4f64a396e0b22ddaef2bfd27ce461db1ee181c3e157e 3 | size 3800 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_flameshock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56e53a3f8ae15d1fa54e5442825e001d0feaae9d76cc82dd4cd470db6dc5bd63 3 | size 5182 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_flare.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38df27d5a6832726505c4b779fa9c03f66fd7c8d0ecf9e5454cf403e4feb5657 3 | size 3681 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_immolation.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6f234dd257884f1ba3bce9563e775bd7745504636c55d30868cd256dcd10782 3 | size 4120 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_incinerate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df996e95f35a0fe71aa44874357c23d56f533cd1a647c4e21630319169ec72ab 3 | size 5645 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_lavaspawn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1df5c383faaad4ef89d38871bc54e0781270c9ef53b6e10f0861164b5485000 3 | size 5045 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_sealoffire.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:022f03893d83cb7f0f483e02828f8f8ed55e8c23f0dee3e214df86d4e04edc85 3 | size 4726 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_soulburn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:371c1d3d948d6c498b6db436cd82157ca251394b48fe4671abda4cd3f2628b34 3 | size 4110 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_volcano.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf15f87c650fdbb25040706563671107b4b5de4d2aff5e087554fc58af33bedf 3 | size 6104 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_fire_windsofwoe.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2715854dc0f3219e769b86814b28cdad6329418dfc64462de1c225bcf798a8f1 3 | size 5227 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_frost.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee67a9df3f7b0b9fa49fd2693c4fd56a30da31f162f5e48c8e0aeb93df9d90e2 3 | size 5707 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_frostbolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:906258fb6403688cf1e3a161cfc1a8207b8c7ab9bce05dac13698cc26118beb8 3 | size 5677 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_frostward.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f76f89b0b26cc059f7417387a37af4c8b0a58197d7b8fe75842a9a98395e3a9e 3 | size 4551 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_glacier.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51ebae616a3195b27c352ed414d47309387e2063b6b5906458c753cda67f3ad1 3 | size 4813 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_iceshock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd6dcba9fde205c6371604ec10a067d2779b155553f7b1c21e371c045a8f8a50 3 | size 4785 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_icestorm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fe87fc02bf5ecdeeea0cbf19a110b4f0024fefa2b49dea5d3c8fee9ca030a98 3 | size 9902 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_manaburn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27616b7385e122f5bef2166253b0d1f734c5b924182b40975b17cb6cd2b03489 3 | size 4335 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_stun.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57471b5d19e37516a655f7bdce5ae91efa9e9dfe6f3c5df538885c3e226ebdf1 3 | size 5236 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_frost_wisp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e4e9174dff2eb3fb6e145922ad0cb41675cad9e7f5cc414f707da58045ea55a 3 | size 4948 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_devotion.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47c0ca749594480f66e17fedb7bd00bcffa0656465d1f621358b55c4d136ac23 3 | size 6677 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_dizzy.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95b05c4abf37db58716f1db53085b630869d15831a3201e52d5494efaef9a598 3 | size 3539 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_heal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6e028c634775ab2984f6306f84ad9a9fc5fbf4a6fe3a8e7a3aa913cb3d5d15e 3 | size 5372 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_holybolt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a02a98480530aa6d04f5451a78dac16bd8ec78d2616ff97a8bc1dd8fb81a67ae 3 | size 9567 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_holysmite.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33f8aa33ecaba8af88f3b1f9d466a59384fb54057206349102c803eb2a4795da 3 | size 5209 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_innerfire.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06b0b0e2c46364985ff66781259f2f620eee59b3de747b9009b4d65e3555cf7d 3 | size 3777 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_layonhands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89f3a8ef4dd52a6dd1828deba1a9e4c94d0884384ab7a28c6290dd8894e6d2d9 3 | size 5453 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_mindsooth.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dd8e02eead7b58d7c9c204cb9b47064086103c0d5f36a1bd898973dc9b4353c 3 | size 3476 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_mindvision.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:231aa0b021cfe0e850368c2ac7743eb08db5295e30f22225071494268bd666b1 3 | size 5696 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f4966652c8512eedcaee5f764090f3460bd8ee059760795ca8eaf93ceb968e9 3 | size 4698 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_holy_sealoffury.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e99864336b010b68b76b6aca9cf8ed99fe92289f016ff231df42001ae686665 3 | size 6647 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_ice_lament.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:715df9e3f384baee286af3fc259f2d3a0f0c1fc140ed60640961cc4d4f198c9b 3 | size 4264 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_ice_magicdamage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61fada6681dc5ab1a6e3131aa59829571fa01c4db48298aab42da5aff9a20484 3 | size 3885 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_magic_magearmor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e07b23da5ac0dd01b439e1c609b244525650e1cf8564ff794faf0854d850b76 3 | size 6713 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_cyclone.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2409b0d4572ce567d6fc2ed0510f8fc8518c68fe2f0c6b510c47e94f81e5fff6 3 | size 6766 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_moonglow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32e8b96349ebec9569caee6331f97acdaac5c51356997f5065f2b254f799020c 3 | size 5116 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_nullward.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a63e0dabb681c06467da0bcd60f626917a2fb9d6b6454e86cd948c515820c3e 3 | size 6952 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_purge.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfefa497f62e9b5c74257940d9b51705f5d2f183bd6a1862af65c513b84ad837 3 | size 5415 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_sentinal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45d9113884dbdb8f9edd9a76f2b89c8a3134371a6cda6675cbb83fd6d26f2833 3 | size 3792 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_sleep.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b71596b218846a318a0a37a230d225e2957125267dd2667f88d1b548bb2522bb 3 | size 4381 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_starfall.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e31354a2f5298a36fdef661de0d60916d1b4e8e8b3f0b3a9c3b97f11a9a20c8e 3 | size 5501 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_thorns.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3603b03d9ac50dfb99aecc7e5d429b62d5f285c40d1b1f80543406c611bc5b9 3 | size 5168 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_timestop.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9deef3586dd4d1c425aab4153ea32da4c454c454680f6805b86392849181a575 3 | size 7142 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_windfury.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24fe95c4c5c3fac9ecbd05c32e4910aefa0a318cbb7983a73980802eefcf71e9 3 | size 4300 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_nature_wispheal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8336a3631c25f479802a2a2ae6964465bd2324ac62f2ac4834e779f5b1ecec76 3 | size 5440 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_charm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6ed052098927b523eecefa7bde3d3c42eff8747ebf011286a1d7b76c13f5212 3 | size 4246 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_curse.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2fcd32ac5032a169d9c572101be004cad069e7b9047baba90e9bd42f7fb9f0e 3 | size 4940 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_fumble.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a22e9900d04fccac83aac504a0d61bcf3274ac9a4aa860cd7ec29a54a71a6ee5 3 | size 4072 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_grimward.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e392ad96bba4920bc1696b926cb698717d7f81a45eaf0b4a4fed844182724ef 3 | size 6166 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_haunting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6213444c49d3828584d0def6e667688ddbf993821fe74ffaed842247da7e61d 3 | size 5250 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_manaburn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:911eb2a5d07572473cb01252d6d69010d19e93709f8977520ea4d9c14db6599d 3 | size 4144 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_requiem.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c28c87da837078df6fee04c10b5bd8ff979d9048a22713a76c255fd975c1d9ef 3 | size 5788 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_teleport.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df61b569b31302a4d3ed0ed3d659f195569e5c818205189e265b7872e11659d1 3 | size 4932 4 | -------------------------------------------------------------------------------- /QML/Assets/spell/Spell_shadow_twilight.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f7b1a1591bffe8505417efeeffd24d20f5fba56e6d3c0f9e04bdb098e07704c 3 | size 4654 4 | -------------------------------------------------------------------------------- /QML/Assets/talents/arrow-hook.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10191499657ced739287ad4de41f40f3632ca266049e9d7c612d8d9708e62679 3 | size 1514 4 | -------------------------------------------------------------------------------- /QML/Assets/talents/arrow-horizontal-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b7c4d53a8c95913382a26cd216b4c06508ad571809417c11ed66ad58028ea2 3 | size 781 4 | -------------------------------------------------------------------------------- /QML/Assets/talents/arrow-vertical-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04b6bee7b9c9b339ece613adf95df0f1f8b797182fbc4336080fb4b768e2674a 3 | size 833 4 | -------------------------------------------------------------------------------- /QML/Assets/talents/arrow-vertical-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99a8fc6f0a90d1cc86b7f2db144456b9f03437d4f3eb91165c2afc7c406114c6 3 | size 1500 4 | -------------------------------------------------------------------------------- /QML/Assets/talents/arrow-vertical-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31eec46474ba4ece14b4ac295589c5c3fe2126417d92a22925a9b615551134bc 3 | size 1745 4 | -------------------------------------------------------------------------------- /QML/Assets/warlock/warlock_curses.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33916fa5cab56d5e2ff5f256d1d9725c37a4e4a0d8509de8661ba1db9d004de1 3 | size 150027 4 | -------------------------------------------------------------------------------- /QML/Assets/warlock/warlock_summoning.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06d20d2ab6402a590130e9d8159aeea3cabd97ad8ec79b481c312a2cc2a66c1a 3 | size 172472 4 | -------------------------------------------------------------------------------- /QML/Assets/warrior/warrior_arms.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e585a6c575081edf1ab30afb5c714fe98a2390bdbff777a1502ab98e361e7f1 3 | size 53563 4 | -------------------------------------------------------------------------------- /QML/Assets/warrior/warrior_arms_old.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f522424ecb98b71b8df03099fef8db6482249b02d9548524e096e9d387185bb1 3 | size 68139 4 | -------------------------------------------------------------------------------- /QML/Assets/warrior/warrior_fury.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4799aca0655df74eecc458fcb4ee6c54788436602c7a07c6ebefd8ab06138ce4 3 | size 61804 4 | -------------------------------------------------------------------------------- /QML/Assets/warrior/warrior_protection.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d22fa17330b0ddca875fcf1b79cf5a12ccfda7c44e9f5201afca0ec037bae1cf 3 | size 54161 4 | -------------------------------------------------------------------------------- /Rulesets/Rulesets.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum Ruleset 4 | { 5 | Standard = 0, 6 | Vaelastrasz, 7 | Loatheb 8 | }; 9 | -------------------------------------------------------------------------------- /Test/TestObject.cpp: -------------------------------------------------------------------------------- 1 | #include "TestObject.h" 2 | 3 | TestObject::TestObject(EquipmentDb* equipment_db) : equipment_db(equipment_db) {} 4 | -------------------------------------------------------------------------------- /Utils/Check.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #define check(p, msg) \ 6 | if (p == false) \ 7 | throw std::logic_error(msg) 8 | --------------------------------------------------------------------------------