More localization support

This commit is contained in:
Adaptivity
2016-04-24 14:11:14 +03:00
parent 6bee7a17f0
commit 52ee70394a
5 changed files with 366 additions and 102 deletions

View File

@@ -2,10 +2,10 @@ class PartOre: CA_Magazine {
scope = public;
count = 1;
type = 256;
displayName = "Iron Ore";
displayName = $STR_ORE_NAME_IRON;
model = "\z\addons\dayz_epoch\models\iron_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_iron_ore_CA.paa";
descriptionShort = "Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.";
descriptionShort = $STR_ORE_NAME_IRON_DESC;
weight = 1;
class ItemActions {
class Crafting {
@@ -22,10 +22,10 @@ class PartOreSilver: CA_Magazine {
scope = public;
count = 1;
type = 256;
displayName = "Silver Ore";
displayName = $STR_ORE_NAME_SILVER;
model = "\z\addons\dayz_epoch\models\silver_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_silver_ore_CA.paa";
descriptionShort = "Can be mined from rocks using a sledgehammer.";
descriptionShort = $STR_ORE_NAME_SILVER_DESC;
weight = 1;
class ItemActions {
class Crafting {
@@ -42,10 +42,10 @@ class PartOreGold: CA_Magazine {
scope = public;
count = 1;
type = 256;
displayName = "Gold Ore";
displayName = $STR_ORE_NAME_GOLD;
model = "\z\addons\dayz_epoch\models\gold_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_gold_ore_CA.paa";
descriptionShort = "Can be mined from rocks using a sledgehammer.";
descriptionShort = $STR_ORE_NAME_GOLD_DESC;
weight = 1;
class ItemActions {
class Crafting {