mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-23 21:27:45 +00:00
19 lines
320 B
ChaiScript
19 lines
320 B
ChaiScript
// Skill Name: Sprint
|
|
// Skill ID: 3
|
|
|
|
class skillDef_121Def
|
|
{
|
|
def skillDef_121Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
player.handleScriptSkill( STD_DAMAGE, 121, 5, 0, target );
|
|
target.addStatusEffectByIdIfNotExist(143, 20000, 0);
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_121 = skillDef_121Def();
|