Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgLoot/Groups/Medical.hpp
worldwidesorrow 1b0da632ce Add files via upload
Easier to upload the files. There are lots of changes.
2020-01-09 18:21:12 -06:00

43 lines
1.0 KiB
C++

MedicalLow[] =
{
{Loot_MAGAZINE, 5, ItemBandage},
{Loot_MAGAZINE, 3, ItemPainkiller},
{Loot_MAGAZINE, 3, ItemMorphine},
{Loot_MAGAZINE, 1, ItemEpinephrine},
{Loot_MAGAZINE, 2, ItemAntibacterialWipe},
{Loot_MAGAZINE, 1, ItemHeatPack}
};
MedicalHigh[] =
{
{Loot_MAGAZINE, 1, bloodTester},
{Loot_MAGAZINE, 1, emptyBloodBag},
{Loot_GROUP, 3, Antibiotics},
{Loot_GROUP, 15, Bloodbags},
{Loot_GROUP, 8, MedicalLow}
};
MedicalBox[] =
{
{Loot_GROUP, 5, MedicalHigh},
{Loot_GROUP, 1, MedicalLow}
};
Antibiotics[] =
{
{Loot_MAGAZINE, 1, ItemAntibiotic3},
{Loot_MAGAZINE, 3, ItemAntibiotic2},
{Loot_MAGAZINE, 5, ItemAntibiotic1}
};
Bloodbags[] =
{
{Loot_MAGAZINE, 5, bloodBagAPOS},
{Loot_MAGAZINE, 4, bloodBagANEG},
{Loot_MAGAZINE, 5, bloodBagBPOS},
{Loot_MAGAZINE, 4, bloodBagBNEG},
{Loot_MAGAZINE, 2, bloodBagABPOS},
{Loot_MAGAZINE, 2, bloodBagABNEG},
{Loot_MAGAZINE, 2, bloodBagOPOS},
{Loot_MAGAZINE, 1, bloodBagONEG}
};