Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Buildings/Plants.hpp
2022-03-27 13:07:56 +02:00

197 lines
4.4 KiB
C++

class Plant_Patch_Pumpkin_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_PUMPKIN;
descriptionShort = $STR_EPOCH_PLANT_PATCH_PUMPKIN_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[] = {"ItemShovel"};
create = "Plant_Patch_Pumpkin_DZE";
};
};
};
class Plant_Patch_Sunflower_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_SUNFLOWER;
descriptionShort = $STR_EPOCH_PLANT_PATCH_SUNFLOWER_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[] = {"ItemShovel"};
create = "Plant_Patch_Sunflower_DZE";
};
};
};
class Plant_Patch_Carrot_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_CARROT;
descriptionShort = $STR_EPOCH_PLANT_PATCH_CARROT_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[] = {"ItemShovel"};
create = "Plant_Patch_Carrot_DZE";
};
};
};
class Plant_Patch_Potato_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_POTATO;
descriptionShort = $STR_EPOCH_PLANT_PATCH_POTATO_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[] = {"ItemShovel"};
create = "Plant_Patch_Potato_DZE";
};
};
};
class Plant_Patch_Hemp_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_HEMP;
descriptionShort = $STR_EPOCH_PLANT_PATCH_HEMP_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[] = {"ItemShovel"};
create = "Plant_Patch_Hemp_DZE";
};
};
};
class Plant_Patch_Tobacco_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_TOBACCO;
descriptionShort = $STR_EPOCH_PLANT_PATCH_TOBACCO_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[] = {"ItemShovel"};
create = "Plant_Patch_Tobacco_DZE";
};
};
};
class Plant_Patch_Tea_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_TEA;
descriptionShort = $STR_EPOCH_PLANT_PATCH_TEA_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[] = {"ItemShovel"};
create = "Plant_Patch_Tea_DZE";
};
};
};
class Plant_Patch_Garlic_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_GARLIC;
descriptionShort = $STR_EPOCH_PLANT_PATCH_GARLIC_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[] = {"ItemShovel"};
create = "Plant_Patch_Garlic_DZE";
};
};
};
class Plant_Patch_Comfrey_kit: CA_Magazine
{
scope = 2;
count = 1;
type = 256;
displayName = $STR_EPOCH_PLANT_PATCH_COMFREY;
descriptionShort = $STR_EPOCH_PLANT_PATCH_COMFREY_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[] = {"ItemShovel"};
create = "Plant_Patch_Comfrey_DZE";
};
};
};