mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
19 lines
450 B
Lua
19 lines
450 B
Lua
--[[
|
|
Script Name : Spells/Commoner/EnvironmentalAdaptabilityHeat.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.05.11 01:05:07
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target)
|
|
level = GetLevel(Caster)
|
|
AddSpellBonus(Caster, 201, math.floor(level * 2.5))
|
|
Say(Caster, "Placeholder resist calculation")
|
|
end
|
|
|
|
function remove (Caster, Target)
|
|
RemoveSpellBonus()
|
|
end
|
|
|
|
|