1
0
Fork 0
spacetac/src/app/game/equipments/GatlingGun.ts

17 lines
378 B
TypeScript

/// <reference path="AbstractWeapon.ts"/>
module SpaceTac.Game.Equipments {
"use strict";
export class GatlingGun extends AbstractWeapon {
constructor() {
super("Gatling Gun", 50, 100);
this.setRange(400, 400, false);
this.ap_usage = new Range(2, 3);
this.min_level = new IntegerRange(1, 3);
}
}
}