Add some more zombie parts

This commit is contained in:
AirwavesMan
2020-09-09 19:10:25 +02:00
parent eff42f7eec
commit 4e771de94a
4 changed files with 262 additions and 11 deletions

View File

@@ -52,6 +52,7 @@ class CfgMagazines
#include "Items\Locks.hpp" #include "Items\Locks.hpp"
#include "Items\VehicleParts.hpp" //Vehicle parts #include "Items\VehicleParts.hpp" //Vehicle parts
#include "Items\DogTags.hpp" #include "Items\DogTags.hpp"
#include "Items\ZombieParts.hpp"
#include "Items\Misc.hpp" //Nails, screws, cards, hotwire kit etc. #include "Items\Misc.hpp" //Nails, screws, cards, hotwire kit etc.
//Building items - all items that can be build and placed in-game //Building items - all items that can be build and placed in-game

View File

@@ -1,14 +1,3 @@
class ItemZombieParts: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_ZOMBIEPARTS;
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_DESC;
};
class ItemHotwireKit: CA_Magazine class ItemHotwireKit: CA_Magazine
{ {
scope = 2; scope = 2;

View File

@@ -0,0 +1,149 @@
class ItemZombieParts: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS;
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_DESC;
};
class ItemZombieHead: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_HEAD_DESC;
};
class ItemZombieLeg: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_LEG_DESC;
};
class ItemZombieArm: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_ARM_DESC;
};
class ItemZombieBrain: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_BRAIN_DESC;
};
class ItemZombieHand: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_HAND;
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_HAND_DESC;
};
class ItemZombieFinger: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_FINGER;
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_FINGER_DESC;
};
class ItemZombieFoot: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_FOOT_DESC;
};
class ItemZombieToe: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_TOE;
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_TOE_DESC;
};
class ItemZombieLiver: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_LIVER_DESC;
};
class ItemZombieHeart: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_HEART;
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_HEART_DESC;
};
class ItemZombieEyes: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_EYES_DESC;
};
class ItemZombieTongue: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_TONGUE_DESC;
};
class ItemZombieTeeth: 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 ItemZombieskin: CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_EPOCH_ZOMBIEPARTS_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_ZOMBIEPARTS_SKIN_DESC;
};

View File

@@ -25055,6 +25055,118 @@
<German>Zombiefleisch im Sack: Kann beim Medizin-Händler gegen Biofleisch eingetauscht werden.</German> <German>Zombiefleisch im Sack: Kann beim Medizin-Händler gegen Biofleisch eingetauscht werden.</German>
<Russian>Куски плоти в мешке: Обменяйте их на органическое мясо у торговцев медициной.</Russian> <Russian>Куски плоти в мешке: Обменяйте их на органическое мясо у торговцев медициной.</Russian>
</Key> </Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HEAD">
<English>Zombie Head</English>
<German>Zombiekopf</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HEAD_DESC">
<English>Zombie Head in a Bag.</English>
<German>Zombiekopf in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_LEG">
<English>Zombie Leg</English>
<German>Zombiebein</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_LEG_DESC">
<English>Zombie Leg in a Bag.</English>
<German>Zombiebein in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_ARM">
<English>Zombie Arm</English>
<German>Zombiearm</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_ARM_DESC">
<English>Zombie Arm in a Bag.</English>
<German>Zombiearm in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_BRAIN">
<English>Zombie Brain</English>
<German>Zombiegehirn</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_BRAIN_DESC">
<English>Zombie Brain in a Bag.</English>
<German>Zombiegehirn in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HAND">
<English>Zombie Hand</English>
<German>Zombiehand</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HAND_DESC">
<English>Zombie Hand in a Bag.</English>
<German>Zombiehand in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_FINGER">
<English>Zombie Finger</English>
<German>Zombiefinger</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_FINGER_DESC">
<English>Zombie Finger in a Bag.</English>
<German>Zombiefinger in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_FOOT">
<English>Zombie Foot</English>
<German>Zombiefuß</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_FOOT_DESC">
<English>Zombie Foot in a Bag.</English>
<German>Zombiefuß in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TOE">
<English>Zombie Toe</English>
<German>Zombiezeh</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TOE_DESC">
<English>Zombie Toe in a Bag.</English>
<German>Zombiezeh in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_LIVER">
<English>Zombie Liver</English>
<German>Zombieleber</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_LIVER_DESC">
<English>Zombie Liver in a Bag.</English>
<German>Zombieleber in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HEART">
<English>Zombie Heart</English>
<German>Zombieherz</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_HEART_DESC">
<English>Zombie Heart in a Bag.</English>
<German>Zombieherz in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_EYES">
<English>Zombie Eyes</English>
<German>Zombieaugen</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_EYES_DESC">
<English>Zombie Eyes in a Bag.</English>
<German>Zombieaugen in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TONGUE">
<English>Zombie Tongue</English>
<German>Zombiezunge</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TONGUE_DESC">
<English>Zombie Tongue in a Bag.</English>
<German>Zombiezunge in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TEETH">
<English>Zombie Teeth</English>
<German>Zombiezähne</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_TEETH_DESC">
<English>Zombie Teeth in a Bag.</English>
<German>Zombiezähne in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_SKIN">
<English>Zombie Skin</English>
<German>Zombiehaut</German>
</Key>
<Key ID="STR_EPOCH_ZOMBIEPARTS_SKIN_DESC">
<English>Zombie Skin in a Bag.</English>
<German>Zombiehaut in einem Sack.</German>
</Key>
<Key ID="STR_EPOCH_COMBINATIONLOCK"> <Key ID="STR_EPOCH_COMBINATIONLOCK">
<English>Combination Lock</English> <English>Combination Lock</English>
<German>Zahlenschloss</German> <German>Zahlenschloss</German>