mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
16 lines
436 B
C++
16 lines
436 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
|
|
model = "\z\addons\dayz_epoch_w\magazine\dze_satchel.p3d";
|
|
}; |