Skip to content

Commit

Permalink
Merge pull request #6962 from WinterSolstice8/dread_shriek
Browse files Browse the repository at this point in the history
[lua] Dread Shriek adjustments per spreadsheet
  • Loading branch information
zach2good authored Feb 6, 2025
2 parents 3d18f30 + 796099c commit c88bb0f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion scripts/actions/mobskills/dread_shriek.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,22 @@ mobskillObject.onMobSkillCheck = function(target, mob, skill)
return 0
end

-- https://docs.google.com/spreadsheets/d/1YBoveP-weMdidrirY-vPDzHyxbEI2ryECINlfCnFkLI/edit?gid=57955395#gid=57955395
-- TODO: what's the boosted para rate for NMs? needs research
-- Cyranuce M Cutauleon has a very strong paralyze from this
mobskillObject.onMobWeaponSkill = function(target, mob, skill)
skill:setMsg(xi.mobskills.mobStatusEffectMove(mob, target, xi.effect.PARALYSIS, 100, 0, 60))
local power = 45

if mob:isNM() then
power = 90
end

-- Cyranuce M Cutauleon
if mob:getPool() == 884 then
power = 100 -- yes, really
end

skill:setMsg(xi.mobskills.mobStatusEffectMove(mob, target, xi.effect.PARALYSIS, power, 0, 60))

return xi.effect.PARALYSIS
end
Expand Down

0 comments on commit c88bb0f

Please sign in to comment.