mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 05:37:45 +00:00
19 lines
336 B
ChaiScript
19 lines
336 B
ChaiScript
// Skill Name: Medica II
|
|
// Skill ID: 133
|
|
|
|
class skillDef_133Def
|
|
{
|
|
def skillDef_133Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
player.handleScriptSkill( STD_HEAL, 133, 200, 0, player );
|
|
target.addStatusEffectByIdIfNotExist( 150, 30000, player, 50 );
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_133 = skillDef_133Def();
|