Interface RecipeCosts

Source
interface RecipeCosts {
    list?: { [resourceDefName: string]: number };
    stuff?: {
        accepts: StuffCategoryDefId[];
        categories?: ThingCategoryDefId[];
        count: number;
        disallows?: ThingDefId[];
    };
}

Properties§

Source§

list?: { [resourceDefName: string]: number }

Source§

stuff?: {
    accepts: StuffCategoryDefId[];
    categories?: ThingCategoryDefId[];
    count: number;
    disallows?: ThingDefId[];
}