mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-18 06:02:56 +03:00
Update tents
equip_tent_poles are now in the loot tables and can be used for tent crafting. The recipe for crafting tents and nettings has changed a bit. Instead of poles, tent poles are needed now. The string for equip_tent_poles is confusing if the requirements are 6 Tent Poles but meant is 1x (6 Tent Poles).
This commit is contained in:
@@ -15,9 +15,7 @@ class ItemTent : CA_Magazine
|
||||
text = $STR_PITCH_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemTent"};
|
||||
create = "TentStorage";
|
||||
//ghost = "TentStorage_Ghost";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
@@ -28,7 +26,7 @@ class ItemTent : CA_Magazine
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"desert_net_kit",1}};
|
||||
input[] = {{"ItemTent",2},{"ItemPole",2}};
|
||||
input[] = {{"ItemTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
@@ -37,7 +35,7 @@ class ItemTent : CA_Magazine
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"forest_net_kit",1}};
|
||||
input[] = {{"ItemTent",2},{"ItemPole",2}};
|
||||
input[] = {{"ItemTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -60,9 +58,7 @@ class ItemDomeTent : CA_Magazine
|
||||
text = $STR_PITCH_DOME_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemDomeTent"};
|
||||
create = "DomeTentStorage";
|
||||
//ghost = "DomeTentStorage_Ghost";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
@@ -73,7 +69,7 @@ class ItemDomeTent : CA_Magazine
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"forest_net_kit",1}};
|
||||
input[] = {{"ItemDomeTent",2},{"ItemPole",2}};
|
||||
input[] = {{"ItemDomeTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -97,7 +93,6 @@ class ItemDesertTent : CA_Magazine
|
||||
text = $STR_PITCH_DESERT_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemDesertTent"};
|
||||
create = "DesertTentStorage";
|
||||
};
|
||||
class Crafting
|
||||
@@ -107,7 +102,7 @@ class ItemDesertTent : CA_Magazine
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"desert_net_kit",1}};
|
||||
input[] = {{"ItemDesertTent",2},{"ItemPole",2}};
|
||||
input[] = {{"ItemDesertTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user