Skip to content
Snippets Groups Projects
Commit 6b84e1f1 authored by Lisa Greene's avatar Lisa Greene
Browse files

Prevent frantic summoning letting summoner randbosses summon 10 times a turn

parent e8ce55e9
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,6 @@ newTalent{
end,
}
newTalent{
name = "Shell Shield",
type = {"technique/other",1},
......@@ -340,7 +339,7 @@ newTalent{
on_pre_use_ai = aiSummonPreUse,
aiSummonGrid = aiSummonGridRanged,
tactical = { BUFF = 0.2 },
getReduc = function(self, t) return self:combatTalentLimit(t, 100, 25, 75) end, -- Limit <100%
getReduc = function(self, t) return self:combatTalentLimit(t, 85, 25, 70) end, -- Limit <85%
getDuration = function(self, t) return math.floor(self:combatTalentLimit(t, 25, 2.7, 5.6)) end, -- Limit <25
action = function(self, t)
self:setEffect(self.EFF_FRANTIC_SUMMONING, t.getDuration(self, t), {power=t.getReduc(self, t)})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment