Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Data/SkillStatMap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ return {
["skill_double_hits_when_dual_wielding"] = {
skill("doubleHitsWhenDualWielding", true),
},
["poison_duration_is_skill_duration"] = {
skill("poisonIsSkillEffect", true),
},
["area_of_effect_+%_while_not_dual_wielding"] = {
mod("AreaOfEffect", "INC", nil, 0, 0, { type = "Condition", var = "DualWielding", neg = true })
},
Expand Down
3 changes: 0 additions & 3 deletions src/Data/Skills/act_dex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8923,9 +8923,6 @@ skills["ViperStrike"] = {
melee = true,
duration = true,
},
baseMods = {
skill("poisonIsSkillEffect", true),
},
qualityStats = {
Default = {
{ "attack_speed_+%", 0.5 },
Expand Down
35 changes: 35 additions & 0 deletions src/Data/Skills/spectre.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2588,6 +2588,41 @@ skills["MonsterSplitIceSpear"] = {
[2] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.8, critChance = 7, levelRequirement = 68, statInterpolation = { 3, 3, }, },
},
}
skills["MonsterViperStrike"] = {
name = "Viper Strike",
hidden = true,
color = 4,
baseEffectiveness = 0.64999997615814,
incrementalEffectiveness = 0.025499999523163,
description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, will strike with both weapons. Requires a claw, dagger or sword.",
skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, },
weaponTypes = {
["Claw"] = true,
["Thrusting One Handed Sword"] = true,
["Two Handed Sword"] = true,
["Dagger"] = true,
["One Handed Sword"] = true,
},
statDescriptionScope = "debuff_skill_stat_descriptions",
castTime = 1,
baseFlags = {
attack = true,
melee = true,
duration = true,
},
constantStats = {
{ "physical_damage_%_to_add_as_chaos", 10 },
{ "base_chance_to_poison_on_hit_%", 100 },
{ "base_skill_effect_duration", 4000 },
},
stats = {
"poison_duration_is_skill_duration",
"visual_hit_effect_chaos_is_green",
},
levels = {
[1] = { levelRequirement = 4, cost = { Mana = 5, }, },
},
}
skills["MonsterWarlordsMark"] = {
name = "Warlord's Mark",
hidden = true,
Expand Down
20 changes: 20 additions & 0 deletions src/Data/Spectres.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2381,6 +2381,26 @@ minions["Metadata/Monsters/Spiders/SpiderThornFlickerStrike"] = {
modList = {
},
}
minions["Metadata/Monsters/Spiders/SpiderThornViperStrikeFlickerStrike"] = {
name = "Deadly Tarantula",
life = 2.21,
fireResist = 40,
coldResist = 40,
lightningResist = 40,
chaosResist = 25,
damage = 2.45,
damageSpread = 0.2,
attackTime = 0.945,
attackRange = 12,
accuracy = 1,
skillList = {
"MeleeAtAnimationSpeed",
"MonsterViperStrike",
"MonsterFlickerStrike",
},
modList = {
},
}
-- Statue
minions["Metadata/Monsters/Statue/DaressoStatueLargeMaleSpear"] = {
name = "Towering Figment",
Expand Down
1 change: 1 addition & 0 deletions src/Export/Minions/Spectres.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ local minions, mod = ...
#spectre Metadata/Monsters/Snake/SnakeScorpionMultiShot
-- Spider
#spectre Metadata/Monsters/Spiders/SpiderThornFlickerStrike
#spectre Metadata/Monsters/Spiders/SpiderThornViperStrikeFlickerStrike
-- Statue
#spectre Metadata/Monsters/Statue/DaressoStatueLargeMaleSpear
#spectre Metadata/Monsters/Statue/StoneStatueMaleBow
Expand Down
1 change: 0 additions & 1 deletion src/Export/Skills/act_dex.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,6 @@ local skills, mod, flag, skill = ...
mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "Condition", var = "DualWielding" }),
},
},
#baseMod skill("poisonIsSkillEffect", true)
#mods

#skill VolatileDead
Expand Down
6 changes: 5 additions & 1 deletion src/Export/Skills/spectre.txt
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,10 @@ local skills, mod, flag, skill = ...
#flags spell projectile
#mods

#skill MonsterViperStrike Viper Strike
#flags attack melee duration
#mods

#skill MonsterWarlordsMark Warlord's Mark
#flags spell curse area duration
statMap = {
Expand Down Expand Up @@ -1221,4 +1225,4 @@ skills["DelveMonsterEnfeebleOnHit"] = {
levels = {
[8] = { 9700, 4, -13, -24, -12, 600, levelRequirement = 1, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { }, },
},
}
}