diff --git a/Documents/Epoch 1.0.7.1 Classnames/CfgMagazines all.txt b/Documents/Epoch 1.0.7.1 Classnames/CfgMagazines all.txt index b01d874f1..104eaa623 100644 --- a/Documents/Epoch 1.0.7.1 Classnames/CfgMagazines all.txt +++ b/Documents/Epoch 1.0.7.1 Classnames/CfgMagazines all.txt @@ -1261,6 +1261,7 @@ ItemTobaccoSeed ItemKiloBlackTea ItemBlackTeaSeed ItemTobaccoLeafs +ItemComfreySeed equip_comfreyleafs ItemLog ItemPlank @@ -1600,6 +1601,11 @@ rabbit_hutch_kit chicken_coop_kit doghouse_kit postbox_kit +wild_bee_hive_kit +cow_stable_kit +goat_stable_kit +sheep_stable_kit +boar_stable_kit ItemTent ItemTentWinter ItemDomeTent @@ -1685,4 +1691,13 @@ Stinger_Tripod_Launcher_Static_kit TOW_Tripod_Launcher_Static_kit Rbs70_Launcher_Static_kit Igla_AntiAir_Launcher_Static_kit -ZU23_AntiAir_Static_kit \ No newline at end of file +ZU23_AntiAir_Static_kit +Plant_Patch_Pumpkin_kit +Plant_Patch_Sunflower_kit +Plant_Patch_Carrot_kit +Plant_Patch_Potato_kit +Plant_Patch_Hemp_kit +Plant_Patch_Tobacco_kit +Plant_Patch_Tea_kit +Plant_Patch_Garlic_kit +Plant_Patch_Comfrey_kit \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Plants.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Plants.hpp new file mode 100644 index 000000000..966dd552f --- /dev/null +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Plants.hpp @@ -0,0 +1,36 @@ +class Plant_Patch_Pumpkin_kit +{ + weight = 5; +}; +class Plant_Patch_Sunflower_kit +{ + weight = 5; +}; +class Plant_Patch_Carrot_kit +{ + weight = 5; +}; +class Plant_Patch_Potato_kit +{ + weight = 5; +}; +class Plant_Patch_Hemp_kit +{ + weight = 5; +}; +class Plant_Patch_Tobacco_kit +{ + weight = 5; +}; +class Plant_Patch_Tea_kit +{ + weight = 5; +}; +class Plant_Patch_Garlic_kit +{ + weight = 5; +}; +class Plant_Patch_Comfrey_kit +{ + weight = 5; +}; \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Storage.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Storage.hpp index 3a3eb9573..9f6dd149a 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Storage.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Buildings/Storage.hpp @@ -222,4 +222,24 @@ class doghouse_kit class postbox_kit { weight = 10; +}; +class wild_bee_hive_kit +{ + weight = 55; +}; +class cow_stable_kit +{ + weight = 180; +}; +class goat_stable_kit +{ + weight = 180; +}; +class sheep_stable_kit +{ + weight = 180; +}; +class boar_stable_kit +{ + weight = 180; }; \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/R3F_CfgWeight.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/R3F_CfgWeight.hpp index 9d974e259..fe7fb4961 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/R3F_CfgWeight.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/R3F_CfgWeight.hpp @@ -35,6 +35,7 @@ class CfgWeight #include "Magazines\Buildings\Misc.hpp" #include "Magazines\Buildings\TripWire.hpp" #include "Magazines\Buildings\StaticWeapons.hpp" + #include "Magazines\Buildings\Plants.hpp" #include "Magazines\Consumables\Fish.hpp" #include "Magazines\Consumables\Meat.hpp"