refactor: removed compat with b41 entirely

This commit is contained in:
ZioPao
2025-12-16 00:34:40 +01:00
parent 3f888e7f22
commit 20fa1bd05e
249 changed files with 215 additions and 176 deletions

View File

@@ -0,0 +1,43 @@
module TOC
{
character_trait_definition toc:amputee_hand
{
CharacterTrait = toc:amputee_hand,
IsProfessionTrait = false,
DisabledInMultiplayer = false,
Cost = -8,
UIName = UI_trait_Amputee_Hand,
UIDescription = UI_trait_Amputee_Hand_desc,
XPBoosts = Side_L=4;Fitness=-1;Strength=-1,
GrantedRecipes = Lockpicking;AlarmCheck;CreateBobbyPin;CreateBobbyPin2,
MutuallyExclusiveTraits = toc:amputee_forearm;toc:amputee_upperarm,
}
character_trait_definition toc:amputee_forearm
{
IsProfessionTrait = false,
DisabledInMultiplayer = false,
CharacterTrait = toc:amputee_forearm,
Cost = -10,
UIName = UI_trait_Amputee_ForeArm,
UIDescription = UI_trait_Amputee_ForeArm_desc,
XPBoosts = Side_L=4;Fitness=-1;Strength=-1,
MutuallyExclusiveTraits = toc:amputee_hand;toc:amputee_upperarm,
}
character_trait_definition toc:amputee_upperarm
{
IsProfessionTrait = false,
DisabledInMultiplayer = false,
CharacterTrait = toc:amputee_upperarm,
Cost = -20,
UIName = UI_trait_Amputee_UpperArm,
UIDescription = UI_trait_Amputee_UpperArm_desc,
XPBoosts = Side_L=4;Fitness=-1;Strength=-1,
GrantedRecipes = Lockpicking;AlarmCheck;CreateBobbyPin;CreateBobbyPin2,
MutuallyExclusiveTraits = toc:amputee_hand;toc:amputee_forearm,
}
}