mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
class equip_paint : CA_Magazine
|
|
{
|
|
scope = 2;
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
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 = 2;
|
|
count = 1;
|
|
type = 256;
|
|
model = "\z\addons\dayz_epoch_v\props\paint\paint_bucket.p3d";
|
|
picture = "\dayz_epoch_c\icons\equipment\equip_paint_red.paa";
|
|
displayName = $STR_DZE_EQUIP_PAINT_RED_NAME;
|
|
descriptionShort = $STR_DZE_EQUIP_PAINT_RED_DESC;
|
|
}; |