Add 4 tree stumps with gear slots - let the treasure hunt begin

This commit is contained in:
A Man
2022-05-29 15:44:54 +02:00
parent d95a7673a8
commit ffdae898fc
3 changed files with 368 additions and 1 deletions

View File

@@ -825,5 +825,6 @@ class CfgVehicles
airRotation = 1.0;
};
#include "TreeStumps.hpp"
#include "Helper.hpp"
};

View File

@@ -0,0 +1,44 @@
class TreeStump01: Strategic {
scope = 2;
displayName = $STR_TREE_STUMP_01;
model = "\ca\plants2\misc\misc_stub2.p3d";
destrType = "DestructNo";
transportMaxMagazines = 100;
transportMaxWeapons = 25;
transportMaxBackpacks = 10;
vehicleClass = "DayZ Epoch Tree Stumps";
};
class TreeStump02: Strategic {
scope = 2;
displayName = $STR_TREE_STUMP_02;
model = "\ca\plants2\misc\misc_stub1.p3d";
destrType = "DestructNo";
transportMaxMagazines = 100;
transportMaxWeapons = 25;
transportMaxBackpacks = 10;
vehicleClass = "DayZ Epoch Tree Stumps";
};
class TreeStump03: Strategic {
scope = 2;
displayName = $STR_TREE_STUMP_02;
model = "\ca\plants2\misc\misc_FallenSpruce.p3d";
destrType = "DestructNo";
transportMaxMagazines = 100;
transportMaxWeapons = 25;
transportMaxBackpacks = 10;
vehicleClass = "DayZ Epoch Tree Stumps";
};
class TreeStump04: Strategic {
scope = 2;
displayName = $STR_TREE_STUMP_04;
icon = "\MAP_EU\icon\PM.paa";
model = "\ca\plants2\tree\t_stub_picea.p3d";
destrType = "DestructNo";
transportMaxMagazines = 100;
transportMaxWeapons = 25;
transportMaxBackpacks = 10;
vehicleClass = "DayZ Epoch Tree Stumps";
};