mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Added Waterbottles with coffee, black tea and frozen waterbottles
Classnames: ItemWaterBottleCoffee ItemWaterBottleBlackTea ItemWaterBottleFrozen ItemPlasticWaterBottleCoffee ItemPlasticWaterBottleBlackTea ItemPlasticWaterBottleFrozen
This commit is contained in:
@@ -747,3 +747,68 @@ class ItemPlasticWaterbottle9ozBoiled : ItemWaterBottle
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemPlasticWaterBottleCoffee : FoodDrink
|
||||
{
|
||||
scope = 2;
|
||||
model = "z\addons\dayz_communityassets\models\waterbottle.p3d";
|
||||
picture = "\dayz_epoch_c\icons\plasticwaterbottle\PETwaterbottle10oz.paa";
|
||||
displayName = $STR_EQUIP_NAME_WBPET_COFFEE;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBPET_COFFEE;
|
||||
|
||||
Nutrition[] = {50,0,950,0};
|
||||
|
||||
infectionChance = 0;
|
||||
|
||||
consumeOutput = "ItemPlasticWaterbottleUnfilled";
|
||||
|
||||
containerEmpty = "ItemPlasticWaterbottleUnfilled";
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Consume : Consume {};
|
||||
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemPlasticWaterBottleBlackTea : FoodDrink
|
||||
{
|
||||
scope = 2;
|
||||
model = "z\addons\dayz_communityassets\models\waterbottle.p3d";
|
||||
picture = "\dayz_epoch_c\icons\plasticwaterbottle\PETwaterbottle10oz.paa";
|
||||
displayName = $STR_EQUIP_NAME_WBPET_BLACKTEA;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBPET_BLACKTEA;
|
||||
|
||||
Nutrition[] = {90,0,900,0};
|
||||
|
||||
infectionChance = 0;
|
||||
|
||||
consumeOutput = "ItemPlasticWaterbottleUnfilled";
|
||||
|
||||
containerEmpty = "ItemPlasticWaterbottleUnfilled";
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Consume : Consume {};
|
||||
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemPlasticWaterBottleFrozen : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\waterbottle.p3d";
|
||||
picture = "\dayz_epoch_c\icons\plasticwaterbottle\PETwaterbottle10oz.paa";
|
||||
displayName = $STR_EQUIP_NAME_WBPET_FROZEN;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBPET_FROZEN;
|
||||
|
||||
};
|
||||
@@ -724,3 +724,68 @@ class ItemWaterbottle9ozBoiled : ItemWaterbottle
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterBottleCoffee : FoodDrink
|
||||
{
|
||||
scope = 2;
|
||||
model = "\dayz_equip\models\waterbottle_gear.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle10oz_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_WATER_BOTTLE_COFFEE;
|
||||
descriptionShort = $STR_EQUIP_DESC_WATER_BOTTLE_COFFEE;
|
||||
|
||||
Nutrition[] = {50,0,950,0};
|
||||
|
||||
infectionChance = 0;
|
||||
|
||||
consumeOutput = "ItemWaterBottleUnfilled";
|
||||
|
||||
containerEmpty = "ItemWaterBottleUnfilled";
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Consume : Consume {};
|
||||
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterBottleBlackTea : FoodDrink
|
||||
{
|
||||
scope = 2;
|
||||
model = "\dayz_equip\models\waterbottle_gear.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle10oz_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_WATER_BOTTLE_BLACKTEA;
|
||||
descriptionShort = $STR_EQUIP_DESC_WATER_BOTTLE_BLACKTEA;
|
||||
|
||||
Nutrition[] = {90,0,900,0};
|
||||
|
||||
infectionChance = 0;
|
||||
|
||||
consumeOutput = "ItemWaterBottleUnfilled";
|
||||
|
||||
containerEmpty = "ItemWaterBottleUnfilled";
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Consume : Consume {};
|
||||
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterBottleFrozen : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\waterbottle_gear.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle10oz_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_WATER_BOTTLE_FROZEN;
|
||||
descriptionShort = $STR_EQUIP_DESC_WATER_BOTTLE_FROZEN;
|
||||
|
||||
};
|
||||
@@ -3550,6 +3550,30 @@
|
||||
<French>Une Bouteille vide. Il serait bien de la remplir à nouveau.</French>
|
||||
<Czech>Prázdná láhev na vodu. Může být znovu naplněna.</Czech>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WATER_BOTTLE_COFFEE">
|
||||
<English>Water Bottle (Coffee)</English>
|
||||
<German>Wasserflasche (Kaffee)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WATER_BOTTLE_COFFEE">
|
||||
<English>A bottle that has been filled with brewed coffee.</English>
|
||||
<German>Eine Flasche gefüllt mit gekochtem Kaffee.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WATER_BOTTLE_BLACKTEA">
|
||||
<English>Water Bottle (Black Tea)</English>
|
||||
<German>Wasserflasche (Schwarzer Tee)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WATER_BOTTLE_BLACKTEA">
|
||||
<English>A bottle that has been filled with brewed black tea.</English>
|
||||
<German>Eine Flasche gefüllt mit gekochtem schwarzem Tee.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WATER_BOTTLE_FROZEN">
|
||||
<English>Water Bottle (Frozen)</English>
|
||||
<German>Wasserflasche (Gefroren)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WATER_BOTTLE_FROZEN">
|
||||
<English>A bottle that has been filled with water. The content seems to be frozen.</English>
|
||||
<German>Eine Flasche gefüllt mit Wasser. Der Inhalt scheint gefroren zu sein.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_EPI_PEN">
|
||||
<English>Epi-Pen</English>
|
||||
<German>Epinephrin-Autoinjektor</German>
|
||||
@@ -32423,6 +32447,30 @@
|
||||
<Russian>Бутылка с 900мл кипячёной воды</Russian>
|
||||
<German>Wasserflasche PET mit 900ml abgekochtem Wasser.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WBPET_COFFEE">
|
||||
<English>Water Bottle PET (Coffee)</English>
|
||||
<German>Wasserflasche PET (Kaffee)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WBPET_COFFEE">
|
||||
<English>A PET bottle that has been filled with brewed coffee.</English>
|
||||
<German>Eine Plastik-Flasche gefüllt mit gekochtem Kaffee.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WBPET_BLACKTEA">
|
||||
<English>Water Bottle PET (Black Tea)</English>
|
||||
<German>Wasserflasche PET (Schwarzer Tee)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WBPET_BLACKTEA">
|
||||
<English>A PET bottle that has been filled with brewed black tea.</English>
|
||||
<German>Eine Plastik-Flasche gefüllt mit gekochtem schwarzem Tee.</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_NAME_WBPET_FROZEN">
|
||||
<English>Water Bottle PET (Frozen)</English>
|
||||
<German>Wasserflasche PET (Gefroren)</German>
|
||||
</Key>
|
||||
<Key ID="STR_EQUIP_DESC_WBPET_FROZEN">
|
||||
<English>A PET bottle that has been filled with water. The content seems to be frozen.</English>
|
||||
<German>Eine Plastik-Flasche gefüllt mit Wasser. Der Inhalt scheint gefroren zu sein.</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZE_EQUIP_PAINT_GENERIC_NAME">
|
||||
<English>Paint bucket (generic)</English>
|
||||
<German>Farbeimer (Generisch)</German>
|
||||
|
||||
Reference in New Issue
Block a user