Interface Recipe

Source
interface Recipe {
    effectWorking?: EffecterDefId;
    recipeUsers?: RecipeUser[];
    researchPrerequisite?: ResearchProjectDefId;
    skillRequirements?: { [skill: string]: number };
    soundWorking?: SoundDefId;
    workSpeedStat?: StatDefId;
    workToMake: number;
}

Properties§

Source§

effectWorking?: EffecterDefId

The effect that occurs while working on the recipe.

Source§

recipeUsers?: RecipeUser[]

The users of the recipe.

Source§

researchPrerequisite?: ResearchProjectDefId

The research prerequisite for the recipe.

Source§

skillRequirements?: { [skill: string]: number }

The skill requirements for the recipe.

Source§

soundWorking?: SoundDefId

The sound that plays while working on the recipe.

Source§

workSpeedStat?: StatDefId

The work speed stat for the recipe.

Source§

workToMake: number

The amount of work required to complete the recipe.