1
0
Fork 0
spacetac/src/core/equipments/IronHull.ts

13 lines
408 B
TypeScript
Raw Normal View History

/// <reference path="../LootTemplate.ts"/>
2017-02-09 00:00:35 +00:00
module TS.SpaceTac.Equipments {
export class IronHull extends LootTemplate {
constructor() {
super(SlotType.Hull, "Iron Hull", "Protective hull, based on layered iron alloys");
this.setSkillsRequirements({ "skill_material": 1 });
2017-05-16 23:12:05 +00:00
this.addAttributeEffect("hull_capacity", istep(200, irepeat(20)));
}
}
}