A weapon paired with a subset of its strike modes.

interface WeaponStrikeGroup<W, SM> {
    strikeModes: SM[];
    weapon: W;
}

Type Parameters

  • W
  • SM

Properties

Properties

strikeModes: SM[]

The weapon's strike modes for this range band.

weapon: W

The weapon item.