mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-04 15:22:53 +03:00
Added 8 buildable storage barrels with their weaponholders and CfgWeights entries
Classnames: Kits: ItemStorageBarrel1_kit ItemStorageBarrel2_kit ItemStorageBarrel3_kit ItemStorageBarrel4_kit ItemStorageBarrel5_kit ItemStorageBarrel6_kit ItemStorageBarrel7_kit ItemStorageBarrel8_kit Objects: StorageBarrelRed1_DZ StorageBarrelRed2_DZ StorageBarrelEpoch1_DZ StorageBarrelEpoch2_DZ StorageBarrelYellow1_DZ StorageBarrelYellow1_DZ StorageBarrelBlack1_DZ StorageBarrelBlack2_DZ StorageBarrelGreenDark1_DZ StorageBarrelGreenDark2_DZ StorageBarrelMilk1_DZ StorageBarrelMilk2_DZ StorageBarrelGreen1_DZ StorageBarrelGreen2_DZ StorageBarrelGreenRusty1_DZ StorageBarrelGreenRusty2_DZ Weaponholder: WeaponHolder_ItemStorageBarrel1_kit WeaponHolder_ItemStorageBarrel2_kit WeaponHolder_ItemStorageBarrel3_kit WeaponHolder_ItemStorageBarrel4_kit WeaponHolder_ItemStorageBarrel5_kit WeaponHolder_ItemStorageBarrel6_kit WeaponHolder_ItemStorageBarrel7_kit WeaponHolder_ItemStorageBarrel8_kit
This commit is contained in:
@@ -20,6 +20,146 @@ class ItemFireBarrel_kit: CA_Magazine
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel1_kit: CA_Magazine
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
count = 1;
|
||||||
|
type = 256;
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELREDKIT;
|
||||||
|
model = "\CA\misc\Barel1.p3d";
|
||||||
|
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELREDKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelRed1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel2_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELEPOCHKIT;
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELEPOCHKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelEpoch1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel3_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELYELLOWKIT;
|
||||||
|
model = "\CA\misc\Barel3.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELYELLOWKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelYellow1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel4_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELBLACKKIT;
|
||||||
|
model = "\CA\misc\Barel4.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELBLACKKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelBlack1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel5_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENDARKKIT;
|
||||||
|
model = "\CA\misc\Barel5.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELGREENDARKKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelGreenDark1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel6_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELMILKKIT;
|
||||||
|
model = "\CA\misc\Barel6.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELMILKKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelMilk1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel7_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENKIT;
|
||||||
|
model = "\CA\misc\Barel7.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELGREENKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelGreen1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class ItemStorageBarrel8_kit: ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENRUSTYKIT;
|
||||||
|
model = "\CA\misc\Barel8.p3d";
|
||||||
|
descriptionShort = $STR_EPOCH_STORAGEBARRELGREENRUSTYKIT_DESC;
|
||||||
|
class ItemActions
|
||||||
|
{
|
||||||
|
class Build
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_BUILD;
|
||||||
|
script = "spawn player_build;";
|
||||||
|
require[] = {};
|
||||||
|
create = "StorageBarrelGreenRusty1_DZ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
class workbench_kit: CA_Magazine
|
class workbench_kit: CA_Magazine
|
||||||
{
|
{
|
||||||
scope = 2;
|
scope = 2;
|
||||||
|
|||||||
@@ -491,3 +491,307 @@ class CamoStorageCrate_DZ: BuiltItems
|
|||||||
nounderground = 0; // new
|
nounderground = 0; // new
|
||||||
vehicleClass = "DayZ Epoch Buildables";
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class StorageBarrelRed1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELRED;
|
||||||
|
model = "\CA\misc\Barel1.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel1_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 7;
|
||||||
|
transportMaxMagazines = 70;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelRed2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELRED2;
|
||||||
|
model = "\CA\misc\Barel1.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel1_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 10;
|
||||||
|
transportMaxMagazines = 100;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelEpoch1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELEPOCH;
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel2_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelEpoch2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELEPOCH2;
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel2_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelYellow1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELYELLOW;
|
||||||
|
model = "\CA\misc\Barel3.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel3_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelYellow2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELYELLOW2;
|
||||||
|
model = "\CA\misc\Barel3.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel3_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelBlack1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELBLACK;
|
||||||
|
model = "\CA\misc\Barel4.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel4_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelBlack2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELBLACK2;
|
||||||
|
model = "\CA\misc\Barel4.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel4_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreenDark1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENDARK;
|
||||||
|
model = "\CA\misc\Barel5.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel5_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreenDark2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENDARK2;
|
||||||
|
model = "\CA\misc\Barel5.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel5_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelMilk1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELMILK;
|
||||||
|
model = "\CA\misc\Barel6.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel6_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelMilk2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELMILK2;
|
||||||
|
model = "\CA\misc\Barel6.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel6_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreen1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREEN;
|
||||||
|
model = "\CA\misc\Barel7.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel7_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreen2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREEN2;
|
||||||
|
model = "\CA\misc\Barel7.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel7_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreenRusty1_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENRUSTY;
|
||||||
|
model = "\CA\misc\Barel8.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel8_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 8;
|
||||||
|
transportMaxMagazines = 80;
|
||||||
|
transportMaxBackpacks = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
class StorageBarrelGreenRusty2_DZ: BuiltItems
|
||||||
|
{
|
||||||
|
scope = 2;
|
||||||
|
cost = 100;
|
||||||
|
offset[] = {0,1.5,0};
|
||||||
|
displayName = $STR_EPOCH_STORAGEBARRELGREENRUSTY2;
|
||||||
|
model = "\CA\misc\Barel8.p3d";
|
||||||
|
icon = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||||
|
mapSize = 2;
|
||||||
|
armor = 400;
|
||||||
|
vehicleClass = "DayZ Epoch Buildables";
|
||||||
|
constructioncount = 2;
|
||||||
|
removeoutput[] = {{"ItemStorageBarrel8_kit",1}};
|
||||||
|
nounderground = 0;
|
||||||
|
transportMaxWeapons = 12;
|
||||||
|
transportMaxMagazines = 120;
|
||||||
|
transportMaxBackpacks = 4;
|
||||||
|
};
|
||||||
@@ -636,3 +636,83 @@ class WeaponHolder_ItemLockboxWinter2Broken: WeaponHolder {
|
|||||||
displayName = "$STR_EPOCH_LOCKBOX_BROKEN+";
|
displayName = "$STR_EPOCH_LOCKBOX_BROKEN+";
|
||||||
seedItem = "ItemLockboxWinter2Broken";
|
seedItem = "ItemLockboxWinter2Broken";
|
||||||
};
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel1_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELREDKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel1.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel1_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel2_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELEPOCHKIT_DESC";
|
||||||
|
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel2_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel3_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELEYELLOWKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel3.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel3_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel4_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELBLACKKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel4.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel4_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel5_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELGREENDARKKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel5.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel5_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel6_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELMILKKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel6.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel6_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel7_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELGREENKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel7.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel7_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class WeaponHolder_ItemStorageBarrel8_kit: WeaponHolder {
|
||||||
|
scope = 1;
|
||||||
|
displayName = "$STR_EPOCH_STORAGEBARRELGREENRUSTYKIT_DESC";
|
||||||
|
model = "\CA\misc\Barel8.p3d";
|
||||||
|
destrType = "DestructNo";
|
||||||
|
|
||||||
|
class eventHandlers {
|
||||||
|
init = "[(_this select 0),'cfgMagazines','ItemStorageBarrel8_kit'] execVM '\z\addons\dayz_code\actions\pickupActions\object_pickupAction.sqf';";
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -166,3 +166,35 @@ class camo_storage_crate_kit
|
|||||||
{
|
{
|
||||||
weight = 21;
|
weight = 21;
|
||||||
};
|
};
|
||||||
|
class ItemStorageBarrel1_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel2_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel3_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel4_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel5_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel6_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel7_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
|
class ItemStorageBarrel8_kit
|
||||||
|
{
|
||||||
|
weight = 25;
|
||||||
|
};
|
||||||
@@ -28039,6 +28039,134 @@
|
|||||||
<German>Eine brennende Feuertonne, die wesentlich länger als ein einfaches Lagerfeuer brennt.</German>
|
<German>Eine brennende Feuertonne, die wesentlich länger als ein einfaches Lagerfeuer brennt.</German>
|
||||||
<Russian>Бочка с дровами, которую можно поджечь и использовать в качестве источника огня.</Russian>
|
<Russian>Бочка с дровами, которую можно поджечь и использовать в качестве источника огня.</Russian>
|
||||||
</Key>
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELREDKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELREDKIT_DESC">
|
||||||
|
<English>A red barrel that can be used to store items.</English>
|
||||||
|
<German>Eine rote Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELEPOCHKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELEPOCHKIT_DESC">
|
||||||
|
<English>A green oil-barrel that can be used to store items.</English>
|
||||||
|
<German>Eine grüne Öl-Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELYELLOWKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELYELLOWKIT_DESC">
|
||||||
|
<English>A yellow barrel that can be used to store items.</English>
|
||||||
|
<German>Eine gelbe Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELBLACKKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELBLACKKIT_DESC">
|
||||||
|
<English>A black barrel that can be used to store items.</English>
|
||||||
|
<German>Eine schwarze Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENDARKKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENDARKKIT_DESC">
|
||||||
|
<English>A dark-green barrel that can be used to store items.</English>
|
||||||
|
<German>Eine dunkel-grüne Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELMILKKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELMILKKIT_DESC">
|
||||||
|
<English>A white-pink checkered barrel that can be used to store items.</English>
|
||||||
|
<German>Eine weiß-pink gefleckte Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENKIT_DESC">
|
||||||
|
<English>A green barrel that can be used to store items.</English>
|
||||||
|
<German>Eine grüne Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENRUSTYKIT">
|
||||||
|
<English>Storage Barrel Kit</English>
|
||||||
|
<German>Lagerungs-Tonne Bausatz</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENRUSTYKIT_DESC">
|
||||||
|
<English>A green, rusty barrel that can be used to store items.</English>
|
||||||
|
<German>Eine grüne, rostige Tonne, die als Lagersplatz verwendet werden kann.</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELRED">
|
||||||
|
<English>Storage Barrel (Red)</English>
|
||||||
|
<German>Lagerungs-Tonne (Rot)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELRED2">
|
||||||
|
<English>Storage Barrel (Red) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Rot) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELEPOCH">
|
||||||
|
<English>Storage Barrel (Epoch)</English>
|
||||||
|
<German>Lagerungs-Tonne (Epoch)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREEPOCH2">
|
||||||
|
<English>Storage Barrel (Epoch) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Epoch) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELYELLOW">
|
||||||
|
<English>Storage Barrel (Yellow)</English>
|
||||||
|
<German>Lagerungs-Tonne (Gelb)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREYELLOW2">
|
||||||
|
<English>Storage Barrel (Yellow) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Gelb) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELBLACK">
|
||||||
|
<English>Storage Barrel (Black)</English>
|
||||||
|
<German>Lagerungs-Tonne (Schwarz)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREBLACK2">
|
||||||
|
<English>Storage Barrel (Black) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Schwarz) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENDARK">
|
||||||
|
<English>Storage Barrel (Green dark)</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün dunkel)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREGREENDARK2">
|
||||||
|
<English>Storage Barrel (Green dark) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün dunkel) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELMILK">
|
||||||
|
<English>Storage Barrel (Milk)</English>
|
||||||
|
<German>Lagerungs-Tonne (Milch)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREMILK2">
|
||||||
|
<English>Storage Barrel (Milk) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Milch) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREEN">
|
||||||
|
<English>Storage Barrel (Green)</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREGREEN2">
|
||||||
|
<English>Storage Barrel (Green) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün) +</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARRELGREENRUSTY">
|
||||||
|
<English>Storage Barrel (Green rusty)</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün rostig)</German>
|
||||||
|
</Key>
|
||||||
|
<Key ID="STR_EPOCH_STORAGEBARREGREENRUSTY2">
|
||||||
|
<English>Storage Barrel (Green rusty) +</English>
|
||||||
|
<German>Lagerungs-Tonne (Grün rostig) +</German>
|
||||||
|
</Key>
|
||||||
<Key ID="STR_EPOCH_WORKBENCH">
|
<Key ID="STR_EPOCH_WORKBENCH">
|
||||||
<English>Workbench</English>
|
<English>Workbench</English>
|
||||||
<German>Werkbank</German>
|
<German>Werkbank</German>
|
||||||
|
|||||||
Reference in New Issue
Block a user