mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
18 lines
246 B
ChaiScript
18 lines
246 B
ChaiScript
// Skill Name: Sprint
|
|
// Skill ID: 3
|
|
|
|
class skillDef_121Def
|
|
{
|
|
def skillDef_121Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
target.addStatusEffectById(143, 20000, 0);
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_121 = skillDef_121Def();
|