Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgConstruction/CfgConstruction.hpp
2016-02-21 13:09:16 -05:00

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";
};
};