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