mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
This commit rearranges the complete CfgMagazines structure. We no longer have seperated folders for DayZ Mod and Epoch. All items got merged and grouped together. Unused items got moved into a folder called Not used under items.
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
class equip_paint : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
displayName = $STR_ITEM_NAME_equip_paint;
|
|
descriptionShort = $STR_ITEM_DESC_equip_paint;
|
|
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_paint.paa";
|
|
type = 256;
|
|
};
|
|
|
|
class equip_paint_generic : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_generic.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_GENERIC_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_GENERIC_DESC;
|
|
};
|
|
class equip_paint_black : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_black.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_BLACK_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_BLACK_DESC;
|
|
};
|
|
class equip_paint_white : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_white.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_WHITE_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_WHITE_DESC;
|
|
};
|
|
class equip_paint_blue : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_blue.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_BLUE_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_BLUE_DESC;
|
|
};
|
|
class equip_paint_green : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_green.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_GREEN_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_GREEN_DESC;
|
|
};
|
|
class equip_paint_red : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_red.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_RED_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_RED_DESC;
|
|
}; |