mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
16 lines
283 B
C++
16 lines
283 B
C++
class Wooden_Arrow : Recipe {
|
|
displayName = $STR_ITEMWOODENARROW_CODE_NAME;
|
|
input[] =
|
|
{
|
|
{"PartWoodPile","CfgMagazines",1},
|
|
{"equip_feathers","CfgMagazines",2}
|
|
};
|
|
output[] =
|
|
{
|
|
{"WoodenArrow","CfgMagazines",4}
|
|
};
|
|
required[] =
|
|
{
|
|
{"ItemToolbox","CfgWeapons",1}
|
|
};
|
|
}; |