mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
17 lines
325 B
C++
17 lines
325 B
C++
class Blueprint_HerbalDrink : Recipe {
|
|
displayName = $STR_CRAFT_NAME_HerbalDrink;
|
|
descriptionShort = $STR_CRAFT_DESC_herbalDrink;
|
|
input[] =
|
|
{
|
|
{"ItemWaterBottleBoiled","CfgMagazines",1},
|
|
{"equip_herb_box","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"ItemWaterBottleHerbal","CfgMagazines",1}
|
|
};
|
|
required[] =
|
|
{
|
|
};
|
|
};
|