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
58 changes: 58 additions & 0 deletions src/Data/Gems.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,25 @@ return {
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemHeavyStrikeAltY"] = {
name = "Heavy Strike of Trarthus",
baseTypeName = "Heavy Strike of Trarthus",
gameId = "Metadata/Items/Gems/SkillGemHeavyStrike",
variantId = "HeavyStrikeAltY",
grantedEffectId = "HeavyStrikeAltY",
tags = {
strength = true,
grants_active_skill = true,
attack = true,
melee = true,
strike = true,
},
tagString = "Attack, Melee, Strike",
reqStr = 100,
reqDex = 0,
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemDominatingBlow"] = {
name = "Dominating Blow",
baseTypeName = "Dominating Blow",
Expand Down Expand Up @@ -7845,6 +7864,26 @@ return {
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemSunderAltY"] = {
name = "Sunder of Trarthus",
baseTypeName = "Sunder of Trarthus",
gameId = "Metadata/Items/Gems/SkillGemSunder",
variantId = "SunderAltY",
grantedEffectId = "SunderAltY",
tags = {
strength = true,
grants_active_skill = true,
attack = true,
area = true,
slam = true,
melee = true,
},
tagString = "Attack, AoE, Slam, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemFrostBolt"] = {
name = "Frostbolt",
baseTypeName = "Frostbolt",
Expand Down Expand Up @@ -9900,6 +9939,25 @@ return {
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemChainHookAltY"] = {
name = "Chain Hook of Trarthus",
baseTypeName = "Chain Hook of Trarthus",
gameId = "Metadata/Items/Gems/SkillGemChainHook",
variantId = "ChainHookAltY",
grantedEffectId = "ChainHookAltY",
tags = {
strength = true,
grants_active_skill = true,
attack = true,
area = true,
melee = true,
},
tagString = "Attack, AoE, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemSupportCloseCombat"] = {
name = "Close Combat",
gameId = "Metadata/Items/Gems/SupportGemCloseCombat",
Expand Down
3 changes: 3 additions & 0 deletions src/Data/SkillStatMap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,9 @@ return {
["chance_to_deal_double_damage_%"] = {
mod("DoubleDamageChance", "BASE", nil)
},
["chance_to_deal_double_damage_%_per_10_intelligence"] = {
mod("DoubleDamageChance", "BASE", nil, 0, 0, { type = "PerStat", stat = "Int", div = 10 }),
},
["chance_to_deal_double_damage_%_vs_bleeding_enemies"] = {
mod("DoubleDamageChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Bleeding"}),
},
Expand Down
Loading