mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-26 17:51:51 +03:00
Rearrange CfgMagazines
This commit rearranges the complete CfgMagazines structure. We no longer have seperated folders for DayZ Mod and Epoch. All items got merged and grouped together. Unused items got moved into a folder called Not used under items.
This commit is contained in:
63
SQF/dayz_code/Configs/CfgMagazines/Items/Gems.hpp
Normal file
63
SQF/dayz_code/Configs/CfgMagazines/Items/Gems.hpp
Normal file
@@ -0,0 +1,63 @@
|
||||
class ItemTopaz : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_TOPAZ;
|
||||
model = "\z\addons\dayz_epoch\models\topaz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_topaz_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_TOPAZ;
|
||||
};
|
||||
class ItemObsidian : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_OBSIDIAN;
|
||||
model = "\z\addons\dayz_epoch\models\obsidian.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_obsidian_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_OBSIDIAN;
|
||||
};
|
||||
class ItemSapphire : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_SAPPHIRE;
|
||||
model = "\z\addons\dayz_epoch\models\sapphire.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_sapphire_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_SAPPHIRE;
|
||||
};
|
||||
class ItemAmethyst : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_AMETHYST;
|
||||
model = "\z\addons\dayz_epoch\models\amethyst.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_amethyst_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_AMETHYST;
|
||||
};
|
||||
class ItemEmerald : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_EMERALD;
|
||||
model = "\z\addons\dayz_epoch\models\emerald.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_emerald_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_EMERALD;
|
||||
};
|
||||
class ItemCitrine : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_CITRINE;
|
||||
model = "\z\addons\dayz_epoch\models\citrine.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_citrine_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_CITRINE;
|
||||
};
|
||||
class ItemRuby : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_RUBY;
|
||||
model = "\z\addons\dayz_epoch\models\ruby.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_ruby_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_RUBY;
|
||||
};
|
||||
Reference in New Issue
Block a user