7 new items, missing localizations (#2004)

7 new items - server admins can add them if desired

Adding a better and some missing localizations

Adding a localization for the car bomb
This commit is contained in:
A Man
2017-12-14 19:29:20 +01:00
committed by ebayShopper
parent b9c9d504d0
commit d56f3a68f4
3 changed files with 148 additions and 5 deletions

View File

@@ -1,15 +1,14 @@
class ItemCarBomb : CA_Magazine {
scope = public;
count = 1;
type = 256;
displayName = "Car Bomb";
displayName = $STR_ITEM_NAME_equip_carbomb;
model = "\ca\weapons\explosive.p3d";
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
descriptionShort = "Can be attached to a vehicles engine and then automaticly explode when the next player enters the drivers seat!";
descriptionShort = $STR_ITEM_DESC_equip_carbomb;
class ItemActions {
class Use {
text = "Attach Carbomb";
text = $STR_ACTIONS_attach_carbomb;
script = "spawn player_attach_bomb;";
};
};

View File

@@ -1179,3 +1179,61 @@ class ItemKiloHemp : CA_Magazine
};
};
};
class ItemOilBarrelEmpty : ItemOilBarrel
{
displayName = $STR_EPOCH_EMPTYOILBARREL;
descriptionShort = $STR_EPOCH_EMPTYOILBARREL_DESC;
};
class ItemMethylaminBarrelEmpty : ItemOilBarrel
{
displayName = $STR_EPOCH_EMPTYMETHYLAMINEBARREL;
descriptionShort = $STR_EPOCH_EMPTYMETHYLAMINEBARREL_DESC;
};
class ItemMethylaminBarrel : ItemOilBarrel
{
displayName = $STR_EPOCH_METHYLAMINEBARREL;
descriptionShort = $STR_EPOCH_METHYLAMINEBARREL_DESC;
};
class ItemC4Charge : CA_Magazine
{
scope = public;
count = 1;
type = 256;
displayName = $STR_EPOCH_C4_CHARGE;
descriptionShort = $STR_EPOCH_C4_CHARGE_DESC;
model = "\ca\weapons\explosive.p3d";
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
};
class ItemKiloTobacco : CA_Magazine
{
scope = public;
count = 1;
displayName = $STR_EPOCH_KILOTOBACCO;
descriptionShort = $STR_EPOCH_KILOTOBACCO_DESC;
weight = 1;
model = "z\addons\dayz_epoch\models\kilohemp.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_kilohemp_CA.paa";
type = 256;
};
class ItemKiloBlackTea : ItemKiloTobacco
{
displayName = $STR_EPOCH_KILOBLACKTEA;
descriptionShort = $STR_EPOCH_KILOBLACKTEA_DESC;
};
class ItemTobaccoLeafs : CA_Magazine
{
scope = public;
count = 1;
displayName = $STR_EPOCH_TOBACCO_LEAFS;
descriptionShort = $STR_EPOCH_TOBACCO_LEAFS_DESC;
model = "\z\addons\dayz_communityassets\models\comfrey.p3d";
picture = "\z\addons\dayz_communityassets\pictures\equip_comfrey_CA.paa";
type = 256;
};