mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
17 lines
336 B
C++
17 lines
336 B
C++
class Blueprint_woodensplint : Recipe {
|
|
displayName = $STR_ITEM_NAME_WOODENSPLINT;
|
|
input[] =
|
|
{
|
|
{"ItemPlank","CfgMagazines",1},
|
|
{"equip_string","CfgMagazines",1},
|
|
{"equip_duct_tape","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"equip_woodensplint","CfgMagazines",1} // Only need one splint to fix legs
|
|
};
|
|
required[] =
|
|
{
|
|
};
|
|
};
|