mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
15 lines
376 B
C++
15 lines
376 B
C++
class Mine: TimeBomb
|
|
{
|
|
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
|
};
|
|
|
|
class MineE: TimeBomb
|
|
{
|
|
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
|
};
|
|
|
|
class PipeBomb: TimeBomb
|
|
{
|
|
displayName = $STR_DZ_MAG_SATCHEL_NAME; // Singular "Satchel Charge" for death messages "with a x"
|
|
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
|
}; |