mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 22:17:45 +00:00
19 lines
246 B
ChaiScript
19 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();
|