Update and localize vehicle ammo

This commit is contained in:
A Man
2020-04-21 22:46:58 +02:00
parent 440a63ec00
commit 2cd9e53d89
3 changed files with 327 additions and 38 deletions

View File

@@ -1,16 +1,41 @@
class Mine: TimeBomb
{
scope = 2;
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
displayName = $STR_MN_MINE;
picture = "\CA\weapons\data\equip\m_AT15_ca.paa";
ammo = "Mine";
nameSoundWeapon = "mine";
nameSound = "mine";
descriptionShort = $STR_DSS_MINE;
};
class MineE: TimeBomb
{
scope = 2;
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
displayName = $STR_MN_MINE;
picture = "\CA\weapons\data\equip\m_TM46_ca.paa";
ammo = "MineE";
nameSoundWeapon = "mine";
descriptionShort = $STR_DSS_MINE_E;
};
class PipeBomb: TimeBomb
{
scope = 2;
displayName = $STR_DZ_MAG_SATCHEL_NAME; // Singular "Satchel Charge" for death messages "with a x"
descriptionShort = $STR_DSS_Pipe_Bomb;
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
picture = "\CA\weapons\data\equip\m_satchel_CA.paa";
model = "\z\addons\dayz_epoch_w\magazine\dze_satchel.p3d";
value = 5;
ammo = "PipeBomb";
count = 1;
initSpeed = 0;
maxLeadSpeed = 0;
nameSoundWeapon = "satchelcharge";
nameSound = "satchelcharge";
useAction = 1;
useActionTitle = "$STR_ACTION_PUTBOMB";
};