mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 05:37:45 +00:00
18 lines
263 B
ChaiScript
18 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();
|