Add ACR CZ750_DZ version

This commit is contained in:
A Man
2020-01-27 13:40:09 +01:00
parent 43337b6a7a
commit 9c11f0adac
7 changed files with 53 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ weaponsCZ[] =
{Loot_WEAPON, 1, CZ_75_SP_01_PHANTOM_SD},
// Sniper Rifles
{Loot_WEAPON, 3, CZ_750_S1_ACR},
{Loot_WEAPON, 3, CZ750_DZ},
{Loot_WEAPON, 3, M110_NVG_EP1}, // Technically a US rifle, but the CZ group does not have a DMR type rifle.
// Submachine Guns

View File

@@ -69,7 +69,7 @@ class 100Rnd_762x51_M240: CA_Magazine
class 200Rnd_762x51_M240 : 100Rnd_762x51_M240 {
displayName = "200Rnd. M240";
count = 200;
descriptionShort = "Caliber: 7.62x51mm NATO <br/>Rounds: 200 <br/>Used in: M240, Mk 48 Mod 0";
descriptionShort = $STR_DZ_MAG_200RND_M240_DESC;
};
class 20Rnd_762x51_B_SCAR : CA_Magazine
@@ -97,3 +97,21 @@ class 20Rnd_762x51_SB_SCAR : CA_Magazine
COMBINE_MAG
};
};
class 10Rnd_762x51_CZ750 : 5Rnd_762x51_M24
{
count = 10;
picture = "\Ca\Weapons_ACR\Data\UI\picture_CZ750_mag_CA.paa";
displayName = $STR_DZ_MAG_10Rnd_762x51_CZ750_NAME;
descriptionShort = $STR_DZ_MAG_10RND_CZ750_DESC;
cartridgeName = "762x51";
class ItemActions
{
delete ReloadMag;
COMBINE_MAG
};
};

View File

@@ -57,6 +57,7 @@ class Category_23 {
class 20Rnd_9x39_SP5_VSS {type = "trade_items";buy[] = {3,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
class 10Rnd_762x54_SVD {type = "trade_items";buy[] = {2,"ItemSilverBar10oz"};sell[] = {1,"ItemSilverBar10oz"};};
class 5Rnd_762x51_M24 {type = "trade_items";buy[] = {2,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
class 10Rnd_762x51_CZ750 {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class 20Rnd_762x51_DMR {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
class 20Rnd_762x51_B_SCAR {type = "trade_items";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
class 20Rnd_762x51_SB_SCAR {type = "trade_items";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};};

View File

@@ -273,6 +273,7 @@ class Category_16 {
class Category_17 {
class M4SPR {type = "trade_weapons";buy[] = {1,"ItemGoldBar10oz"};sell[] = {6,"ItemGoldBar"};};
class CZ550_DZ {type = "trade_weapons";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
class CZ750_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {6,"ItemGoldBar"};};
class M24_DZ {type = "trade_weapons";buy[] = {1,"ItemGoldBar10oz"};sell[] = {6,"ItemGoldBar"};};
class M24_Gh_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {7,"ItemGoldBar"};};
// desert camo

View File

@@ -28,6 +28,7 @@ class CfgWeapons
#include "Rifles\KSVK.hpp"
#include "Rifles\M4SPR.hpp"
#include "Rifles\VSSVintorez.hpp"
#include "Rifles\CZ750.hpp"
//Ak107
#include "Rifles\AK107.hpp"

View File

@@ -0,0 +1,6 @@
class CZ_750_S1_ACR;
class CZ750_DZ: CZ_750_S1_ACR {
displayName = $STR_DZ_WPN_CZ750_NAME;
descriptionShort = $STR_DZ_WPN_CZ750_DESC;
magazines[] = {"10Rnd_762x51_CZ750"};
};