mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Added new types of water and milk container
Added: 5L: ItemFuelcanWater ItemFuelcanMilk 20L: ItemJerrycanWater ItemJerrycanMilk 210L: ItemFuelBarrelWater ItemFuelBarrelMilk
This commit is contained in:
@@ -32,6 +32,40 @@ class ItemJerrycan : ItemJerrycanEmpty
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ItemJerrycanWater : ItemJerrycanEmpty
|
||||||
|
{
|
||||||
|
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||||
|
displayName = $STR_ITEM_NAME_JERRYCAN_WATER;
|
||||||
|
descriptionShort = $STR_ITEM_DESC_JERRYCAN_WATER;
|
||||||
|
containerEmpty = "ItemJerrycanEmpty";
|
||||||
|
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemJerrycanMilk : ItemJerrycanEmpty
|
||||||
|
{
|
||||||
|
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||||
|
displayName = $STR_ITEM_NAME_JERRYCAN_MILK;
|
||||||
|
descriptionShort = $STR_ITEM_DESC_JERRYCAN_MILK;
|
||||||
|
containerEmpty = "ItemJerrycanEmpty";
|
||||||
|
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
class ItemFuelcanEmpty : ItemJerrycanEmpty
|
class ItemFuelcanEmpty : ItemJerrycanEmpty
|
||||||
{
|
{
|
||||||
type = 256;
|
type = 256;
|
||||||
@@ -64,6 +98,38 @@ class ItemFuelcan : ItemFuelcanEmpty
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ItemFuelcanWater : ItemFuelcanEmpty
|
||||||
|
{
|
||||||
|
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_CA.paa";
|
||||||
|
displayName = $STR_ITEM_NAME_FUELCAN_WATER;
|
||||||
|
descriptionShort = $STR_ITEM_DESC_FUELCAN_WATER;
|
||||||
|
containerEmpty = "ItemFuelcanEmpty";
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemFuelcanMilk : ItemFuelcanEmpty
|
||||||
|
{
|
||||||
|
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_CA.paa";
|
||||||
|
displayName = $STR_ITEM_NAME_FUELCAN_MILK;
|
||||||
|
descriptionShort = $STR_ITEM_DESC_FUELCAN_MILK;
|
||||||
|
containerEmpty = "ItemFuelcanEmpty";
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
class ItemFuelBarrel: CA_Magazine
|
class ItemFuelBarrel: CA_Magazine
|
||||||
{
|
{
|
||||||
scope = 2;
|
scope = 2;
|
||||||
@@ -86,6 +152,49 @@ class ItemFuelBarrel: CA_Magazine
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ItemFuelBarrelWater: CA_Magazine
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
count = 1;
|
||||||
|
type = 256;
|
||||||
|
displayName = $STR_EPOCH_FUELBARREL_WATER;
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
descriptionShort = $STR_EPOCH_FUELBARREL_DESC_WATER;
|
||||||
|
containerEmpty = "ItemFuelBarrelEmpty";
|
||||||
|
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemFuelBarrelMilk: CA_Magazine
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
count = 1;
|
||||||
|
type = 256;
|
||||||
|
displayName = $STR_EPOCH_FUELBARREL_MILK;
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
descriptionShort = $STR_EPOCH_FUELBARREL_DESC_MILK;
|
||||||
|
containerEmpty = "ItemFuelBarrelEmpty";
|
||||||
|
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Empty
|
||||||
|
{
|
||||||
|
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||||
|
script = "spawn player_emptyContainer";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
class ItemFuelBarrelEmpty: ItemFuelBarrel
|
class ItemFuelBarrelEmpty: ItemFuelBarrel
|
||||||
{
|
{
|
||||||
scope = 2;
|
scope = 2;
|
||||||
|
|||||||
@@ -5908,6 +5908,22 @@
|
|||||||
<French>Un petit bidon de carburant.</French>
|
<French>Un petit bidon de carburant.</French>
|
||||||
<Czech>Menší kanystr s palivem.</Czech>
|
<Czech>Menší kanystr s palivem.</Czech>
|
||||||
</Key>
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_NAME_FUELCAN_WATER">
|
||||||
|
<English>Can 5L (Water)</English>
|
||||||
|
<German>Kanister 5L (Wasser)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_DESC_FUELCAN_WATER">
|
||||||
|
<English>A small 5-liter can filled with water.</English>
|
||||||
|
<German>Ein kleiner 5-Liter-Kanister gefüllt mit Wasser.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_NAME_FUELCAN_MILK">
|
||||||
|
<English>Can 5L (Milk)</English>
|
||||||
|
<German>Kanister 5L (Milch)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_DESC_FUELCAN_MILK">
|
||||||
|
<English>A small 5-liter can filled with milk.</English>
|
||||||
|
<German>Ein kleiner 5-Liter-Kanister gefüllt mit Milch.</German>
|
||||||
|
</Key>
|
||||||
<Key ID="STR_ITEM_NAME_FUELCAN_EMPTY">
|
<Key ID="STR_ITEM_NAME_FUELCAN_EMPTY">
|
||||||
<English>Fuelcan 5L (empty)</English>
|
<English>Fuelcan 5L (empty)</English>
|
||||||
<German>Benzinkanister 5L (leer)</German>
|
<German>Benzinkanister 5L (leer)</German>
|
||||||
@@ -5939,6 +5955,22 @@
|
|||||||
<Russian>20-ти литровая канистра для заправки техники и генераторов.</Russian>
|
<Russian>20-ти литровая канистра для заправки техники и генераторов.</Russian>
|
||||||
<French>Un jerrican de 20 litres qui peut être utilisé pour réaprovisionner les véhicules et générateurs de courant.</French>
|
<French>Un jerrican de 20 litres qui peut être utilisé pour réaprovisionner les véhicules et générateurs de courant.</French>
|
||||||
<Czech>Dvacetilitrový kanistr, který se dá použít k dotankování vozidel a generátorů.</Czech>
|
<Czech>Dvacetilitrový kanistr, který se dá použít k dotankování vozidel a generátorů.</Czech>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_NAME_JERRYCAN_WATER">
|
||||||
|
<English>Can 20L (Water)</English>
|
||||||
|
<German>Kanister 20L (Wasser</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_DESC_JERRYCAN_WATER">
|
||||||
|
<English>20 litre can filled with water.</English>
|
||||||
|
<German>Ein 20-Liter-Kanister, welcher mit Wasser befüllt wurde.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_NAME_JERRYCAN_MILK">
|
||||||
|
<English>Can 20L (Milk)</English>
|
||||||
|
<German>Kanister 20L (Milch)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_ITEM_DESC_JERRYCAN_MILK">
|
||||||
|
<English>20 litre can filled with milk.</English>
|
||||||
|
<German>Ein 20-Liter-Kanister, welcher mit Milch befüllt wurde.</German>
|
||||||
</Key>
|
</Key>
|
||||||
<Key ID="STR_ITEM_NAME_JERRYCAN_EMPTY">
|
<Key ID="STR_ITEM_NAME_JERRYCAN_EMPTY">
|
||||||
<English>Jerry Can 20L (empty)</English>
|
<English>Jerry Can 20L (empty)</English>
|
||||||
@@ -27794,6 +27826,22 @@
|
|||||||
<German>210 Liter Kraftstofffass.</German>
|
<German>210 Liter Kraftstofffass.</German>
|
||||||
<Russian>210 литров топлива в бочке.</Russian>
|
<Russian>210 литров топлива в бочке.</Russian>
|
||||||
</Key>
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_FUELBARREL_WATER">
|
||||||
|
<English>Barrel 210L (Water)</English>
|
||||||
|
<German>Fass 210 L (Wasser)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_FUELBARREL_DESC_WATER">
|
||||||
|
<English>A 210 litres barrel filled with water.</English>
|
||||||
|
<German>Ein 210 Liter Fass gefüllt mit Wasser.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_FUELBARREL_MILK">
|
||||||
|
<English>Barrel 210L (Milk)</English>
|
||||||
|
<German>Fass 210 L (Milch)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_FUELBARREL_DESC_MILK">
|
||||||
|
<English>A 210 litres barrel filled with milk.</English>
|
||||||
|
<German>Ein 210 Liter Fass gefüllt mit Milch.</German>
|
||||||
|
</Key>
|
||||||
<Key ID="STR_EPOCH_EMPTYFUELBARREL">
|
<Key ID="STR_EPOCH_EMPTYFUELBARREL">
|
||||||
<English>Fuel Barrel (empty)</English>
|
<English>Fuel Barrel (empty)</English>
|
||||||
<German>Kraftstofffass (leer)</German>
|
<German>Kraftstofffass (leer)</German>
|
||||||
|
|||||||
Reference in New Issue
Block a user