Rebalance Refuel Truck cargo count

This commit is contained in:
AirwavesMan
2020-11-15 13:04:29 +01:00
parent 8feed62bde
commit 4667f20b5f
5 changed files with 41 additions and 36 deletions

View File

@@ -112,9 +112,9 @@ class KamazRefuel_DZ: KamazRefuel {
vehicleClass = "DayZ Epoch Vehicles";
crew = "";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
class TransportMagazines{};
class TransportWeapons{};
fuelCapacity = 10400;
@@ -147,9 +147,9 @@ class KamazRefuel_DZE2: KamazRefuel_DZE1 {
};
class KamazRefuel_DZE3: KamazRefuel_DZE2 {
displayName = "$STR_VEH_NAME_KAMAZ_REFUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"KamazRefuel_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};

View File

@@ -113,9 +113,9 @@ class MtvrRefuel_DES_EP1_DZ: MtvrRefuel_DES_EP1 {
displayName = "$STR_VEH_NAME_MTVR_DESERT_REFUEL";
vehicleClass = "DayZ Epoch Vehicles";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
@@ -148,9 +148,9 @@ class MtvrRefuel_DES_EP1_DZE2: MtvrRefuel_DES_EP1_DZE1 {
};
class MtvrRefuel_DES_EP1_DZE3: MtvrRefuel_DES_EP1_DZE2 {
displayName = "$STR_VEH_NAME_MTVR_DESERT_REFUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"MtvrRefuel_DES_EP1_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};
@@ -168,9 +168,9 @@ class MtvrRefuel_DZ: MtvrRefuel {
displayName = "$STR_VEH_NAME_MTVR_WOODLAND_REFUEL";
vehicleClass = "DayZ Epoch Vehicles";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
@@ -203,9 +203,9 @@ class MtvrRefuel_DZE2: MtvrRefuel_DZE1 {
};
class MtvrRefuel_DZE3: MtvrRefuel_DZE2 {
displayName = "$STR_VEH_NAME_MTVR_WOODLAND_REFUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"MtvrRefuel_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};

View File

@@ -776,6 +776,11 @@ class T810A_ACR_REFUEL_DZE: T810A_ACR_DZE
Icon = "\Ca\Wheeled_ACR\Data\UI\Icon_T810fuel_CA.paa";
transportSoldier = 2;
cargoAction[] = {"Truck_Cargo01"};
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
fuelCapacity = 10000;
class Damage
{
@@ -809,9 +814,9 @@ class T810A_ACR_REFUEL_DZE2: T810A_ACR_REFUEL_DZE1 {
};
class T810A_ACR_REFUEL_DZE3: T810A_ACR_REFUEL_DZE2 {
displayname = "$STR_VEH_NAME_TATRA_WOODLAND_REFUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"T810A_ACR_REFUEL_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};
@@ -854,9 +859,9 @@ class T810A_ACR_REFUEL_DES_DZE2: T810A_ACR_REFUEL_DES_DZE1 {
};
class T810A_ACR_REFUEL_DES_DZE3: T810A_ACR_REFUEL_DES_DZE2 {
displayname = "$STR_VEH_NAME_TATRA_DESERT_REFUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"T810A_ACR_REFUEL_DES_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};

View File

@@ -491,9 +491,9 @@ class UralRefuel_TK_EP1_DZ: UralRefuel_TK_EP1 {
displayName = "$STR_VEH_NAME_URAL_FUEL";
crew = "";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
@@ -527,9 +527,9 @@ class UralRefuel_TK_EP1_DZE2: UralRefuel_TK_EP1_DZE1 {
};
class UralRefuel_TK_EP1_DZE3: UralRefuel_TK_EP1_DZE2 {
displayName = "$STR_VEH_NAME_URAL_FUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"UralRefuel_TK_EP1_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};

View File

@@ -235,9 +235,9 @@ class V3S_Refuel_TK_GUE_EP1_DZ: V3S_Refuel_TK_GUE_EP1 {
scope = 2;
crew = "";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
transportMaxWeapons = 10;
transportMaxMagazines = 50;
transportmaxbackpacks = 5;
class TransportMagazines{};
class TransportWeapons{};
supplyRadius = 2.6;
@@ -270,9 +270,9 @@ class V3S_Refuel_TK_GUE_EP1_DZE2: V3S_Refuel_TK_GUE_EP1_DZE1 {
};
class V3S_Refuel_TK_GUE_EP1_DZE3: V3S_Refuel_TK_GUE_EP1_DZE2 {
displayname = "$STR_VEH_NAME_V3S_FUEL+++";
transportMaxWeapons = 100;
transportMaxMagazines = 400;
transportmaxbackpacks = 16;
transportMaxWeapons = 20;
transportMaxMagazines = 100;
transportmaxbackpacks = 10;
class Upgrades {
ItemTruckTNK[] = {"V3S_Refuel_TK_GUE_EP1_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",2},{"PartFueltank",2},{"ItemFuelBarrel",6}}};