21 lines
No EOL
737 B
Lua
Executable file
21 lines
No EOL
737 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/SquashPie.lua
|
|
Script Purpose :
|
|
Script Author : Neatz09
|
|
Script Date : 1/31/2021
|
|
Script Notes :
|
|
--]]
|
|
|
|
function cast(Item, Player)
|
|
Spell = GetSpell(5463, 2, "Spells/Commoner/HomemadeMealGenericStrSta.lua")
|
|
Regenz = 158.8
|
|
Stat = 11.0
|
|
newDuration = 81000
|
|
SetSpellData(Spell, "duration1", newDuration)
|
|
SetSpellData(Spell, "duration2", newDuration)
|
|
SetSpellDataIndex(Spell, 0, Regenz)
|
|
SetSpellDataIndex(Spell, 1, Stat)
|
|
SetSpellDisplayEffect(Spell, 0, "description", "Increases STR and STA of target by " .. Stat)
|
|
SetSpellDisplayEffect(Spell, 1, "description", "Increases Out-of-Combat Health Regeneration of target by " .. Regenz)
|
|
CastCustomSpell(Spell, Player, Player)
|
|
end |