1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 05:57:45 +00:00

Forgot a script for Medica II;

This commit is contained in:
Maru 2017-09-19 00:12:35 -03:00
parent f2b486dbde
commit 4494a826fe

View file

@ -0,0 +1,19 @@
// 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();