Home · skill · GM_MassGrab_Passive_Status
At 10 stacks, summons an angry bee that starts attacking enemies for 15, dealing 80% Faith every 3.
Properties
- status
- Done
- nature
- Status
- duration
- 10
- steps
Raw data
{
"status": "Done",
"gfx": {
"file": "UI/icons/atlas_weapon_Great_Mace_96PX.png",
"size": 48,
"x": 8,
"y": 0,
"width": 2,
"height": 2
},
"id": "GM_MassGrab_Passive_Status",
"nature": "Status",
"texts": {
"name": "Buzzing",
"desc": "At ::stacks:: stacks, summons an angry bee that starts attacking enemies for ::dur1::, dealing ::ref_dmg:: every ::time::.",
"refs": {
"ref": "SummonBee_HoneyBolt"
}
},
"anim": {},
"duration": 10,
"steps": [
{
"on": 13,
"props": {
"summon": {
"unit": "Summon_Bee"
}
},
"type": 23,
"id": "Summon",
"duration": "dur1"
}
],
"flags": [],
"mastery": [],
"props": {
"status": {
"types": [
{
"type": "Buff"
}
],
"maxStacks": 10
}
},
"vars": {
"time": 3,
"dur1": 15
},
"script": "function onStacksChange() {\n\tif (hasStatusMaxStacked(owner, skill.kind)) {\n\t\tplayStep(Steps.Summon);\n\t\tnextFrame(() -> {status?.consume();});\n\t\tif (rank >= 3) {\n\t\t\textendSummonDuration(vars.time);\n\t\t}\n\t}\n}\nfunction onDamageEval(hit) {\n\thit.dmgAdd += 20000;\n}"
}