1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-24 05:37:45 +00:00
sapphire/bin/scripts/chai/skill/skillDef_121.chai

20 lines
320 B
ChaiScript
Raw Normal View History

// Skill Name: Sprint
// Skill ID: 3
class skillDef_121Def
{
def skillDef_121Def()
{
}
def onFinish( player, target )
{
2017-08-15 16:19:55 +02:00
player.handleScriptSkill( STD_DAMAGE, 121, 5, 0, target );
target.addStatusEffectByIdIfNotExist(143, 20000, 0);
}
};
GLOBAL skillDef_121 = skillDef_121Def();