mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Add 9 new buildings for server admins to add
Add 9 new buildings: - Rabbit Hutch - Chicken Coop - Dog House - Postbox - Boggle - Satellite Dish# - Fuel Tank - Water Tank - Water Tower
This commit is contained in:
@@ -1,3 +1,47 @@
|
||||
class advanced_workBench_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_WORKBENCH_ADVANCED;
|
||||
descriptionShort = $STR_EPOCH_WORKBENCH_ADVANCED_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Advanced_WorkBench_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWorkBench_DZE : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemWorkBench;
|
||||
model = "z\addons\dayz_buildings\models\workbench_flat.p3d";
|
||||
picture = "\z\addons\dayz_buildings\equip\item_workbench.paa";
|
||||
descriptionShort = $STR_BLD_desc_ItemWorkBench;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "WorkBench_DZE";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class outhouse_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
@@ -586,7 +630,6 @@ class cook_tripod_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "CookTripod_DZ";
|
||||
};
|
||||
};
|
||||
@@ -607,7 +650,6 @@ class stoneoven_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Stoneoven_DZ";
|
||||
};
|
||||
};
|
||||
@@ -628,7 +670,6 @@ class commode_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Commode_DZ";
|
||||
};
|
||||
};
|
||||
@@ -649,7 +690,6 @@ class wardrobe_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Wardrobe_DZ";
|
||||
};
|
||||
};
|
||||
@@ -670,7 +710,6 @@ class fridge_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Fridge_DZ";
|
||||
};
|
||||
};
|
||||
@@ -691,7 +730,6 @@ class washing_machine_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Washing_Machine_DZ";
|
||||
};
|
||||
};
|
||||
@@ -712,7 +750,6 @@ class server_rack_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Server_Rack_DZ";
|
||||
};
|
||||
};
|
||||
@@ -733,7 +770,6 @@ class atm_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "ATM_DZ";
|
||||
};
|
||||
};
|
||||
@@ -754,7 +790,6 @@ class armchair_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Armchair_DZ";
|
||||
};
|
||||
};
|
||||
@@ -775,7 +810,6 @@ class sofa_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Sofa_DZ";
|
||||
};
|
||||
};
|
||||
@@ -796,7 +830,6 @@ class arcade_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Arcade_DZ";
|
||||
};
|
||||
};
|
||||
@@ -817,7 +850,6 @@ class vendmachine1_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Vendmachine1_DZ";
|
||||
};
|
||||
};
|
||||
@@ -838,7 +870,6 @@ class vendmachine2_kit: CA_Magazine
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "Vendmachine2_DZ";
|
||||
};
|
||||
};
|
||||
@@ -886,4 +917,224 @@ class camo_storage_crate_kit: CA_Magazine
|
||||
create = "CamoStorageCrate_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
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;";
|
||||
create = "StorageBarrelGreenRusty1_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class rabbit_hutch_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_RABBIT_HUTCH;
|
||||
descriptionShort = $STR_EQUIP_DESC_RABBIT_HUTCH;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Rabbit_Hutch_DZE";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class chicken_coop_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_CHICKEN_COOP;
|
||||
descriptionShort = $STR_EQUIP_DESC_CHICKEN_COOP;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Chicken_Coop_DZE";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class doghouse_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_DOG_HOUSE;
|
||||
descriptionShort = $STR_EQUIP_DESC_DOG_HOUSE;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Doghouse_DZE";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class postbox_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_POSTBOX;
|
||||
descriptionShort = $STR_EQUIP_DESC_POSTBOX;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Postbox_DZE";
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user