Files
The-Only-Cure/media/scripts/TOC_recipes.txt
2023-12-18 22:59:40 +01:00

39 lines
791 B
Plaintext

module TOC
{
imports
{
Base
}
/*************Craft Prosthetics*******************/
recipe Craft Prosthetic Arm
{
ProstPart_WoodenBase,
ProstPart_WoodenHook,
Time: 10.0,
Result: Prost_NormalArm_L,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft Prosthetic Hook
{
ProstPart_WoodenBase,
ProstPart_WoodenHook,
Time: 10.0,
Result: Prost_HookArm_L,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
}