UNPKG

borderlands2

Version:

Borderlands 2 weapon damage and DPS calculation library

9 lines (8 loc) 226 B
import { Gear } from "./gear"; import { Stat } from "../../build/interface/stat"; import { GearType } from "./gear_type"; export class Relic extends Gear { constructor(stats: Stat[]) { super(GearType.Relic, stats) } }