mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 13:47:46 +00:00
18 lines
267 B
ChaiScript
18 lines
267 B
ChaiScript
// Skill Name: Raise
|
|
// Skill ID: 125
|
|
|
|
class skillDef_125Def
|
|
{
|
|
def skillDef_125Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
target.addStatusEffectByIdIfNotExist( 148, 60000, player, 0 );
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_125 = skillDef_125Def();
|