Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.
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
20 changes: 17 additions & 3 deletions src/Data/Skills/act_int.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12016,9 +12016,19 @@ skills["PainOfferingPlayer"] = {
label = "Pain Offering",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "pain_offering",
statMap = {
["pain_offering_attack_and_cast_speed_+%"] = {
mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
["pain_offering_damage_+%_final"] = {
mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
},
baseFlags = {
minion = true,
area = true,
},
baseMods = {
skill("buffMinions", true),
skill("buffNotPlayer", true),
},
constantStats = {
{ "base_skill_effect_duration", 6000 },
Expand Down Expand Up @@ -15161,8 +15171,12 @@ skills["SoulOfferingPlayer"] = {
label = "Soul Offering",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "power_offering",
statMap = {
["power_offering_buff_spell_damage_+%_final"] = {
mod("Damage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
},
baseFlags = {
minion = true,
duration = true,
},
constantStats = {
Expand Down
19 changes: 17 additions & 2 deletions src/Export/Skills/act_int.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@
#mods
#skillEnd

#skill BonestormPlayer

Check warning on line 114 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Bonestorm)
#startSets
#set BonestormPlayer

Check warning on line 116 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Bonestorm)
#flags spell duration
statMap = {
["bone_spear_minimum_added_attack_physical_damage_taken"] = {
mod("SelfPhysicalMin", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Bonestorm", effectCond = "BonestormAddedDamage" }),

Check warning on line 120 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Bonestorm)

Check warning on line 120 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Bonestorm)
},
["bone_spear_maximum_added_attack_physical_damage_taken"] = {
mod("SelfPhysicalMax", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Bonestorm", effectCond = "BonestormAddedDamage" }),

Check warning on line 123 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Bonestorm)
},
},
#mods
Expand Down Expand Up @@ -221,9 +221,9 @@
#skillEnd

#from item
#skill WeaponGrantedChaosboltPlayer

Check warning on line 224 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Chaosbolt)
#startSets
#set WeaponGrantedChaosboltPlayer

Check warning on line 226 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Chaosbolt)
#flags spell projectile
#mods
#skillEnd
Expand Down Expand Up @@ -425,12 +425,12 @@
#skillEnd

#from item
#skill FireboltPlayer

Check warning on line 428 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Firebolt)
#startSets
#set FireboltPlayer

Check warning on line 430 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Firebolt)
#flags spell projectile
#mods
#set FireboltExplosionPlayer

Check warning on line 433 in src/Export/Skills/act_int.txt

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Firebolt)
#flags spell area
#mods
#skillEnd
Expand Down Expand Up @@ -777,7 +777,17 @@
#skill PainOfferingPlayer
#startSets
#set PainOfferingPlayer
#flags minion area
#flags
statMap = {
["pain_offering_attack_and_cast_speed_+%"] = {
mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
["pain_offering_damage_+%_final"] = {
mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
},
#baseMod skill("buffMinions", true)
#baseMod skill("buffNotPlayer", true)
#mods
#skillEnd

Expand Down Expand Up @@ -992,7 +1002,12 @@
#skill SoulOfferingPlayer
#startSets
#set SoulOfferingPlayer
#flags minion duration
#flags duration
statMap = {
["power_offering_buff_spell_damage_+%_final"] = {
mod("Damage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }),
},
},
#mods
#skillEnd

Expand Down
Loading