Home · skill · DS_Bladeleaf_Combo_Status
Using your Signature Skill consumes all stacks and throws them at the nearest enemy, dealing them 35% Strength + 35% Intellect.
Properties
- status
- Done
- nature
- Status
- duration
- 6
- steps
Raw data
{
"status": "Done",
"gfx": {
"file": "UI/icons/atlas_weapon_Dual_Sword_96px.png",
"size": 48,
"x": 2,
"y": 0,
"width": 2,
"height": 2
},
"id": "DS_Bladeleaf_Combo_Status",
"nature": "Status",
"texts": {
"name": "Bladeleaf",
"desc": "Using your [SignatureSkill] consumes all stacks and throws them at the nearest enemy, dealing them ::ref_dmg::."
},
"anim": {
"file": "Anim/Human/Dual/_Daggers/Skill/Anim_Human_Daggers_Ambush.fbx",
"startFrame": 3
},
"duration": 6,
"steps": [
{
"on": 0,
"props": {},
"duration": -1,
"type": 11
},
{
"on": 13,
"props": {
"projectile": {
"base": "MissileHoming",
"fxSet": "Projectile_Flower_Bladeleaf_Spawn",
"scale": 1
}
},
"type": 7,
"id": "Projectile"
},
{
"on": 2,
"props": {},
"effects": [
{
"effect": 0,
"scaling": [
{
"ratio": 0.35,
"atb": "Strength"
},
{
"ratio": 0.35,
"atb": "Intellect"
}
],
"affinity": "Magic",
"flags": 0
}
],
"type": 6
}
],
"flags": [],
"mastery": [],
"props": {
"status": {
"types": [
{
"type": "Buff"
}
],
"maxStacks": 2
},
"rankOverride": [
{
"minRank": 2,
"props": {
"maxStacks": 4
}
}
]
},
"vars": {
"var1": 0.5
},
"script": "function onSkillProc(ctx) {\n\tif(ctx.skill.isWeaponSkill()) {\n\t\tctx.dmgMult += vars.var1;\n\t\tstop();\n\t}\n}\n\nfunction onStacksChange() {\n\tvar diff = status.stacks - skill.getProjectiles().length;\n\tfor (i in 0...diff) {\n\t\tplayStep(Steps.Projectile);\n\t}\n}\n\nfunction onStatusEnd(s,elapsed) {\n\tif (s.kind == status.kind && elapsed) {\n\t\tdestroyProjectiles();\n\t}\n}\n\nfunction onProjectileCreated(proj) {\n\thoverProjectile(proj, status.getMaxStacks());\n}\n\nfunction onUseSkill(s) {\n\tif (s.skill.isSignature()) {\n\t\tskill.fireProjectiles(s.aimTarget);\n\t\tstatus.consume();\n\t}\n}"
}