Home · skill · Halos_Upgrade

Your Attacks have a 0.04 chance to reduce the cooldown of your Weapon Skills by 0.5.

Properties

status
QA
nature
Passive
Raw data
{
  "status": "QA",
  "id": "Halos_Upgrade",
  "nature": "Passive",
  "texts": {
    "desc": "Your [Attack]s have a ::chance:: chance to reduce the cooldown of your [WeaponSkill]s by ::time::.",
    "name": "Weapon Upgraded"
  },
  "anim": {},
  "steps": [],
  "flags": [],
  "mastery": [],
  "props": {
    "rankOverride": [
      {
        "minRank": 2,
        "vars": {
          "chance": 0.05
        }
      },
      {
        "minRank": 3,
        "vars": {
          "chance": 0.06
        }
      },
      {
        "minRank": 4,
        "vars": {
          "chance": 0.07
        }
      },
      {
        "minRank": 5,
        "vars": {
          "chance": 0.08
        }
      }
    ]
  },
  "vars": {
    "time": 0.5,
    "chance": 0.04
  },
  "script": "function onSkillProc(hit) {\n\tif (hit.skill?.isBaseAttack()) {\n\t\tif (checkProba(vars.chance))\n\t\t\treduceWeaponsCooldown(vars.time, owner);\n\t}\n}"
}