Home · skill · GM_MassGrab_Passive
Dealing and taking damage has a 0.2 chance to generate a stack of Buzzing, stacking up to 10 times.
At 10 stacks, summons an angry bee that starts attacking enemies for 15, dealing 80% Faith every 3.
At 10 stacks, summons an angry bee that starts attacking enemies for 15, dealing 80% Faith every 3.
Properties
- status
- Done
- type
- WeaponPassive
- nature
- Passive
Referenced by
item (1)
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",
"type": "WeaponPassive",
"nature": "Passive",
"texts": {
"name": "Mad Buzz",
"desc": "Dealing and taking damage has a ::chance:: chance to generate a stack of ::ref_name::, stacking up to ::ref_stacks:: times.\nAt ::ref_stacks:: stacks, summons an angry bee that starts attacking enemies for ::ref_dur1::, dealing ::ref2_dmg:: every ::ref_time::.",
"refs": {
"ref": "GM_MassGrab_Passive_Status",
"ref2": "SummonBee_HoneyBolt",
"ref3": "GM_MassGrab_Skill2"
},
"rankDescs": [
{
"rank": 2,
"desc": "Bees that walk through ::ref3_name::'s area enrage, increasing damage they deal by ::damage%::.",
"flags": 0
},
{
"rank": 3,
"desc": "Summoning a bee extends the duration of all summoned bees by ::ref_time::.",
"flags": 0
}
]
},
"anim": {},
"steps": [],
"flags": [],
"mastery": [],
"props": {},
"vars": {
"chance": 0.2,
"damage": 0.5
},
"script": "function onInflictDamage(dmg) {\n\ttryAddStatus();\n}\n\nfunction onReceiveDamage(dmg) {\n\ttryAddStatus();\n}\n\nfunction tryAddStatus() {\n\tif (checkProba(vars.chance)) {\n\t\taddStatus(owner, Skill.GM_MassGrab_Passive_Status);\n\t}\n}",
"_xrefs": [
{
"from_sheet": "item",
"from_id": "GM_MassGrab",
"via_field": "skills"
}
]
}