Added LAV25 DZ and AL

This commit is contained in:
Florian Kinder
2014-02-05 12:52:46 +01:00
parent a6a36af074
commit f843454db3
2 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
class LAV25_DZ: LAV25 {
scope = public;
side = TGuerrila;
displayName = "LAV-25 DZ";
commanderCanSee = 2+16+32;
gunnerCanSee = 2+16+32;
driverCanSee = 2+16+32;
crew = "";
typicalCargo[] = {};
TransportMagazines[] = {};
transportMaxMagazines = 100; // Default: 100
transportMaxWeapons = 10; // Default: 10
//transportmaxbackpacks = ; // Default:
};
class LAV25_HQ_DZ: LAV25_HQ {
scope = public;
side = TGuerrila;
displayName = "LAV-25 (HQ) DZ";
commanderCanSee = 2+16+32;
gunnerCanSee = 2+16+32;
driverCanSee = 2+16+32;
crew = "";
typicalCargo[] = {};
TransportMagazines[] = {};
transportMaxMagazines = 100; // Default: 100
transportMaxWeapons = 10; // Default: 10
//transportmaxbackpacks = ; // Default:
};
// Ammo Less
class LAV25_DZE: LAV25_DZ {
displayName = "LAV-25 AL";
class Turrets: Turrets {
class MainTurret : MainTurret {
magazines[] = {};
};
class Turrets: Turrets {
class CommanderOptics: CommanderOptics {
magazines[] = {};
};
};
};
};
class LAV25_HQ_DZE: LAV25_HQ_DZ {
displayName = "LAV-25 (HQ) AL";
class Turrets: Turrets {
class MainTurret : MainTurret {
magazines[] = {};
};
};
};