Base stuff for recipes

This commit is contained in:
ZioPao
2023-12-18 22:59:40 +01:00
parent f352b40232
commit ecee8b06e7
3 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
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,
}
}