Update wrecks of modular buildings

This commit is contained in:
AirwavesMan
2021-01-14 10:01:51 +01:00
parent 63a3535f37
commit 1b8416c8ff
8 changed files with 229 additions and 38 deletions

View File

@@ -1,3 +1,6 @@
// Note: If adding a custom wreck model make sure the p3d model name is used as the class name with the prefix Land_
// E.g.: wood_wreck_frame.p3d = Land_ + wood_wreck_frame = Land_wood_wreck_frame
class Land_wood_wreck_frame : ruins {
scope = 2;
model = "\z\addons\dayz_epoch\models\wood_wreck_frame.p3d";
@@ -5,6 +8,7 @@ class Land_wood_wreck_frame : ruins {
removeoutput[] = {{"PartWoodPlywood",{0,3}},{"PartWoodLumber",{0,3}}};
vehicleClass = "DayZ Epoch Buildables";
};
class Land_wood_wreck_third : ruins {
scope = 2;
model = "\z\addons\dayz_epoch\models\wood_wreck_third.p3d";
@@ -44,10 +48,19 @@ class Land_wreck_cinder: ruins {
removeoutput[] = {{"CinderBlocks",{0,1}}};
vehicleClass = "DayZ Epoch Buildables";
};
class Land_wreck_metal_floor: ruins {
scope = 2;
model = "\z\addons\dayz_epoch\models\wreck_metal_floor.p3d";
displayName = $STR_METAL_FLOOR_WRECK;
removeoutput[] = {{"ItemPole",{0,2}},{"ItemTankTrap",{0,2}}};
removeoutput[] = {{"ItemPole",{0,2}},{"equip_metal_sheet",{0,2}}};
vehicleClass = "DayZ Epoch Buildables";
};
class Land_metal_floor_2x2_wreck: ruins {
scope = 2;
model = "\z\addons\dayz_epoch_v\base_building\floors\metal_floor_2x2_wreck.p3d";
displayName = $STR_METAL_FLOOR_WRECK;
removeoutput[] = {{"ItemPole",{0,4}},{"equip_metal_sheet",{0,4}}};
vehicleClass = "DayZ Epoch Buildables";
};