Add more upgradable trucks

- Upgraded vehicles have an indicator of the upgrade in their name now.
- Trucks have their own upgrade manual now.
- Vehicle upgrade manuals got proper names and descriptions  to offer better information what the upgrade is used for.
This commit is contained in:
AirwavesMan
2020-07-31 00:11:00 +02:00
parent 8ff268b0c5
commit 3e41a66a04
7 changed files with 2508 additions and 198 deletions

View File

@@ -305,6 +305,112 @@ class ItemARM: CA_Magazine
};
};
class ItemTruckORP: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_ORP_TRUCK;
model = "\z\addons\dayz_epoch\models\doc_Up1.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup1_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_ORP_TRUCK_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemTruckAVE: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_AVE_TRUCK;
model = "\z\addons\dayz_epoch\models\doc_Up2.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup2_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_AVE_TRUCK_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemTruckLRK: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_LRK_TRUCK;
model = "\z\addons\dayz_epoch\models\doc_Up3.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup3_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_LRK_TRUCK_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemTruckTNK: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_TNK_TRUCK;
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_TNK_TRUCK_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class ItemTruckARM: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_VEHUP_ARM_TRUCK;
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
descriptionShort = $STR_EPOCH_VEHUP_ARM_TRUCK_DESC;
sfx = "document";
class ItemActions
{
class Upgrades
{
text = $STR_EPOCH_PLAYER_UPGRADEV;
script = "spawn player_upgradeVehicle;";
};
};
};
class Blueprint_01: CA_Magazine
{
scope = 2;