Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgLoot/Groups/Buildings/Castle.hpp
A Man 73289a69a6 Update tents
equip_tent_poles are now in the loot tables and can be used for tent crafting.
The recipe for crafting tents and nettings has changed a bit. Instead of poles, tent poles are needed now.
The string for equip_tent_poles is confusing if the requirements are 6 Tent Poles but meant is 1x (6 Tent Poles).
2019-12-17 11:10:51 +01:00

39 lines
1.1 KiB
C++

Castle[] =
{
//Tools
{Loot_WEAPON, 1, ItemKnife},
{Loot_WEAPON, 1, ItemMap},
{Loot_WEAPON, 1, ItemCompass},
{Loot_WEAPON, 2, ItemFlashlight},
//{Loot_WEAPON, 1, ItemPickaxe},
//{Loot_WEAPON, 2, ItemPickaxeBroken},
{Loot_VEHICLE, 1, WeaponHolder_ItemPickaxe},
{Loot_VEHICLE, 2, WeaponHolder_ItemPickaxeBroken},
// {Loot_WEAPON, 2, ItemShovel},
// {Loot_WEAPON, 1, ItemHatchet},
{Loot_VEHICLE, 1, WeaponHolder_ItemHatchet},
//Weapons
{Loot_WEAPON, 2, Mosin_DZ},
//Backpacks
{Loot_GROUP, 4, backpacks},
//Items
{Loot_MAGAZINE, 4, ItemSandbag},
// {Loot_MAGAZINE, 1, equip_Crossbow_Kit}, //not functional yet
{Loot_MAGAZINE, 3, equip_rope},
{Loot_MAGAZINE, 4, PartWoodPile},
{Loot_MAGAZINE, 2, ItemComboLock},
{Loot_MAGAZINE, 1, ItemTent},
{Loot_MAGAZINE, 1, equip_tent_poles},
{Loot_MAGAZINE, 1, forest_net_kit},
//Groups
{Loot_GROUP, 5, AmmoCivilian},
{Loot_GROUP, 10, Trash},
{Loot_GROUP, 2, AttachmentsGeneric},
{Loot_GROUP, 5, Generic},
{Loot_WEAPON, 3, ItemMatchbox},
{Loot_GROUP, 5, Consumable}
};