Added: Backpack upgrade items for admins to use

- Added 3 new Backpack upgrade items for admins to use.
These can be used in a script to upgrade the normal backpacks to their upgraded variants with more slots.
 - Added strings for the 3 new backpack upgrade items.
 - Fixed an small spelling error with the gunpowder descriptions.
This commit is contained in:
seelenapparat
2021-09-03 17:43:29 +02:00
parent 64e6bf089a
commit e151f22c47
2 changed files with 60 additions and 3 deletions

View File

@@ -465,4 +465,37 @@ class equip_rail_screws : CA_Magazine
descriptionShort = $STR_ITEM_DESC_equip_rail_screws;
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_part_somegeneric.paa";
type = 256;
};
class ItemBackpackUpgrade_1 : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_ITEM_NAME_ItemBackpackUpgrade_1;
descriptionShort = $STR_ITEM_DESC_ItemBackpackUpgrade_1;
model = "\ca\weapons\mag_univ.p3d";
picture = "\dayz_epoch_c\icons\equipment\ItemBackpackUpgrade.paa";
type = 256;
};
class ItemBackpackUpgrade_2 : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_ITEM_NAME_ItemBackpackUpgrade_2;
descriptionShort = $STR_ITEM_DESC_ItemBackpackUpgrade_2;
model = "\ca\weapons\mag_univ.p3d";
picture = "\dayz_epoch_c\icons\equipment\ItemBackpackUpgrade.paa";
type = 256;
};
class ItemBackpackUpgrade_3 : CA_Magazine
{
scope = 2;
count = 1;
displayName = $STR_ITEM_NAME_ItemBackpackUpgrade_3;
descriptionShort = $STR_ITEM_DESC_ItemBackpackUpgrade_3;
model = "\ca\weapons\mag_univ.p3d";
picture = "\dayz_epoch_c\icons\equipment\ItemBackpackUpgrade.paa";
type = 256;
};