mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
class ItemPilotmask_DZE : ItemCore {
|
|
scope = public;
|
|
picture = "\dayz_epoch_c\icons\tools\ItemPilotmask.paa";
|
|
displayName = $STR_EQUIP_PILOT_MASK;
|
|
descriptionShort = $STR_EQUIP_PILOT_MASK_DESC;
|
|
};
|
|
|
|
class ItemPilotmaskBroken_DZE : ItemPilotmask_DZE {
|
|
displayName = $STR_EQUIP_PILOT_MASK_BROKEN;
|
|
descriptionShort = $STR_EQUIP_PILOT_MASK_BROKEN_DESC;
|
|
};
|
|
|
|
class ItemGasmask1_DZE : ItemCore {
|
|
scope = public;
|
|
picture = "\dayz_epoch_c\icons\tools\ItemGasmask1.paa";
|
|
displayName = $STR_EQUIP_GAS_MASK1;
|
|
descriptionShort = $STR_EQUIP_GAS_MASK1_DESC;
|
|
};
|
|
|
|
class ItemGasmask1Broken_DZE : ItemGasmask1_DZE {
|
|
displayName = $STR_EQUIP_GAS_MASK1_BROKEN;
|
|
descriptionShort = $STR_EQUIP_GAS_MASK1_BROKEN_DESC;
|
|
};
|
|
|
|
class ItemGasmask2_DZE : ItemCore {
|
|
scope = public;
|
|
picture = "\dayz_epoch_c\icons\tools\ItemGasmask2.paa";
|
|
displayName = $STR_EQUIP_GAS_MASK2;
|
|
descriptionShort = $STR_EQUIP_GAS_MASK2_DESC;
|
|
};
|
|
|
|
class ItemGasmask2Broken_DZE : ItemGasmask2_DZE {
|
|
displayName = $STR_EQUIP_GAS_MASK2_BROKEN;
|
|
descriptionShort = $STR_EQUIP_GAS_MASK2_BROKEN_DESC;
|
|
}; |