mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 06:47:45 +00:00
19 lines
259 B
ChaiScript
19 lines
259 B
ChaiScript
![]() |
// Skill Name: Raise
|
||
|
// Skill ID: 125
|
||
|
|
||
|
class skillDef_125Def
|
||
|
{
|
||
|
def skillDef_125Def()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
def onFinish( player, target )
|
||
|
{
|
||
|
target.addStatusEffectByIdIfNotExist( 148, 60000, 0 );
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
GLOBAL skillDef_125 = skillDef_125Def();
|