Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgLoot/Groups/Medical.hpp
A Man b4b8860cf0 Update Painkillers and Antibiotics
- Painkillers are in different pill counts available now, same as antibiotics
- the strings of painkillers and antibiotics have the pill count displayed in the name
2020-04-06 20:03:14 +02:00

54 lines
1.3 KiB
C++

MedicalLow[] =
{
{Loot_GROUP, 3, Painkillers},
{Loot_MAGAZINE, 5, ItemBandage},
{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}
};
Painkillers[] =
{
{Loot_MAGAZINE, 1, ItemPainkiller},
{Loot_MAGAZINE, 1, ItemPainkiller6},
{Loot_MAGAZINE, 2, ItemPainkiller5},
{Loot_MAGAZINE, 3, ItemPainkiller4},
{Loot_MAGAZINE, 4, ItemPainkiller3},
{Loot_MAGAZINE, 5, ItemPainkiller2},
{Loot_MAGAZINE, 6, ItemPainkiller1}
};
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}
};