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
24 changes: 24 additions & 0 deletions src/Data/Skills/minion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1444,4 +1444,28 @@ skills["MPWExpeditionSummonedArbalestProjectile"] = {
levels = {
[1] = { levelRequirement = 1, },
},
}
skills["ReaperConsumeMinionForBuff"] = {
name = "Consume",
hidden = true,
color = 4,
skillTypes = { },
statDescriptionScope = "skill_stat_descriptions",
castTime = 1,
baseFlags = {
spell = true,
},
baseMods = {
mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", 40) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", 20) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", 20) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
skill("buffAllies", true),
},
qualityStats = {
},
stats = {
},
levels = {
[1] = { levelRequirement = 0, duration = 6, cooldown = 25, statInterpolation = { }, cost = { }, },
},
}
7 changes: 7 additions & 0 deletions src/Export/Skills/minion.txt
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,13 @@ skills["InfernalLegion"] = {
#flags attack area
#mods

#skill ReaperConsumeMinionForBuff Consume
#flags spell
#baseMod mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", 40) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
#baseMod mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", 20) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
#baseMod mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", 20) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper" }, { type = "GlobalEffect", effectType = "Buff" }),
#baseMod skill("buffAllies", true),

#skill MPWExpeditionSummonedArbalestProjectile Projectile Attack
#flags attack projectile
#mods
4 changes: 4 additions & 0 deletions src/Modules/ConfigOptions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,10 @@ return {
{ var = "summonLightningGolemEnableWrath", type = "check", label = "Enable Wrath Aura:", ifSkill = "Summon Lightning Golem", apply = function(val, modList, enemyModList)
modList:NewMod("SkillData", "LIST", { key = "enable", value = true }, "Config", { type = "SkillId", skillId = "LightningGolemWrath" })
end },
{ label = "Summon Reaper:", ifSkill = "Summon Reaper" },
{ var = "summonReaperConsumeRecently", type = "check", label = "Reaper Consumed recently?", ifSkill = "Summon Reaper", apply = function(val, modList, enemyModList)
modList:NewMod("SkillData", "LIST", { key = "enable", value = true }, "Config", { type = "SkillId", skillId = "ReaperConsumeMinionForBuff" })
end },
{ label = "Thirst for Blood:", ifSkill = "Thirst for Blood" },
{ var = "nearbyBleedingEnemies", type = "count", label = "# of Nearby Bleeding Enemies:", ifSkill = "Thirst for Blood", apply = function(val, modList, enemyModList)
modList:NewMod("Multiplier:NearbyBleedingEnemies", "BASE", val, "Config" )
Expand Down