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

18 lines
408 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", 50, 100);
this.setRange(300, 300, false);
2015-01-28 00:00:00 +00:00
this.ap_usage = new Range(3, 4);
this.min_level = new IntegerRange(1, 3);
}
}
}