Add upgradable little birds

Also:
- add manuals to upgrade all helicopters
- add an indicator on the manual description how many upgrades are available
This commit is contained in:
AirwavesMan
2020-08-23 13:58:59 +02:00
parent 049492ebf3
commit dbd001b471
7 changed files with 297 additions and 51 deletions

View File

@@ -17,21 +17,22 @@ VanillaSurvival[] =
VanillaConstruction[] =
{
// {Loot_MAGAZINE, 1, equip_scrapelectronics}, // Unused
// {Loot_MAGAZINE, 2, equip_1inch_metal_pipe}, // Unused
// {Loot_MAGAZINE, 2, equip_2inch_metal_pipe}, // Unused
// {Loot_VEHICLE, 2, WeaponHolder_ItemPickaxeBroken},
// {Loot_MAGAZINE, 5, ItemStone}, // Vanilla base building - foundations
// {Loot_MAGAZINE, 5, ItemStone}, // Epoch(Dayz Mod) fences, does not need to be spawned, can be harvested with pickaxes
// {Loot_WEAPON, 1, ItemDIY_wood}, // Vanilla base building
// {Loot_WEAPON, 1, ItemDIY_Gate} // Vanilla base building
// {Loot_MAGAZINE, 9, equip_metal_sheet_rusted}, // Unused
{Loot_MAGAZINE, 1, equip_scrapelectronics}, // Vehicle upgrade
{Loot_MAGAZINE, 1, equip_floppywire}, // Vehicle upgrade
{Loot_VEHICLE, 4, WeaponHolder_ItemPickaxe}, // Get ItemStone from rocks on the map for fence foundations.
{Loot_MAGAZINE, 9, ItemMetalSheet}, //Used for upgrade storage buildings and metal fences
{Loot_MAGAZINE, 9, ItemMetalSheet}, //Used for upgrade storage buildings and metal fences, vehicle upgrade
{Loot_MAGAZINE, 9, equip_metal_sheet}, //Used for upgrade storage buildings
{Loot_MAGAZINE, 4, ItemScrews}, //Used for upgrade storage buildings
{Loot_MAGAZINE, 4, ItemScrews}, //Used for upgrade storage buildings, vehicle upgrade
{Loot_MAGAZINE, 1, equip_hose}, // Need this to siphon gas with fuel container - very useful
{Loot_MAGAZINE, 1, equip_lever}, // Repair broken handles if dayz_toolBreaking enabled
{Loot_MAGAZINE, 1, ItemPlank}, // Used for upgrade storage buildings - craft a sling
{Loot_MAGAZINE, 1, ItemPlank}, // Used for upgrade storage buildings, craft a sling
{Loot_MAGAZINE, 1, equip_nails}, // Combine with baseball bat, upgrade storage buildings
{Loot_MAGAZINE, 1, equip_brick} // Used to sharpen tools if dayz_knifeDulling enabled
};

View File

