Component_Spawn_entity: {
    type: "compound";
    value: {
        entries?: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    SpawnTimer: { type: "int"; value: number };
                    StopSpawning: { type: "byte"; value: number };
                }[];
            };
        };
    };
}

This component is used by chickens and wandering traders.

Type declaration

  • type: "compound"
  • value: {
        entries?: {
            type: "list";
            value: {
                type: "compound";
                value: {
                    SpawnTimer: { type: "int"; value: number };
                    StopSpawning: { type: "byte"; value: number };
                }[];
            };
        };
    }