Add 2 new cargo truck version

This adds 2 new versions of cargo trucks. A truck for items and a truck for weapons. Also setting the supplyRadius for every refuel, reammo and repair truck to 0. Just to be sure.
This commit is contained in:
A Man
2019-12-10 22:29:27 +01:00
parent d542304afe
commit 02c910078a
6 changed files with 139 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ class MtvrRefuel_DES_EP1_DZ : MtvrRefuel_base {
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
supplyRadius = 0;
};
class MtvrRefuel_DZ: MtvrRefuel {
@@ -57,4 +58,39 @@ class MtvrRefuel_DZ: MtvrRefuel {
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
supplyRadius = 0;
};
class MtvrRepair;
class MtvrRepair_DZE: MtvrRepair {
scope = public;
side = 2;
crew = "";
displayName = $STR_VEH_NAME_MTVR_AMMO;
typicalCargo[] = {};
hiddenSelections[] = {};
transportMaxWeapons = 25;
transportMaxMagazines = 300;
transportmaxbackpacks = 8;
class TransportMagazines{};
class TransportWeapons{};
transportRepair = 0;
supplyRadius = 0;
};
class MtvrReammo;
class MtvrReammo_DZE: MtvrReammo {
scope = public;
side = 2;
crew = "";
displayName = $STR_VEH_NAME_MTVR_WEAPONS;
typicalCargo[] = {};
hiddenSelections[] = {};
transportMaxWeapons = 75;
transportMaxMagazines = 100;
transportmaxbackpacks = 8;
class TransportMagazines{};
class TransportWeapons{};
transportAmmo = 0;
supplyRadius = 0;
};