mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-18 01:30:26 +03:00
Added Waterbottles with coffee, black tea and frozen waterbottles
Classnames: ItemWaterBottleCoffee ItemWaterBottleBlackTea ItemWaterBottleFrozen ItemPlasticWaterBottleCoffee ItemPlasticWaterBottleBlackTea ItemPlasticWaterBottleFrozen
This commit is contained in:
@@ -746,4 +746,69 @@ class ItemPlasticWaterbottle9ozBoiled : ItemWaterBottle
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
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;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user