diff --git a/SQF/dayz_code/Configs/CfgMagazines/Items/ZombieParts.hpp b/SQF/dayz_code/Configs/CfgMagazines/Items/ZombieParts.hpp index e21816dbb..1f0197a86 100644 --- a/SQF/dayz_code/Configs/CfgMagazines/Items/ZombieParts.hpp +++ b/SQF/dayz_code/Configs/CfgMagazines/Items/ZombieParts.hpp @@ -152,8 +152,118 @@ class ItemMutantHeartMag: CA_Magazine { scope = 2; count = 1; - displayName = $STR_MUTANT_HEART; + displayName = $STR_EPOCH_MUTANTPARTS_HEART; picture = "\dayz_epoch_c\icons\tools\heart_icon_ca.paa"; - descriptionShort = $STR_MUTANT_HEART_DESC; + descriptionShort = $STR_EPOCH_MUTANTPARTS_HEART_DESC; model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; +}; + +class ItemMutantHead: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_HEAD; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_HEAD_DESC; +}; + +class ItemMutantLeg: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_LEG; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_LEG_DESC; +}; + +class ItemMutantArm: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_ARM; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_ARM_DESC; +}; + +class ItemMutantBrain: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_BRAIN; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_BRAIN_DESC; +}; + +class ItemMutantClaw: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_CLAW; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_CLAW_DESC; +}; + +class ItemMutantFoot: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_FOOT; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_FOOT_DESC; +}; + +class ItemMutantLiver: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_LIVER; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_LIVER_DESC; +}; + +class ItemMutantEyes: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_EYES; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_EYES_DESC; +}; + +class ItemMutantTongue: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_TONGUE; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_TONGUE_DESC; +}; + +class ItemMutantTeeth: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_ZOMBIEPARTS_TEETH; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_ZOMBIEPARTS_TEETH_DESC; +}; + +class ItemMutantSkin: CA_Magazine +{ + scope = 2; + count = 1; + displayName = $STR_EPOCH_MUTANTPARTS_SKIN; + model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; + picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa"; + descriptionShort = $STR_EPOCH_MUTANTPARTS_SKIN_DESC; }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgWeapons/Tools/MutantHeart.hpp b/SQF/dayz_code/Configs/CfgWeapons/Tools/MutantHeart.hpp index fcbb221cd..579de1c6d 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Tools/MutantHeart.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Tools/MutantHeart.hpp @@ -1,8 +1,8 @@ class ItemMutantHeart: ItemCore { scope = 2; - displayName = $STR_MUTANT_HEART; + displayName = $STR_EPOCH_MUTANTPARTS_HEART; picture = "\dayz_epoch_c\icons\tools\heart_icon_ca.paa"; - descriptionShort = $STR_MUTANT_HEART_DESC; + descriptionShort = $STR_EPOCH_MUTANTPARTS_HEART_DESC; model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d"; }; \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/ZombieParts.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/ZombieParts.hpp index f221dd439..51a1bbd2c 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/ZombieParts.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/ZombieParts.hpp @@ -74,6 +74,50 @@ class ItemZombieskin }; class ItemMutantHeartMag +{ + weight = 4; +}; +class ItemMutantHead +{ + weight = 8; +}; +class ItemMutantLeg +{ + weight = 6.5; +}; +class ItemMutantArm +{ + weight = 3; +}; +class ItemMutantBrain +{ + weight = 3.5; +}; +class ItemMutantClaw +{ + weight = 2.7; +}; +class ItemMutantFoot +{ + weight = 5; +}; +class ItemMutantLiver +{ + weight = 4; +}; +class ItemMutantEyes +{ + weight = 0.6; +}; +class ItemMutantTongue +{ + weight = 0.2; +}; +class ItemMutantTeeth +{ + weight = 0.1; +}; +class ItemMutantSkin { weight = 4; }; \ No newline at end of file diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index 677394542..eaa8035e6 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -27505,16 +27505,124 @@ Zombiehaut in einem Sack. Кожа зомби в мешке. - + Mutant Heart Mutantenherz Сердце мутанта - - + + The heart of a mutant. It is probably worth a lot. Das Herz eines Mutanten. Es ist möglicherweise viel wert. Сердце мутанта. Это, наверное, многого стоит. - + + + Mutant Head + Mutantenkopf + Голова мутанта + + + Mutant Head in a Bag. + Mutantenkopf in einem Sack. + Голова мутанта в мешке. + + + Mutant Leg + Mutantenbein + Нога мутанта + + + Mutant Leg in a Bag. + Mutantenbein in einem Sack. + Нога мутанта в мешке. + + + Mutant Arm + Mutantenarm + Рука мутанта + + + Mutant Arm in a Bag. + Mutantenarm in einem Sack. + Рука мутанта в мешке. + + + Mutant Brain + Mutantengehirn + Мозги мутанта + + + Mutant Brain in a Bag. + Mutantengehirn in einem Sack. + Мозги мутанта в мешке. + + + Mutant Claw + Mutantenkralle + + + Mutant Claw in a Bag. + Mutantenkralle in einem Sack. + + + Mutant Foot + Mutantenfuß + Стопа мутанта + + + Mutant Foot in a Bag. + Mutantenfuß in einem Sack. + Стопа мутанта в мешке. + + + Mutant Liver + Mutantenleber + Печень мутанта + + + Mutant Liver in a Bag. + Mutantenleber in einem Sack. + Печень мутанта в мешке. + + + Mutant Eyes + Mutantenaugen + Глаза мутанта + + + Mutant Eyes in a Bag. + Mutantenaugen in einem Sack. + Глаза мутанта в мешке. + + + Mutant Tongue + Mutantenzunge + Язык мутанта + + + Mutant Tongue in a Bag. + Mutantenzunge in einem Sack. + Язык мутанта в мешке. + + + Mutant Teeth + Mutantenzähne + Зубы мутанта + + + Mutant Teeth in a Bag. + Mutantenzähne in einem Sack. + Зубы мутанта в мешке. + + + Mutant Skin + Mutantenhaut + Кожа мутанта + + + Mutant Skin in a Bag. + Mutantenhaut in einem Sack. + Кожа мутанта в мешке. + Combination Lock Zahlenschloss