mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-21 10:56:29 +03:00
Split ItemWaterbottle
This commit is contained in:
108
SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp
Normal file
108
SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp
Normal file
@@ -0,0 +1,108 @@
|
||||
class ItemWaterbottle1oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (1oz)";
|
||||
descriptionShort = "Watter Bottle with 1oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle1oz_ca.paa";
|
||||
wateroz = 1;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle2oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (2oz)";
|
||||
descriptionShort = "Watter Bottle with 2oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle2oz_ca.paa";
|
||||
wateroz = 2;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle3oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (3oz)";
|
||||
descriptionShort = "Watter Bottle with 3oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle3oz_ca.paa";
|
||||
wateroz = 3;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle4oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (4oz)";
|
||||
descriptionShort = "Watter Bottle with 4oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle4oz_ca.paa";
|
||||
wateroz = 4;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle5oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (5oz)";
|
||||
descriptionShort = "Watter Bottle with 5oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle5oz_ca.paa";
|
||||
wateroz = 5;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle6oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (6oz)";
|
||||
descriptionShort = "Watter Bottle with 6oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle6oz_ca.paa";
|
||||
wateroz = 6;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle7oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (7oz)";
|
||||
descriptionShort = "Watter Bottle with 7oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle7oz_ca.paa";
|
||||
wateroz = 7;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle8oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (8oz)";
|
||||
descriptionShort = "Watter Bottle with 8oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle8oz_ca.paa";
|
||||
wateroz = 8;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemWaterbottle9oz : ItemWaterbottle {
|
||||
displayName = "Water Bottle (9oz)";
|
||||
descriptionShort = "Watter Bottle with 9oz of water";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle9oz_ca.paa";
|
||||
wateroz = 9;
|
||||
class ItemActions {
|
||||
class Fill {
|
||||
text = "$STR_ACTIONS_FILL_W";
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user