mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
17 lines
328 B
C++
17 lines
328 B
C++
class Blueprint_BodgedWaterbottle : Recipe {
|
|
displayName = "Broken Watter Bottle.";
|
|
descriptionShort = "Patch a broken water bottle.";
|
|
input[] =
|
|
{
|
|
{"equip_duct_tape","CfgMagazines",1},
|
|
{"ItemWaterBottleDmg","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"ItemBodgedWaterbottle","CfgMagazines",1}
|
|
};
|
|
required[] =
|
|
{
|
|
};
|
|
};
|