mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
22 lines
384 B
C++
22 lines
384 B
C++
class CfgAmmo {
|
|
class Bolt;
|
|
class WoodenArrow : Bolt {
|
|
model = "\dayz_weapons\models\bolt";
|
|
hit = 8;
|
|
caliber = 0.33;
|
|
};
|
|
class Melee;
|
|
class Machete_Swing_Ammo : Melee {
|
|
hit = 9;
|
|
simulation = "shotBullet";
|
|
};
|
|
class Fishing_Swing_Ammo : Melee {
|
|
hit = 7;
|
|
simulation = "shotBullet";
|
|
};
|
|
class Dummy_Swing_Ammo : Melee {
|
|
hit = 0;
|
|
simulation = "shotBullet";
|
|
};
|
|
};
|