factorio-blueprint
Version:
Factorio Blueprints API
19 lines (18 loc) • 458 B
TypeScript
export interface EntityDescription {
type?: string;
width?: number;
height?: number;
parameters?: boolean;
alertParameters?: boolean;
inventorySize?: number;
directionType?: boolean;
filterAmount?: boolean;
combinator?: boolean;
modules?: number;
recipe?: boolean;
maxElectricReach?: number;
}
declare const DEFAULT_ENTITIES: {
[entity_name: string]: EntityDescription;
};
export default DEFAULT_ENTITIES;