mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
Add a config boolean to enable the retro spell learning system. Main changes: - Add retro spell learning support behind a configuration option. - Update all spells to respect the new config. - Update spell-related NPCs to handle the learning system according to TibiaWiki behavior. - Update Dawnport NPCs for the retro spell learning flow. - Update the Rookgaard Oracle to handle Monk vocation selection. Validation: - Debugged and tested on tibiatales.com using the Canary/TFS Crystal server distribution. This allows servers to enable classic spell-learning behavior via config while keeping the existing spell behavior configurable.
52 lines
1.3 KiB
Lua
52 lines
1.3 KiB
Lua
function onTargetCreature(creature, target)
|
|
local player = creature:getPlayer()
|
|
|
|
if target:isPlayer() then
|
|
return false
|
|
end
|
|
if target:getMaster() then
|
|
return true
|
|
end
|
|
|
|
local condition = Condition(CONDITION_ATTRIBUTES)
|
|
condition:setParameter(CONDITION_PARAM_TICKS, 16000)
|
|
condition:setParameter(CONDITION_PARAM_BUFF_DAMAGERECEIVED, 105)
|
|
|
|
local grade = 0
|
|
if creature and creature:getPlayer() then
|
|
grade = creature:upgradeSpellsWOD("Drain_Body_Spells")
|
|
end
|
|
condition:setParameter(CONDITION_PARAM_DRAIN_BODY, grade)
|
|
|
|
target:addCondition(condition)
|
|
return true
|
|
end
|
|
|
|
local combat = Combat()
|
|
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
|
|
combat:setArea(createCombatArea(AREA_CIRCLE3X3))
|
|
combat:setCallback(CALLBACK_PARAM_TARGETCREATURE, "onTargetCreature")
|
|
|
|
local spell = Spell("instant")
|
|
|
|
function spell.onCastSpell(creature, var, isHotkey)
|
|
local target = creature:getTarget()
|
|
if target then
|
|
var = Variant(target)
|
|
end
|
|
return combat:execute(creature, var)
|
|
end
|
|
|
|
spell:group("support", "crippling")
|
|
spell:id(243)
|
|
spell:name("Expose Weakness")
|
|
spell:words("exori moe")
|
|
spell:castSound(SOUND_EFFECT_TYPE_SPELL_EXPOSE_WEAKNESS)
|
|
spell:level(275)
|
|
spell:mana(400)
|
|
spell:isSelfTarget(true)
|
|
spell:cooldown(12 * 1000)
|
|
spell:groupCooldown(2 * 1000, 12 * 1000)
|
|
spell:vocation("sorcerer;true", "master sorcerer;true")
|
|
|
|
spell:register()
|