@@ -495,6 +495,69 @@ class ItemTankTNK: CA_Magazine
};
};
class ItemHeliAVE: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_AVE_HELI;
model = "\z\addons\dayz_epoch\models\doc_Up2.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup2_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_AVE_HELI_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemHeliLRK: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_LRK_HELI;
model = "\z\addons\dayz_epoch\models\doc_Up3.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup3_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_LRK_HELI_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemHeliTNK: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_TNK_HELI;
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_TNK_HELI_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class Blueprint_01: CA_Magazine
{
scope = 2;

View File

@@ -30,6 +30,7 @@ class Category_34 {
class ItemSledge {type = "trade_weapons";buy[] = {8,"ItemSilverBar10oz"};sell[] = {4,"ItemSilverBar10oz"};};
class MeleeSledge {type = "trade_weapons";buy[] = {-8,"ItemSilverBar10oz"};sell[] = {4,"ItemSilverBar10oz"};};
class ItemKeyKit {type = "trade_weapons";buy[] = {1,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
class ItemSolder_DZE {type = "trade_weapons";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
class ChainSaw {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
class ChainSawB {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
class ChainSawG {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
@@ -53,8 +54,8 @@ class Category_35 {
class equip_lever {type = "trade_items";buy[] = {6,"ItemSilverBar"};sell[] = {3,"ItemSilverBar"};};
class equip_nails {type = "trade_items";buy[] = {2,"ItemSilverBar"};sell[] = {1,"ItemSilverBar"};};
class ItemScrews {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class equip_scrapelectronics {type = "trade_items";buy[] = {-4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class equip_floppywire {type = "trade_items";buy[] = {-4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class equip_scrapelectronics {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class equip_floppywire {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
class equip_metal_sheet {type = "trade_items";buy[] = {2,"ItemSilverBar10oz"};sell[] = {1,"ItemSilverBar10oz"};};
class equip_1inch_metal_pipe {type = "trade_items";buy[] = {6,"ItemSilverBar"};sell[] = {3,"ItemSilverBar"};};
class equip_2inch_metal_pipe {type = "trade_items";buy[] = {8,"ItemSilverBar"};sell[] = {4,"ItemSilverBar"};};

View File

@@ -30,6 +30,7 @@ class Category_34 {
class ItemSledge {type = "trade_weapons";buy[] = {80,"worth"};sell[] = {40,"worth"};};
class MeleeSledge {type = "trade_weapons";buy[] = {-1,"worth"};sell[] = {40,"worth"};};
class ItemKeyKit {type = "trade_weapons";buy[] = {100,"worth"};sell[] = {100,"worth"};};
class ItemSolder_DZE {type = "trade_weapons";buy[] = {600,"worth"};sell[] = {300,"worth"};};
class ChainSaw {type = "trade_weapons";buy[] = {400,"worth"};sell[] = {100,"worth"};};
class ChainSawB {type = "trade_weapons";buy[] = {400,"worth"};sell[] = {100,"worth"};};
class ChainSawG {type = "trade_weapons";buy[] = {400,"worth"};sell[] = {100,"worth"};};
@@ -53,8 +54,8 @@ class Category_35 {
class equip_lever {type = "trade_items";buy[] = {6,"worth"};sell[] = {3,"worth"};};
class equip_nails {type = "trade_items";buy[] = {2,"worth"};sell[] = {1,"worth"};};
class ItemScrews {type = "trade_items";buy[] = {400,"worth"};sell[] = {200,"worth"};};
class equip_scrapelectronics {type = "trade_items";buy[] = {-1,"worth"};sell[] = {200,"worth"};};
class equip_floppywire {type = "trade_items";buy[] = {-1,"worth"};sell[] = {200,"worth"};};
class equip_scrapelectronics {type = "trade_items";buy[] = {400,"worth"};sell[] = {200,"worth"};};
class equip_floppywire {type = "trade_items";buy[] = {400,"worth"};sell[] = {200,"worth"};};
class equip_metal_sheet {type = "trade_items";buy[] = {20,"worth"};sell[] = {10,"worth"};};
class equip_1inch_metal_pipe {type = "trade_items";buy[] = {6,"worth"};sell[] = {3,"worth"};};
class equip_2inch_metal_pipe {type = "trade_items";buy[] = {8,"worth"};sell[] = {4,"worth"};};

View File

@@ -2,7 +2,7 @@ class AH6J_EP1;
class AH6J_EP1_DZ: AH6J_EP1
{
scope = 2;
displayName = $STR_VEH_NAME_AH6J;
displayName = "$STR_VEH_NAME_AH6J";
vehicleClass = "DayZ Epoch Vehicles";
crew = "";
typicalCargo[] = {};
@@ -25,19 +25,56 @@ class AH6J_EP1_DZ: AH6J_EP1
{
killed = "_this call BIS_Effects_EH_Killed;";
fired = "_this call BIS_Effects_EH_Fired;";
};
};
};
class AH6J_EP1_DZE: AH6J_EP1_DZ
{
scope = 2;
displayName = $STR_VEH_NAME_AH6J;
displayName = "$STR_VEH_NAME_AH6J";
magazines[] = {"60Rnd_CMFlareMagazine","60Rnd_CMFlareMagazine"};
class Upgrades
{
ItemHeliAVE[] = {"AH6J_EP1_DZE1",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliAVE",1},{"equip_metal_sheet",5},{"ItemScrews",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class AH6J_EP1_DZE1: AH6J_EP1_DZE
{
displayName = "$STR_VEH_NAME_AH6J+";
original = "AH6J_EP1_DZE";
armor = 70;
damageResistance = 0.02078;
class Upgrades
{
ItemHeliLRK[] = {"AH6J_EP1_DZE2",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliLRK",1},{"PartGeneric",2},{"ItemScrews",1},{"ItemWoodCrateKit",1},{"ItemGunRackKit",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class AH6J_EP1_DZE2: AH6J_EP1_DZE1
{
displayName = "$STR_VEH_NAME_AH6J++";
transportMaxWeapons = 20;
transportMaxMagazines = 80;
transportmaxbackpacks = 8;
class Upgrades
{
ItemHeliTNK[] = {"AH6J_EP1_DZE3",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliTNK",1},{"PartFueltank",2},{"PartGeneric",2},{"ItemFuelBarrel",1},{"ItemTinBar",1},{"equip_scrapelectronics",1},{"equip_floppywire",1}}};
};
};
class AH6J_EP1_DZE3: AH6J_EP1_DZE2
{
displayName = "$STR_VEH_NAME_AH6J+++";
fuelCapacity = 500;
};
class AH6X_EP1;
class AH6X_DZ: AH6X_EP1 {
displayname = $STR_VEH_NAME_AH6X;
displayname = "$STR_VEH_NAME_AH6X";
vehicleClass = "DayZ Epoch Vehicles";
model = "dayz_vehicles\helicopters\greybird\greybird.p3d";
scope = 2;
@@ -63,4 +100,41 @@ class AH6X_DZ: AH6X_EP1 {
{
killed = "_this call BIS_Effects_EH_Killed;";
};
class Upgrades
{
ItemHeliAVE[] = {"AH6X_DZE1",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliAVE",1},{"equip_metal_sheet",5},{"ItemScrews",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class AH6X_DZE1: AH6X_DZ
{
displayName = "$STR_VEH_NAME_AH6X+";
original = "AH6X_DZ";
armor = 70;
damageResistance = 0.02078;
class Upgrades
{
ItemHeliLRK[] = {"AH6X_DZE2",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliLRK",1},{"PartGeneric",2},{"ItemScrews",1},{"ItemWoodCrateKit",1},{"ItemGunRackKit",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class AH6X_DZE2: AH6X_DZE1
{
displayName = "$STR_VEH_NAME_AH6X++";
transportMaxWeapons = 20;
transportMaxMagazines = 80;
transportmaxbackpacks = 8;
class Upgrades
{
ItemHeliTNK[] = {"AH6X_DZE3",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliTNK",1},{"PartFueltank",2},{"PartGeneric",2},{"ItemFuelBarrel",1},{"ItemTinBar",1},{"equip_scrapelectronics",1},{"equip_floppywire",1}}};
};
};
class AH6X_DZE3: AH6X_DZE2
{
displayName = "$STR_VEH_NAME_AH6X+++";
fuelCapacity = 500;
};

View File

@@ -21,4 +21,41 @@ class MH6J_DZ: MH6J_EP1
fuelCapacity = 242;
class Turrets {};
supplyRadius = 1.3;
class Upgrades
{
ItemHeliAVE[] = {"MH6J_DZE1",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliAVE",1},{"equip_metal_sheet",5},{"ItemScrews",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class MH6J_DZE1: MH6J_DZ
{
displayName = "$STR_VEH_NAME_MH6J+";
original = "MH6J_DZ";
armor = 70;
damageResistance = 0.02078;
class Upgrades
{
ItemHeliLRK[] = {"MH6J_DZE2",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliLRK",1},{"PartGeneric",2},{"ItemScrews",1},{"ItemWoodCrateKit",1},{"ItemGunRackKit",1},{"ItemTinBar",1},{"equip_scrapelectronics",2},{"equip_floppywire",2}}};
};
};
class MH6J_DZE2: MH6J_DZE1
{
displayName = "$STR_VEH_NAME_MH6J++";
transportMaxWeapons = 20;
transportMaxMagazines = 80;
transportmaxbackpacks = 8;
class Upgrades
{
ItemHeliTNK[] = {"MH6J_DZE3",{"ItemToolbox","ItemSolder_DZE"},{},{{"ItemHeliTNK",1},{"PartFueltank",2},{"PartGeneric",2},{"ItemFuelBarrel",1},{"ItemTinBar",1},{"equip_scrapelectronics",1},{"equip_floppywire",1}}};
};
};
class MH6J_DZE3: MH6J_DZE2
{
displayName = "$STR_VEH_NAME_MH6J+++";
fuelCapacity = 500;
};

View File

@@ -12154,16 +12154,61 @@
<Russian>AH6X «Литтл Бёрд»</Russian>
<German>AH6X "Little Bird"</German>
</Key>
<Key ID="STR_VEH_NAME_AH6X+">
<English>AH6X Little Bird+</English>
<Russian>AH6X «Литтл Бёрд»+</Russian>
<German>AH6X "Little Bird"+</German>
</Key>
<Key ID="STR_VEH_NAME_AH6X++">
<English>AH6X Little Bird++</English>
<Russian>AH6X «Литтл Бёрд»++</Russian>
<German>AH6X "Little Bird"++</German>
</Key>
<Key ID="STR_VEH_NAME_AH6X+++">
<English>AH6X Little Bird+++</English>
<Russian>AH6X «Литтл Бёрд»+++</Russian>
<German>AH6X "Little Bird"+++</German>
</Key>
<Key ID="STR_VEH_NAME_MH6J">
<English>MH-6J Little Bird</English>
<Russian>MH-6J «Литтл Бёрд»</Russian>
<German>MH-6J "Little Bird"</German>
</Key>
<Key ID="STR_VEH_NAME_MH6J+">
<English>MH-6J Little Bird+</English>
<Russian>MH-6J «Литтл Бёрд»+</Russian>
<German>MH-6J "Little Bird"+</German>
</Key>
<Key ID="STR_VEH_NAME_MH6J++">
<English>MH-6J Little Bird++</English>
<Russian>MH-6J «Литтл Бёрд»++</Russian>
<German>MH-6J "Little Bird"++</German>
</Key>
<Key ID="STR_VEH_NAME_MH6J+++">
<English>MH-6J Little Bird+++</English>
<Russian>MH-6J «Литтл Бёрд»+++</Russian>
<German>MH-6J "Little Bird"+++</German>
</Key>
<Key ID="STR_VEH_NAME_AH6J">
<English>AH6J Little Bird</English>
<Russian>AH6J «Литтл Бёрд»</Russian>
<German>AH6J "Little Bird"</German>
</Key>
<Key ID="STR_VEH_NAME_AH6J+">
<English>AH6J Little Bird+</English>
<Russian>AH6J «Литтл Бёрд»+</Russian>
<German>AH6J "Little Bird"+</German>
</Key>
<Key ID="STR_VEH_NAME_AH6J++">
<English>AH6J Little Bird++</English>
<Russian>AH6J «Литтл Бёрд»++</Russian>
<German>AH6J "Little Bird"++</German>
</Key>
<Key ID="STR_VEH_NAME_AH6J+++">
<English>AH6J Little Bird+++</English>
<Russian>AH6J «Литтл Бёрд»+++</Russian>
<German>AH6J "Little Bird"+++</German>
</Key>
<Key ID="STR_VEH_NAME_MI17">
<English>Mi-17</English>
<Russian>Ми-17</Russian>
@@ -22450,28 +22495,28 @@
<Czech>Terénní výkonnost</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_ORP_DESC">
<English>Offroad performace manual to increase the offroad speed of a vehicle.</English>
<German>Offroad-Performance Handbuch, um die Geschwindigkeit eines Fahrzeug abseits der Straßen zu erhöhen.</German>
<Russian>Руководство по улучшению внедорожной эффективности.</Russian>
<Dutch>Handleiding over offroad prestaties.</Dutch>
<French>Manuel sur les performances tout-terrain.</French>
<Czech>Manuál terénní výkonnosti.</Czech>
<English>Offroad performace manual to increase the offroad speed of a vehicle.&lt;br/&gt;Upgrade: 1/4</English>
<German>Offroad-Performance Handbuch, um die Geschwindigkeit eines Fahrzeugs abseits der Straßen zu erhöhen.&lt;br/&gt;Upgrade: 1/4</German>
<Russian>Руководство по улучшению внедорожной эффективности.&lt;br/&gt;Upgrade: 1/4</Russian>
<Dutch>Handleiding over offroad prestaties.&lt;br/&gt;Upgrade: 1/4</Dutch>
<French>Manuel sur les performances tout-terrain.&lt;br/&gt;Upgrade: 1/4</French>
<Czech>Manuál terénní výkonnosti.&lt;br/&gt;Upgrade: 1/4</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE">
<English>Vehicle Armor</English>
<German>Fahrzeugpanzerung</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_DESC">
<English>Manual to install or upgrade the armor of the vehicle.</English>
<German>Handbuch zum Installieren oder Upgraden der Panzerung eines Fahrzeugs.</German>
<English>Manual to install and upgrade the armor of the vehicle.&lt;br/&gt;Upgrade: 2/4</English>
<German>Handbuch zum Installieren und Upgraden der Panzerung eines Fahrzeugs.&lt;br/&gt;Upgrade: 2/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK">
<English>Cargo Space</English>
<German>Laderaum</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_DESC">
<English>Manual to upgrade the cargo space of a vehicle.</English>
<German>Handbuch zum Upgraden des Laderaums eines Fahrzeugs.</German>
<English>Manual to upgrade the cargo space of a vehicle.&lt;br/&gt;Upgrade: 3/4</English>
<German>Handbuch zum Upgraden des Laderaums eines Fahrzeugs.&lt;br/&gt;Upgrade: 3/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK">
<English>Fuel Tank</English>
@@ -22482,12 +22527,12 @@
<Czech>Palivová nádrž</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_DESC">
<English>Install guide for a bigger fuel tank.</English>
<German>Installationsanleitung für einen größeren Benzintank</German>
<Russian>Руководство по установке топливного бака.</Russian>
<Dutch>Installatiehandleiding voor de benzinetank.</Dutch>
<French>Guide d'installation du réservoir.</French>
<Czech>Návod na instalaci Palivové nádrže.</Czech>
<English>Install guide for a bigger fuel tank.&lt;br/&gt;Upgrade: 4/4</English>
<German>Installationsanleitung für einen größeren Benzintank.&lt;br/&gt;Upgrade: 4/4</German>
<Russian>Руководство по установке топливного бака.&lt;br/&gt;Upgrade: 4/4</Russian>
<Dutch>Installatiehandleiding voor de benzinetank.&lt;br/&gt;Upgrade: 4/4</Dutch>
<French>Guide d'installation du réservoir.&lt;br/&gt;Upgrade: 4/4</French>
<Czech>Návod na instalaci Palivové nádrže.&lt;br/&gt;Upgrade: 4/4</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_ARM">
<English>Weapon Upgrade</English>
@@ -22496,82 +22541,106 @@
<Czech>Vylepšení zbraně na vozidle</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_ARM_DESC">
<English>Installation instructions for the vehicle armament.</English>
<German>Installationsanleitung für die Fahrzeugbewaffnung.</German>
<Russian>Руководство по установке оружия.</Russian>
<Czech>Návod na instalaci zbraně na vozidlo.</Czech>
<English>Installation instructions for the vehicle armament.&lt;br/&gt;Additional Upgrade</English>
<German>Installationsanleitung für die Fahrzeugbewaffnung.&lt;br/&gt;Zusatz-Upgrade</German>
<Russian>Руководство по установке оружия.&lt;br/&gt;Additional Upgrade</Russian>
<Czech>Návod na instalaci zbraně na vozidlo.&lt;br/&gt;Additional Upgrade</Czech>
</Key>
<Key ID="STR_EPOCH_VEHUP_ORP_TRUCK">
<English>Truck Offroad Performance</English>
<German>LKW-Offroad Performance</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_ORP_TRUCK_DESC">
<English>Offroad performace manual to increase the offroad speed of trucks.</English>
<German>Offroad-Performance Handbuch, um die Geschwindigkeit von LKWs abseits der Straßen zu erhöhen.</German>
<English>Offroad performace manual to increase the offroad speed of trucks.&lt;br/&gt;Upgrade: 1/4</English>
<German>Offroad-Performance Handbuch, um die Geschwindigkeit von LKWs abseits der Straßen zu erhöhen.&lt;br/&gt;Upgrade: 1/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_TRUCK">
<English>Truck Armor</English>
<German>LKW-Panzerung</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_TRUCK_DESC">
<English>Manual to install or upgrade the armor of trucks.</English>
<German>Handbuch zum Installieren oder Upgraden der Panzerung von LKWs.</German>
<English>Manual to install and upgrade the armor of trucks.&lt;br/&gt;Upgrade: 2/4</English>
<German>Handbuch zum Installieren und Upgraden der Panzerung von LKWs.&lt;br/&gt;Upgrade: 2/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_TRUCK">
<English>Truck Cargo Space</English>
<German>LKW-Laderaum</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_TRUCK_DESC">
<English>Manual to upgrade the cargo space of a truck.</English>
<German>Handbuch zum Upgraden des Laderaums eines LKWs.</German>
<English>Manual to upgrade the cargo space of a truck.&lt;br/&gt;Upgrade: 3/4</English>
<German>Handbuch zum Upgraden des Laderaums eines LKWs.&lt;br/&gt;Upgrade: 3/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_TRUCK">
<English>Truck Fuel Tank</English>
<German>LKW-Benzintank</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_TRUCK_DESC">
<English>Install guide for bigger truck fuel tanks.</English>
<German>Installationsanleitung für einen größeren Benzintank bei LKWs.</German>
<English>Install guide for bigger truck fuel tanks.&lt;br/&gt;Upgrade: 4/4</English>
<German>Installationsanleitung für einen größeren Benzintank bei LKWs.&lt;br/&gt;Upgrade: 4/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_ARM_TRUCK">
<English>Truck Weapon Upgrade</English>
<German>LKW-Bewaffnungs-Upgrade</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_ARM_TRUCK_DESC">
<English>Installation instructions for the truck armament.</English>
<German>Installationsanleitung für die LKW-Bewaffnung.</German>
<English>Installation instructions for the truck armament.&lt;br/&gt;Additional Upgrade</English>
<German>Installationsanleitung für die LKW-Bewaffnung.&lt;br/&gt;Zusatz-Upgrade</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_ORP_TANK">
<English>Tank Performance</English>
<German>Panzer-Performance</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_ORP_TANK_DESC">
<English>Performace manual to increase the speed of tanks.</English>
<German>Performance Handbuch, um die Geschwindigkeit von Panzern zu erhöhen.</German>
<English>Performace manual to increase the speed of tanks.&lt;br/&gt;Upgrade: 1/4</English>
<German>Performance Handbuch, um die Geschwindigkeit von Panzern zu erhöhen.&lt;br/&gt;Upgrade: 1/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_TANK">
<English>Tank Armor</English>
<German>Panzer-Panzerung</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_TANK_DESC">
<English>Manual to install or upgrade the armor of tanks.</English>
<German>Handbuch zum Installieren oder Upgraden der Panzerung von Panzern.</German>
<English>Manual to install and upgrade the armor of tanks.&lt;br/&gt;Upgrade: 2/4</English>
<German>Handbuch zum Installieren und Upgraden der Panzerung von Panzern.&lt;br/&gt;Upgrade: 2/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_TANK">
<English>Tank Cargo Space</English>
<German>Panzer-Laderaum</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_TANK_DESC">
<English>Manual to upgrade the cargo space of a tank.</English>
<German>Handbuch zum Upgraden des Laderaums eines Panzers.</German>
<English>Manual to upgrade the cargo space of a tank.&lt;br/&gt;Upgrade: 3/4</English>
<German>Handbuch zum Upgraden des Laderaums eines Panzers.&lt;br/&gt;Upgrade: 3/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_TANK">
<English>Tank Fuel Tank</English>
<German>Panzer-Benzintank</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_TANK_DESC">
<English>Install guide for bigger tank fuel tanks.</English>
<German>Installationsanleitung für einen größeren Benzintank bei Panzern.</German>
<English>Install guide for bigger tank fuel tanks.&lt;br/&gt;Upgrade: 4/4</English>
<German>Installationsanleitung für einen größeren Benzintank bei Panzern.&lt;br/&gt;Upgrade: 4/4</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_HELI">
<English>Helicopter Armor</English>
<German>Helikopter-Panzerung</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_AVE_HELI_DESC">
<English>Manual to install and upgrade the armor of helicopters.&lt;br/&gt;Upgrade: 1/3</English>
<German>Handbuch zum Installieren und Upgraden der Panzerung von Helikoptern.&lt;br/&gt;Upgrade: 1/3</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_HELI">
<English>Helicopter Cargo Space</English>
<German>Helikopter-Laderaum</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_LRK_HELI_DESC">
<English>Manual to upgrade the cargo space of a helicopter.&lt;br/&gt;Upgrade: 2/3</English>
<German>Handbuch zum Upgraden des Laderaums eines Helikopters.&lt;br/&gt;Upgrade: 2/3</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_HELI">
<English>Helicopter Fuel Tank</English>
<German>Helikopter-Tank</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_TNK_HELI_DESC">
<English>Install guide for bigger helicopter fuel tanks.&lt;br/&gt;Upgrade: 3/3</English>
<German>Installationsanleitung für einen größeren Benzintank bei Helikoptern.&lt;br/&gt;Upgrade: 3/3</German>
</Key>
<Key ID="STR_EPOCH_VEHUP_IN_PROGRESS">
<English>Vehicle Upgrade in progress, please wait...</English>