screeps-api
    Preparing search index...

    Interface StructureKeeperLair

    Non-player structure. Spawns NPC Source Keepers that guards energy sources and minerals in some rooms.

    https://docs.screeps.com/api/#StructureKeeperLair

    interface StructureKeeperLair {
        _id: string;
        _isDisabled: boolean;
        effects?: { [index: number]: Effect } | null;
        name?: string;
        nextSpawnTime: number | null;
        room: string;
        type: "keeperLair";
        x: number;
        y: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _id: string
    _isDisabled: boolean
    effects?: { [index: number]: Effect } | null

    Temporary effects that are active on this object

    name?: string
    nextSpawnTime: number | null

    Tick at which the next source keeper creep will be spawned from here

    room: string
    type: "keeperLair"
    x: number
    y: number