borderlands2
Version:
Borderlands 2 weapon damage and DPS calculation library
11 lines (10 loc) • 318 B
text/typescript
import { Gear } from "./gear";
import { Stat } from "../../build/interface/stat";
import { GearType } from "./gear_type";
import { RedTextEnum } from "../../build";
export class Shield extends Gear {
constructor(stats: Stat[], redText?: RedTextEnum) {
super(GearType.Shield, [])
this.redText = redText
}
}