ZSGG Public Library
The Deep One (Night Mode)
Endari T1 Mobile Merc Outpost Unit
import { EndariMobileMercOutpostUnit } from "../../../../defaults/endari.js";
import { Attack } from "../../../../engine/ability.js";
export class TheDeepOneNightMode extends EndariMobileMercOutpostUnit {
override uuid: string;
static override src = "src/zerospace/mercenary/endari/unit/the-deep-one-night-mode.ts";
constructor() {
super();
this.name = "The Deep One (Night Mode)";
this.description = "Mobile flying form of The Deep One during Night.";
this.wikiDescription =
"Transformed form of [[mercenary/endari/building/the-deep-one]] during Night. Mobile and flying.";
this.tier = "T1";
this.uuid = "e506a01e-622c-4de0-bc55-60a51a230114";
// Night Mode is the mobile form of the same in-game entity and shares its internal identity.
this.internalId = "Troop_Endari_Tavern_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Endari_Tavern.Default__Troop_Endari_Tavern_C";
this.internalTags = ["Attackable.FlyingUnit"];
this.internalSecondaryTags = [];
this.hp = 2000;
this.shields = 0;
this.armor = 2;
this.armorType = "building";
this.domain = "air";
this.speed = 700;
this.transformsFrom = ["mercenary/endari/building/the-deep-one"];
this.transformsInto = ["mercenary/endari/building/the-deep-one"];
this.creates = [
"mercenary/endari/unit/endari-shade",
"mercenary/endari/unit/endari-needler",
"mercenary/endari/unit/endari-drake",
"mercenary/endari/unit/endari-devourer",
"mercenary/endari/unit/endari-shadow-leech",
];
this.attacks.razorClaws = new Attack({
name: "Razor Claws",
damage: 51,
shots: 2,
cooldown: 2,
range: 200,
targets: ["ground"],
splash: { multiplier: 1, range: 60 },
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default TheDeepOneNightMode;