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.
44 lines
1.2 KiB
Lua
44 lines
1.2 KiB
Lua
local SPELL_BASE_POWER = 62
|
|
|
|
local combat = Combat()
|
|
combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
|
|
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_CLAW_WHITE)
|
|
combat:setParameter(COMBAT_PARAM_BLOCKARMOR, 1)
|
|
combat:setParameter(COMBAT_PARAM_USECHARGES, 1)
|
|
|
|
function onGetFormulaValues(player, skill, attack, factor)
|
|
local damageHealing = player:calculateFlatDamageHealing()
|
|
|
|
local damage = SPELL_BASE_POWER * (skill / 100) * (attack / 10) + damageHealing
|
|
|
|
local min = damage - (damage / 10)
|
|
local max = damage + (damage / 10)
|
|
|
|
return player:getHarmonyDamage(min, max)
|
|
end
|
|
|
|
combat:setCallback(CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
|
|
|
|
local spell = Spell("instant")
|
|
|
|
function spell.onCastSpell(creature, var)
|
|
return combat:execute(creature, var)
|
|
end
|
|
|
|
spell:group("attack")
|
|
spell:id(293)
|
|
spell:name("Devastating Knockout")
|
|
spell:words("exori gran nia")
|
|
spell:castSound(SOUND_EFFECT_TYPE_SPELL_BRUTAL_STRIKE)
|
|
spell:level(125)
|
|
spell:mana(210)
|
|
spell:isPremium(true)
|
|
spell:range(1)
|
|
spell:needTarget(true)
|
|
spell:blockWalls(true)
|
|
spell:cooldown(24 * 1000)
|
|
spell:groupCooldown(2 * 1000)
|
|
|
|
spell:monkSpellType(MonkSpell_Spender)
|
|
spell:vocation("monk;true", "exalted monk;true")
|
|
spell:register()
|