Home · skill · Axe_Boomerang_Skill_Passive
Increases the Critical Chance of all allies within 40 by 3%.
Properties
- status
- Bug
- type
- WeaponPassive
- nature
- Passive
- cooldown
- 3
- steps
- affixes
Referenced by
item (1)
Raw data
{
"status": "Bug",
"gfx": {
"file": "UI/icons/atlas_weapon_Axe1H_96px.png",
"size": 96,
"x": 4,
"y": 0
},
"id": "Axe_Boomerang_Skill_Passive",
"type": "WeaponPassive",
"nature": "Passive",
"texts": {
"desc": "Increases the [CritChance] of all allies within ::range:: by ::val1%::.",
"name": "Bloodrage Aura",
"rankDescs": [
{
"rank": 2,
"desc": "[CritChance] bonus increased to ::var1%::.",
"flags": 1
},
{
"rank": 3,
"desc": "When you perform a [Physical] critical strike, heal yourself for ::var2%:: of your [MaxHealth] (::time:: cooldown).",
"flags": 0
}
]
},
"anim": {},
"cooldown": 3,
"steps": [
{
"on": 13,
"props": {},
"id": "Heal",
"type": 6,
"effects": [
{
"effect": 1,
"scaling": [],
"flags": 0,
"affinity": "Raw",
"dynVal": 1
}
]
}
],
"affixes": [
{
"target": {
"attribute": "CritChance"
},
"target2": {},
"ref": "TAttribute_Flat",
"conds": {
"maxRank": 1
},
"mod": {},
"val": 3
},
{
"target": {
"attribute": "CritChance"
},
"target2": {},
"ref": "TAttribute_Flat",
"conds": {
"minRank": 2
},
"mod": {},
"val": 5
}
],
"flags": [],
"mastery": [],
"props": {
"rankOverride": [
{
"minRank": 2,
"vars": {
"var1": 0.05
}
}
]
},
"vars": {
"var1": 0.03,
"var2": 0.1,
"time": 3,
"range": 40
},
"script": "function onInflictDamage(dmg) {\n\tif (rank >= 3 && dmg.isPhysical && dmg.critical && !isInCooldown()) {\n\t\tsetDynVal(1, vars.var2 * owner.maxHealth);\n\t\tplayStep(Steps.Heal, owner);\n\t\tconsumeCooldown();\n\t}\n}",
"_xrefs": [
{
"from_sheet": "item",
"from_id": "Axe_Boomerang",
"via_field": "skills"
}
]
}