mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 05:37:45 +00:00
18 lines
266 B
ChaiScript
18 lines
266 B
ChaiScript
// Skill Name: Repose
|
|
// Skill ID: 128
|
|
|
|
class skillDef_128Def
|
|
{
|
|
def skillDef_128Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
target.addStatusEffectByIdIfNotExist( 3, 30000, player, 0 );
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_128 = skillDef_128Def();
|