ZSGG Public Library
Incubator
Grell Co-Op T2 Production Building
import Incubator from "../../../../faction/grell/building/incubator.js";
export class CoopIncubator extends Incubator {
static override src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-incubator.ts";
constructor() {
super();
this.setVariantUUID("coop-vynthra");
this.unlockedBy = ["coop/commander/vynthra/building/coop-vynthra-young-canopy"];
this.creates = [
"coop/commander/vynthra/unit/coop-vynthra-harbinger",
"coop/commander/vynthra/unit/coop-vynthra-mandragora",
"coop/commander/vynthra/unit/coop-vynthra-thresher",
];
this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"];
this.unlocks = [
"coop/commander/vynthra/unit/coop-vynthra-harbinger",
"coop/commander/vynthra/unit/coop-vynthra-mandragora",
"coop/commander/vynthra/unit/coop-vynthra-thresher",
"coop/commander/vynthra/building/coop-vynthra-synapse-canopy",
];
}
}
export default CoopIncubator;