mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Add concrete bunker
Models made by @Helion4
This commit is contained in:
@@ -48,7 +48,7 @@ class metal_floor_half_kit: CA_Magazine
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_METALFLOORHALF;
|
||||
descriptionShort = $STR_EPOCH_METALFLOORHALF
|
||||
descriptionShort = $STR_EPOCH_METALFLOORHALF;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
@@ -622,6 +622,59 @@ class cinder_gate_kit_locked: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class cinder_bunker_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CINDERBUNKER;
|
||||
descriptionShort = $STR_EPOCH_CINDERBUNKER_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 = "Concrete_Bunker_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_239_1_2;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"cinder_bunker_kit_locked",1}};
|
||||
input[] = {{"cinder_bunker_kit",1},{"ItemComboLock",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class cinder_bunker_kit_locked: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CINDERBUNKERLOCKED;
|
||||
descriptionShort = $STR_EPOCH_CINDERBUNKER_LOCKED_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 = "Concrete_Bunker_Locked_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class metal_drawbridge_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
@@ -1445,7 +1498,6 @@ class ItemWoodGateFrame: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
class ItemWoodGate: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
@@ -1581,6 +1633,4 @@ class door_locked_kit: CA_Magazine
|
||||
create = "DoorLocked_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user