FareverDB

Bonethrow

Axe_Boomerang_Skill1 in Skills

Throws a sharpen bone at an enemy, dealing 65% Strength + 65% Dexterity Physical and causing them to bleed for 40% of the damage dealt over 8. The bone then jumps to 2 enemies.

id
Axe_Boomerang_Skill1
type
7
flags
0
notes
Ne doit pas bounce 2 fois sur la même target // multi scaling ?
nature
2
script
function onDamage(dmg) { var amount = dmg.amount * vars.var1; addStatus(dmg.target, Skill.Axe_Boomerang_Skill1_Status, amount); } function onDamageEval(hit) { if( rank >= 3 ) { hit.critDmgMult += vars.var2; } }
status
2
cooldown
15
duration
0.4
Raw data
{
  "id": "Axe_Boomerang_Skill1",
  "gfx": {
    "x": 5,
    "y": 0,
    "file": "UI/icons/atlas_weapon_Axe1H_96px.png",
    "size": 96
  },
  "anim": {
    "file": "Anim/Human/OneHanded/Skill/Anim_Human_OneHanded_Throw.fbx",
    "blend": 0.05
  },
  "type": 7,
  "vars": {
    "var1": 0.4,
    "var2": 0.2,
    "var3": 2
  },
  "flags": 0,
  "notes": "Ne doit pas bounce 2 fois sur la même target // multi scaling ?",
  "props": {
    "rankOverride": [
      {
        "vars": {
          "var3": 3
        },
        "minRank": 2
      }
    ]
  },
  "steps": [
    {
      "on": 0,
      "type": 7,
      "delay": 0.15,
      "props": {
        "projectile": {
          "base": "MissileTargetting_Bouncer",
          "scale": 0.5,
          "speed": 60,
          "target": 0,
          "hitCount": "var3"
        }
      },
      "range": 40
    },
    {
      "on": 0,
      "type": 11,
      "delay": 0.15,
      "props": {},
      "visuals": {
        "camShake": 7
      }
    },
    {
      "on": 2,
      "type": 0,
      "props": {},
      "effects": [
        {
          "flags": 0,
          "effect": 0,
          "scaling": [
            {
              "atb": "Strength",
              "ratio": 0.65
            },
            {
              "atb": "Dexterity",
              "ratio": 0.65
            }
          ],
          "affinity": "Physical"
        }
      ],
      "visuals": {
        "hitFx": "Hit_Blood"
      }
    }
  ],
  "texts": {
    "desc": "Throws a sharpen bone at an enemy, dealing ::dmg:: and causing them to bleed for ::var1%:: of the damage dealt over ::ref_dur::. The bone then jumps to ::var3:: enemies.",
    "name": "Bonethrow",
    "refs": {
      "ref": "Axe_Boomerang_Skill1_Status"
    },
    "rankDescs": [
      {
        "desc": "Can jump to ::var3:: enemies.",
        "rank": 2,
        "flags": 1
      },
      {
        "desc": "Deals ::var2%:: increased critical damage.",
        "rank": 3,
        "flags": 0
      }
    ]
  },
  "nature": 2,
  "script": "function onDamage(dmg) {\n\tvar amount = dmg.amount * vars.var1;\n\taddStatus(dmg.target, Skill.Axe_Boomerang_Skill1_Status, amount);\n}\n\nfunction onDamageEval(hit) {\n\tif( rank >= 3 ) {\n\t\thit.critDmgMult += vars.var2;\n\t}\n}",
  "status": 2,
  "mastery": [],
  "cooldown": 15,
  "duration": 0.4
}