mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
22 lines
473 B
C++
22 lines
473 B
C++
class CfgConstruction {
|
|
class Recipe {
|
|
displayName = "Generic Recipe";
|
|
input[] = {}; //Items consumed during crafting
|
|
required[] = {}; //Items needed for but not consumed during crafting
|
|
};
|
|
|
|
class Blueprint_woodenFence : Recipe {
|
|
displayName = "WoodenFence Foundation";
|
|
input[] =
|
|
{
|
|
{"ItemLog","CfgMagazines",2},
|
|
{"ItemStone","CfgMagazines",3}
|
|
};
|
|
toolsRequired[] =
|
|
{
|
|
{"ItemEtool","CfgWeapons",1}
|
|
};
|
|
orignalclass = "ItemDIY_wood";
|
|
};
|
|
};
|