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

18 lines
406 B
TypeScript
Raw Normal View History

/// <reference path="AbstractWeapon.ts"/>
module SpaceTac.Game.Equipments {
"use strict";
// Equipment: Gatling Gun
export class GatlingGun extends AbstractWeapon {
constructor() {
super("Gatling Gun", 10, 20);
2015-01-28 00:00:00 +00:00
this.setRange(80, 150, false);
this.ap_usage = new Range(3, 4);
this.min_level = new IntegerRange(1, 3);
}
}
}