Interface IndustryData

Corporation industry information

interface IndustryData {
    cost: number;
    makesMaterials: boolean;
    makesProducts: boolean;
    producedMaterials?: string[];
    productType?: string;
    requiredMaterials: Record<string, number>;
    type: CorpIndustryName;
}

Properties

cost: number

Cost to make a new division of this industry type

makesMaterials: boolean

Whether the division makes materials

makesProducts: boolean

Whether the division makes products

producedMaterials?: string[]

Materials produced

productType?: string

Product type

requiredMaterials: Record<string, number>

Materials required for production and their amounts

Industry type