changed gitignore

This commit is contained in:
Pao
2023-03-03 00:33:14 +01:00
parent 46175964f1
commit 76e7ae84de
3 changed files with 732 additions and 38 deletions

View File

@@ -0,0 +1,144 @@
recipe Craft prosthesis with Wooden Base and Wooden Hook
{
ProstPart_WoodenBase,
ProstPart_WoodenHook,
Time: 10.0,
Result: Prost_WoodenBase_WoodenHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Wooden Base and Metal Hook
{
ProstPart_WoodenBase,
ProstPart_MetalHook,
Time: 10.0,
Result: Prost_WoodenBase_MetalHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Wooden Base and Metal Hand
{
ProstPart_WoodenBase,
ProstPart_MetalHand,
Time: 10.0,
Result: Prost_WoodenBase_MetalHand,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Metal Base and Wooden Hook
{
ProstPart_MetalBase,
ProstPart_WoodenHook,
Time: 10.0,
Result: Prost_MetalBase_WoodenHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Metal Base and Metal Hook
{
ProstPart_MetalBase,
ProstPart_MetalHook,
Time: 10.0,
Result: Prost_MetalBase_MetalHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Metal Base and Metal Hand
{
ProstPart_MetalBase,
ProstPart_MetalHand,
Time: 10.0,
Result: Prost_MetalBase_MetalHand,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Leather Base and Wooden Hook
{
ProstPart_LeatherBase,
ProstPart_WoodenHook,
Time: 10.0,
Result: Prost_LeatherBase_WoodenHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Leather Base and Metal Hook
{
ProstPart_LeatherBase,
ProstPart_MetalHook,
Time: 10.0,
Result: Prost_LeatherBase_MetalHook,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}
recipe Craft prosthesis with Leather Base and Metal Hand
{
ProstPart_LeatherBase,
ProstPart_MetalHand,
Time: 10.0,
Result: Prost_LeatherBase_MetalHand,
NeedToBeLearn: true,
CanBeDoneFromFloor: false,
OnGiveXP: NoXP_OnGiveXP,
SkillRequired: FirstAid=2,
Category: Surgeon,
OnCreate:ProsthesisRecipes.OnCreateProsthesis,
Tooltip: Recipe_Tooltip_AssembleProsthesis,
}