mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
18 lines
397 B
C++
18 lines
397 B
C++
class Blueprint_BaseBallBatBarbed : Recipe {
|
|
displayName = $STR_CRAFT_NAME_BaseBallBatBarbed;
|
|
descriptionShort = $STR_CRAFT_DESC_BaseBallBatBarbed;
|
|
input[] =
|
|
{
|
|
{"MeleeBaseBallBat","CfgWeapons",1},
|
|
{"equip_nails","CfgMagazines",1},
|
|
{"ItemWire","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"MeleeBaseBallBatBarbed","CfgWeapons",1}
|
|
};
|
|
required[] =
|
|
{
|
|
{"ItemToolbox","CfgWeapons",1}
|
|
};
|
|
}; |