mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 13:47:46 +00:00
19 lines
263 B
ChaiScript
19 lines
263 B
ChaiScript
![]() |
// Skill Name: Bootshine
|
||
|
// Skill ID: 53
|
||
|
|
||
|
class skillDef_53Def
|
||
|
{
|
||
|
def skillDef_53Def()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
def onFinish( player, target )
|
||
|
{
|
||
|
player.handleScriptSkill( STD_DAMAGE, 53, 140, 0, target );
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
GLOBAL skillDef_53 = skillDef_53Def();
|