adding russian lang file
This commit is contained in:
@@ -56,7 +56,6 @@ minecraft {
|
|||||||
dependencies {
|
dependencies {
|
||||||
// PrimalCore
|
// PrimalCore
|
||||||
deobfCompile "nmd.primal.core:PrimalCore:${mc_version}-${primal_version}:dev"
|
deobfCompile "nmd.primal.core:PrimalCore:${mc_version}-${primal_version}:dev"
|
||||||
|
|
||||||
// JEI
|
// JEI
|
||||||
//runtime "mezz.jei:jei_${mc_version}:${jei_version}"
|
//runtime "mezz.jei:jei_${mc_version}:${jei_version}"
|
||||||
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}:api"
|
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}:api"
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ org.gradle.jvmargs=-Xmx3G
|
|||||||
mod_group=nmd.primal.forgecraft
|
mod_group=nmd.primal.forgecraft
|
||||||
mod_name=ForgeCraft
|
mod_name=ForgeCraft
|
||||||
|
|
||||||
mod_version=1.6.43
|
mod_version=1.6.44
|
||||||
forge_version=14.23.4.2765
|
forge_version=14.23.5.2806
|
||||||
mcp_mappings=snapshot_20171003
|
mcp_mappings=snapshot_20171003
|
||||||
mc_version=1.12.2
|
mc_version=1.12.2
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ public class ForgeCraft
|
|||||||
ModDictionary.registerDictionaryNames();
|
ModDictionary.registerDictionaryNames();
|
||||||
ModTiles.registerTileEntities();
|
ModTiles.registerTileEntities();
|
||||||
ModSounds.registerSounds();
|
ModSounds.registerSounds();
|
||||||
|
ModCrafting.register();
|
||||||
|
|
||||||
//ModEvents.registerClientEvents();
|
//ModEvents.registerClientEvents();
|
||||||
// ModItems.registerRenders();
|
// ModItems.registerRenders();
|
||||||
@@ -68,7 +69,7 @@ public class ForgeCraft
|
|||||||
//this.proxy.init(event);
|
//this.proxy.init(event);
|
||||||
proxy.init();
|
proxy.init();
|
||||||
|
|
||||||
ModCrafting.register();
|
|
||||||
|
|
||||||
//proxy.registerModelBakeryVariants();
|
//proxy.registerModelBakeryVariants();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public class ModInfo {
|
|||||||
//public static final String MOD_PREFIX = MOD_ID + ":";
|
//public static final String MOD_PREFIX = MOD_ID + ":";
|
||||||
public static final String MOD_CHANNEL = MOD_ID;
|
public static final String MOD_CHANNEL = MOD_ID;
|
||||||
|
|
||||||
public static final String MOD_VERSION = "1.6.43";
|
public static final String MOD_VERSION = "1.6.44";
|
||||||
public static final String MC_VERSIONS = "[1.12.0, 1.13.0)";
|
public static final String MC_VERSIONS = "[1.12.0, 1.13.0)";
|
||||||
public static final String DEPENDENCIES = "required-after:forge@[14.21.1.2400,);" + "required-after:primal@[0.6.69,);";
|
public static final String DEPENDENCIES = "required-after:forge@[14.21.1.2400,);" + "required-after:primal@[0.6.69,);";
|
||||||
|
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ public class CTCrucible {
|
|||||||
CraftTweakerAPI.apply(new Remove(recipe_name));
|
CraftTweakerAPI.apply(new Remove(recipe_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ZenMethod
|
@ZenMethod
|
||||||
public static void removeAll()
|
public static void removeAll()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -23,244 +23,7 @@ public final class RecipesCrucible {
|
|||||||
PrimalAPI.logger(7, "Registering Recipes: " + CrucibleCrafting.RECIPE_PREFIX);
|
PrimalAPI.logger(7, "Registering Recipes: " + CrucibleCrafting.RECIPE_PREFIX);
|
||||||
final IForgeRegistry<CrucibleCrafting> recipes = event.getRegistry();
|
final IForgeRegistry<CrucibleCrafting> recipes = event.getRegistry();
|
||||||
|
|
||||||
/*
|
|
||||||
ItemStack emptyAir = ItemStack.EMPTY;
|
|
||||||
|
|
||||||
NBTTagCompound newTag = new NBTTagCompound();
|
|
||||||
|
|
||||||
NBTTagCompound setHot = new NBTTagCompound();
|
|
||||||
setHot.setBoolean("hot", true);
|
|
||||||
|
|
||||||
ItemStack hotBronzeIngot = new ItemStack(ModItems.bronzeingotball, 1);
|
|
||||||
hotBronzeIngot.setTagCompound(setHot);
|
|
||||||
ItemStack hotIronIngot = new ItemStack(ModItems.ironingotball, 1);
|
|
||||||
hotIronIngot.setTagCompound(setHot);
|
|
||||||
ItemStack hotCleanIronIngot = new ItemStack(ModItems.ironcleaningotball, 1);
|
|
||||||
hotCleanIronIngot.setTagCompound(setHot);
|
|
||||||
ItemStack hotSteelIngot = new ItemStack(ModItems.steelingotball, 1);
|
|
||||||
hotSteelIngot.setTagCompound(setHot);
|
|
||||||
ItemStack hotWootzIngot = new ItemStack(ModItems.wootzingotball, 1);
|
|
||||||
hotWootzIngot.setTagCompound(setHot);
|
|
||||||
|
|
||||||
ItemStack hotBronzeChunk = new ItemStack( ModItems.bronzechunk, 1);
|
|
||||||
hotBronzeChunk.setTagCompound(setHot);
|
|
||||||
ItemStack hotChunk = new ItemStack( ModItems.wroughtironchunk, 1);
|
|
||||||
hotChunk.setTagCompound(setHot);
|
|
||||||
ItemStack hotCleanChunk = new ItemStack(ModItems.ironcleanchunk, 1);
|
|
||||||
hotCleanChunk.setTagCompound(setHot);
|
|
||||||
ItemStack hotSteelChunk = new ItemStack(ModItems.steelchunk, 1);
|
|
||||||
hotSteelChunk.setTagCompound(setHot);
|
|
||||||
ItemStack hotWootzChunk = new ItemStack(ModItems.wootzchunk, 1);
|
|
||||||
hotWootzChunk.setTagCompound(setHot);
|
|
||||||
|
|
||||||
ItemStack diamond = new ItemStack(Items.DIAMOND, 1);
|
|
||||||
ItemStack emerald = new ItemStack(Items.EMERALD, 1);
|
|
||||||
|
|
||||||
ItemStack emeraldShard = new ItemStack(PrimalAPI.Items.EMERALD_KNAPP, 1);
|
|
||||||
ItemStack diamondShard = new ItemStack(PrimalAPI.Items.DIAMOND_KNAPP, 1);
|
|
||||||
ItemStack redstone = new ItemStack(Items.REDSTONE, 1);
|
|
||||||
ItemStack lapis = new ItemStack(Items.DYE, 1, 4);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ItemStack[] toolArray = new ItemStack[24];
|
|
||||||
ItemStack[] hotToolArray = new ItemStack[16];
|
|
||||||
|
|
||||||
ItemStack bronzepickaxehead = new ItemStack(ModItems.bronzepickaxehead, 1);
|
|
||||||
bronzepickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[0] = bronzepickaxehead;
|
|
||||||
ItemStack bronzeaxehead = new ItemStack(ModItems.bronzeaxehead, 1);
|
|
||||||
bronzeaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[1] = bronzeaxehead;
|
|
||||||
ItemStack bronzeshovelhead = new ItemStack(ModItems.bronzeshovelhead, 1);
|
|
||||||
bronzeshovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[2] = bronzeshovelhead;
|
|
||||||
ItemStack bronzehoehead = new ItemStack(ModItems.bronzehoehead, 1);
|
|
||||||
bronzehoehead.setTagCompound(newTag);
|
|
||||||
toolArray[3] = bronzehoehead;
|
|
||||||
|
|
||||||
ItemStack pickaxehead = new ItemStack(ModItems.pickaxehead, 1);
|
|
||||||
pickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[4] = pickaxehead;
|
|
||||||
ItemStack ironaxehead = new ItemStack(ModItems.ironaxehead, 1);
|
|
||||||
ironaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[5] = ironaxehead;
|
|
||||||
ItemStack ironshovelhead = new ItemStack(ModItems.ironshovelhead, 1);
|
|
||||||
ironshovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[6] = ironshovelhead;
|
|
||||||
ItemStack ironhoehead = new ItemStack(ModItems.ironhoehead, 1);
|
|
||||||
ironhoehead.setTagCompound(newTag);
|
|
||||||
toolArray[7] = ironhoehead;
|
|
||||||
|
|
||||||
ItemStack cleanpickaxehead = new ItemStack(ModItems.cleanironpickaxehead, 1);
|
|
||||||
cleanpickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[8] = cleanpickaxehead;
|
|
||||||
ItemStack cleanaxehead = new ItemStack(ModItems.cleanironaxehead, 1);
|
|
||||||
cleanaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[9] = cleanaxehead;
|
|
||||||
ItemStack cleanshovelhead = new ItemStack(ModItems.cleanironshovelhead, 1);
|
|
||||||
cleanshovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[10] = cleanshovelhead;
|
|
||||||
ItemStack cleanhoehead = new ItemStack(ModItems.cleanironhoehead, 1);
|
|
||||||
cleanhoehead.setTagCompound(newTag);
|
|
||||||
toolArray[11] =cleanhoehead ;
|
|
||||||
|
|
||||||
ItemStack steelpickaxehead = new ItemStack(ModItems.steelpickaxehead, 1);
|
|
||||||
steelpickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[12] = steelpickaxehead;
|
|
||||||
ItemStack steelaxehead = new ItemStack(ModItems.steelaxehead, 1);
|
|
||||||
steelaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[13] =steelaxehead ;
|
|
||||||
ItemStack steelshovelhead = new ItemStack(ModItems.steelshovelhead, 1);
|
|
||||||
steelshovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[14] = steelshovelhead;
|
|
||||||
ItemStack steelhoehead = new ItemStack(ModItems.steelhoehead, 1);
|
|
||||||
steelhoehead.setTagCompound(newTag);
|
|
||||||
toolArray[15] =steelhoehead ;
|
|
||||||
|
|
||||||
ItemStack wootzpickaxehead = new ItemStack(ModItems.wootzpickaxehead, 1);
|
|
||||||
wootzpickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[16] = wootzpickaxehead;
|
|
||||||
ItemStack wootzaxehead = new ItemStack(ModItems.wootzaxehead, 1);
|
|
||||||
wootzaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[17] = wootzaxehead;
|
|
||||||
ItemStack wootzshovelhead = new ItemStack(ModItems.wootzshovelhead, 1);
|
|
||||||
wootzshovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[18] =wootzshovelhead ;
|
|
||||||
ItemStack wootzhoehead = new ItemStack(ModItems.wootzhoehead, 1);
|
|
||||||
wootzhoehead.setTagCompound(newTag);
|
|
||||||
toolArray[19] = wootzhoehead;
|
|
||||||
|
|
||||||
ItemStack copperpickaxehead = new ItemStack(ModItems.copperpickaxehead, 1);
|
|
||||||
copperpickaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[20] = copperpickaxehead;
|
|
||||||
ItemStack copperaxehead = new ItemStack(ModItems.copperaxehead, 1);
|
|
||||||
copperaxehead.setTagCompound(newTag);
|
|
||||||
toolArray[21] = copperaxehead;
|
|
||||||
ItemStack coppershovelhead = new ItemStack(ModItems.coppershovelhead, 1);
|
|
||||||
coppershovelhead.setTagCompound(newTag);
|
|
||||||
toolArray[22] =coppershovelhead ;
|
|
||||||
ItemStack copperhoehead = new ItemStack(ModItems.copperhoehead, 1);
|
|
||||||
copperhoehead.setTagCompound(newTag);
|
|
||||||
toolArray[23] = copperhoehead;
|
|
||||||
|
|
||||||
ItemStack hotpickaxehead = pickaxehead.copy();
|
|
||||||
hotToolArray[0] =hotpickaxehead;
|
|
||||||
ItemStack hotironaxehead = ironaxehead.copy();
|
|
||||||
hotToolArray[1] =hotironaxehead;
|
|
||||||
ItemStack hotironshovelhead = ironshovelhead.copy();
|
|
||||||
hotToolArray[2] =hotironshovelhead;
|
|
||||||
ItemStack hotironhoehead = ironhoehead.copy();
|
|
||||||
hotToolArray[3] =hotironhoehead;
|
|
||||||
|
|
||||||
ItemStack hotcleanpickaxehead = cleanpickaxehead.copy();
|
|
||||||
hotToolArray[4] = hotcleanpickaxehead;
|
|
||||||
ItemStack hotcleanaxehead = cleanaxehead.copy();
|
|
||||||
hotToolArray[5] = hotcleanaxehead;
|
|
||||||
ItemStack hotcleanshovelhead = cleanshovelhead.copy();
|
|
||||||
hotToolArray[6] = hotcleanshovelhead;
|
|
||||||
ItemStack hotcleanhoehead = cleanhoehead.copy();
|
|
||||||
hotToolArray[7] = hotcleanhoehead;
|
|
||||||
|
|
||||||
ItemStack hotsteelpickaxehead = steelpickaxehead.copy();
|
|
||||||
hotToolArray[8] = hotsteelpickaxehead;
|
|
||||||
ItemStack hotsteelaxehead = steelaxehead.copy();
|
|
||||||
hotToolArray[9] = hotsteelaxehead;
|
|
||||||
ItemStack hotsteelshovelhead = steelshovelhead.copy();
|
|
||||||
hotToolArray[10] = hotsteelshovelhead;
|
|
||||||
ItemStack hotsteelhoehead = steelhoehead.copy();
|
|
||||||
hotToolArray[11] = hotsteelhoehead;
|
|
||||||
|
|
||||||
ItemStack hotwootzpickaxehead = wootzpickaxehead.copy();
|
|
||||||
hotToolArray[12] = hotwootzpickaxehead;
|
|
||||||
ItemStack hotwootzaxehead = wootzaxehead.copy();
|
|
||||||
hotToolArray[13] = hotwootzaxehead;
|
|
||||||
ItemStack hotwootzshovelhead = wootzshovelhead.copy();
|
|
||||||
hotToolArray[14] = hotwootzshovelhead;
|
|
||||||
ItemStack hotwootzhoehead = wootzhoehead.copy();
|
|
||||||
hotToolArray[15] = hotwootzhoehead;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for(ItemStack temp : toolArray) {
|
|
||||||
NBTTagCompound tags = temp.getTagCompound();
|
|
||||||
tags.setTag("tags", tags);
|
|
||||||
|
|
||||||
tags.getCompoundTag("tags").setBoolean("hot", false);
|
|
||||||
tags.getCompoundTag("tags").setBoolean("emerald", false);
|
|
||||||
tags.getCompoundTag("tags").setInteger("diamond", 0);
|
|
||||||
tags.getCompoundTag("tags").setInteger("redstone", 0);
|
|
||||||
tags.getCompoundTag("tags").setInteger("lapis", 0);
|
|
||||||
tags.getCompoundTag("tags").setInteger("modifiers", 0);
|
|
||||||
temp.setTagCompound(tags);
|
|
||||||
}
|
|
||||||
|
|
||||||
bronzepickaxehead = toolArray[0];
|
|
||||||
bronzeaxehead = toolArray[1];
|
|
||||||
bronzeshovelhead = toolArray[2];
|
|
||||||
bronzehoehead = toolArray[3];
|
|
||||||
|
|
||||||
pickaxehead = toolArray[4];
|
|
||||||
ironaxehead = toolArray[5];
|
|
||||||
ironshovelhead = toolArray[6];
|
|
||||||
ironhoehead = toolArray[7];
|
|
||||||
|
|
||||||
cleanpickaxehead = toolArray[8];
|
|
||||||
cleanaxehead = toolArray[9];
|
|
||||||
cleanshovelhead = toolArray[10];
|
|
||||||
cleanhoehead = toolArray[11];
|
|
||||||
|
|
||||||
steelpickaxehead = toolArray[12] ;
|
|
||||||
steelaxehead = toolArray[13] ;
|
|
||||||
steelshovelhead = toolArray[14];
|
|
||||||
steelhoehead = toolArray[15] ;
|
|
||||||
|
|
||||||
wootzpickaxehead = toolArray[16];
|
|
||||||
wootzaxehead = toolArray[17];
|
|
||||||
wootzshovelhead = toolArray[18] ;
|
|
||||||
wootzhoehead = toolArray[19];
|
|
||||||
|
|
||||||
copperpickaxehead = toolArray[20];
|
|
||||||
copperaxehead = toolArray[21];
|
|
||||||
coppershovelhead = toolArray[22];
|
|
||||||
copperhoehead = toolArray[23];
|
|
||||||
|
|
||||||
for(ItemStack temp : hotToolArray) {
|
|
||||||
//NBTTagCompound newTag = new NBTTagCompound();
|
|
||||||
NBTTagCompound tags = new NBTTagCompound();
|
|
||||||
|
|
||||||
//temp.setTagCompound(newTag);
|
|
||||||
temp.getTagCompound().setTag("tags", tags);
|
|
||||||
|
|
||||||
temp.getTagCompound().setTag("tags", tags);
|
|
||||||
temp.getSubCompound("tags").setBoolean("hot", true);
|
|
||||||
temp.getSubCompound("tags").setBoolean("emerald", false);
|
|
||||||
temp.getSubCompound("tags").setInteger("diamond", 0);
|
|
||||||
temp.getSubCompound("tags").setInteger("redstone", 0);
|
|
||||||
temp.getSubCompound("tags").setInteger("lapis", 0);
|
|
||||||
temp.getSubCompound("tags").setInteger("modifiers", 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
hotpickaxehead = hotToolArray[0];
|
|
||||||
hotironaxehead = hotToolArray[1];
|
|
||||||
hotironshovelhead = hotToolArray[2];
|
|
||||||
hotironhoehead = hotToolArray[3];
|
|
||||||
|
|
||||||
hotcleanpickaxehead = hotToolArray[4];
|
|
||||||
hotcleanaxehead = hotToolArray[5];
|
|
||||||
hotcleanshovelhead = hotToolArray[6];
|
|
||||||
hotcleanhoehead = hotToolArray[7];
|
|
||||||
|
|
||||||
hotsteelpickaxehead = hotToolArray[8] ;
|
|
||||||
hotsteelaxehead = hotToolArray[9] ;
|
|
||||||
hotsteelshovelhead = hotToolArray[10];
|
|
||||||
hotsteelhoehead = hotToolArray[11] ;
|
|
||||||
|
|
||||||
hotwootzpickaxehead = hotToolArray[12];
|
|
||||||
hotwootzaxehead = hotToolArray[13];
|
|
||||||
hotwootzshovelhead = hotToolArray[14] ;
|
|
||||||
hotwootzhoehead = hotToolArray[15];
|
|
||||||
*/
|
|
||||||
//RecipeHandler.addSmelting(ModItems.softcrucible, new ItemStack(ModBlocks.nbtCrucible, 1));
|
//RecipeHandler.addSmelting(ModItems.softcrucible, new ItemStack(ModBlocks.nbtCrucible, 1));
|
||||||
|
|
||||||
/***********************/
|
/***********************/
|
||||||
|
|||||||
183
kfc/src/main/resources/assets/forgecraft/lang/ru_RU.lang
Normal file
183
kfc/src/main/resources/assets/forgecraft/lang/ru_RU.lang
Normal file
@@ -0,0 +1,183 @@
|
|||||||
|
itemGroup.forgecraft=ForgeCraft
|
||||||
|
|
||||||
|
|
||||||
|
tile.castingform.name=Литейная Форма
|
||||||
|
tile.castingblock.name=Литейный Блок
|
||||||
|
tile.bloomery_adobe.name=Кричная Плавильня
|
||||||
|
tile.bloomery_brick.name=Саманная Плавильня
|
||||||
|
tile.forge_brick.name=Киричная кузница
|
||||||
|
tile.forge_adobe.name=Саманная кузница
|
||||||
|
tile.blockbreaker.name=Разрушитель Блоков
|
||||||
|
tile.stoneanvil.name=Каменная Наковальня
|
||||||
|
tile.ironanvil.name=Железная Наковальня
|
||||||
|
tile.yewstave.name=Тисовый Стан
|
||||||
|
tile.nbtcrucible.name=Тигель
|
||||||
|
|
||||||
|
tile.pistonbellowsoak.name=Дубовые Кузнечные Меха
|
||||||
|
tile.pistonbellowsjungle.name=Тропические Кузнечные Меха
|
||||||
|
tile.pistonbellowsbirch.name=Березовые Кузнечные Меха
|
||||||
|
tile.pistonbellowsspruce.name=Еловые Кузнечные Меха
|
||||||
|
tile.pistonbellowsdarkoak.name=Темнодеревные Кузнечные Меха
|
||||||
|
tile.pistonbellowsacacia.name=Акациевые Кузнечные Меха
|
||||||
|
|
||||||
|
tile.steelchisel.name=Стальное Зубило
|
||||||
|
tile.wootzchisel.name= Дамасское Зубило
|
||||||
|
tile.cleanironchisel.name=Чистое железное Зубило
|
||||||
|
tile.ironchisel.name=Зубило из кованого железа
|
||||||
|
tile.copperchisel.name=Медное Зубило
|
||||||
|
tile.bronzechisel.name=Бронзовое Зубило
|
||||||
|
|
||||||
|
tile.toolbench.name=Инструментальный Стол
|
||||||
|
tile.sharpbench.name=Точильный Стол
|
||||||
|
|
||||||
|
item.bronzeingotball.name=Бронзовый Слиток
|
||||||
|
item.bronzechunk.name=Кусочек Бронзы
|
||||||
|
item.ironingotball.name=Кованный Железный Слиток
|
||||||
|
item.wroughtironchunk.name=Кованный Железный Кусочек
|
||||||
|
item.ironcleaningotball.name=Чистый Железный Слиток
|
||||||
|
item.ironcleanchunk.name=Кусочек Чистого Железа
|
||||||
|
item.steelingotball.name=Стальной Слиток
|
||||||
|
item.steelchunk.name=Стальной Кусочек
|
||||||
|
item.wootzingotball.name=Слиток Дамасской Стали
|
||||||
|
item.wootzchunk.name=Кусочек Дамасской Стали
|
||||||
|
|
||||||
|
item.brokenbronzetool.name=Сломанный Бронзовый Инструмент
|
||||||
|
item.brokenwroughtirontool.name=Сломанный Инструмент Из Кованого Железа
|
||||||
|
item.brokencleanirontool.name=Сломанный Инструмент из Чистого Железа
|
||||||
|
item.brokensteeltool.name=Сломанный Стальной Инструмет
|
||||||
|
item.brokenwootztool.name=Сломанный Инструмент из Дамасской Стали
|
||||||
|
|
||||||
|
item.unstrunglongbow.name=Обработанный Длинный Лук
|
||||||
|
item.longbow.name=Длинный Лук
|
||||||
|
item.rawlongbow.name=Необработанный Длинный Лук
|
||||||
|
item.grindingwheel.name=Шлифовальный круг
|
||||||
|
item.rawironslayer.name=Необработанный убийца из кованого железа
|
||||||
|
|
||||||
|
item.bellowshandle.name=Ручка Мехов
|
||||||
|
item.softcrucible.name=Мягкий Тигель
|
||||||
|
item.slottedtongs.name=Каменные Щипцы
|
||||||
|
item.forgehammer.name=Кузнечный Молот
|
||||||
|
|
||||||
|
item.cast_axe.name=Отлитый Топор
|
||||||
|
item.cast_gladius.name=Отлитый Меч
|
||||||
|
item.cast_pickaxe.name=Отлитая Кирка
|
||||||
|
item.cast_shovel.name=Отлитая Лопата
|
||||||
|
item.cast_hoe.name=Отлитая Мотыга
|
||||||
|
item.castingmud.name=Отливочная глина
|
||||||
|
|
||||||
|
item.rawcoppergladius.name=Необработанный Медный Меч
|
||||||
|
item.rawbronzegladius.name=Необработанный Бронзовый Меч
|
||||||
|
item.rawwroughtirongladius.name=Необработанный Меч из Кованного Железа
|
||||||
|
item.rawcleanirongladius.name=Необработанный Меч из Чистого Железа
|
||||||
|
item.rawsteelgladius.name=Необработанный Стальной Меч
|
||||||
|
item.rawwootzgladius.name=Необработанный Меч из Дамасской Стали
|
||||||
|
|
||||||
|
item.rawcleanironlongsword.name=Необработанный Clean Iron Longsword
|
||||||
|
item.rawsteellongsword.name=Необработанный Steel Longsword
|
||||||
|
item.rawwootzlongsword.name=Необработанный Damascus Longsword
|
||||||
|
|
||||||
|
item.rawtironslayer.name=Необработанный Кованный Убийца
|
||||||
|
item.rawcleanironslayer.name=Необработанный Убийца из Чистого Железа
|
||||||
|
item.rawsteelslayer.name=Необработанный Стальной Убийца
|
||||||
|
item.rawwootzslayer.name=Необработанный Убийца из Дамасской Стали
|
||||||
|
|
||||||
|
item.coppergladius.name=Медный Меч
|
||||||
|
item.bronzegladius.name=Бронзовый Меч
|
||||||
|
item.wroughtirongladius.name=Кованный Меч
|
||||||
|
item.cleanirongladius.name=Меч из Чистого Желаза
|
||||||
|
item.steelgladius.name=Стальной Меч
|
||||||
|
item.wootzgladius.name=Дамасский Меч
|
||||||
|
|
||||||
|
item.cleanironlongsword.name=Чистый Железный Длинный Меч
|
||||||
|
item.steellongsword.name=Стальной Длинный Меч
|
||||||
|
item.wootzlongsword.name=Дамасский Длинный Меч
|
||||||
|
|
||||||
|
item.wroughtironslayer.name=Кованный Убийца
|
||||||
|
item.cleanironslayer.name=Чистый Железный Убийца
|
||||||
|
item.steelslayer.name=Стальной Убийца
|
||||||
|
item.wootzslayer.name=Дамасский Убийца
|
||||||
|
|
||||||
|
item.bronzepickaxehead.name=Бронзовоя навершие кирки
|
||||||
|
item.bronzeaxehead.name=Бронзовое навершие топора
|
||||||
|
item.bronzeshovelhead.name=Бронзовое навершие лопаты
|
||||||
|
item.bronzehoehead.name=Бронзовое навершие мотыги
|
||||||
|
item.bronzepickaxe.name=Бронзовая Кирка
|
||||||
|
item.bronzeaxe.name=Бронзовый Топор
|
||||||
|
item.bronzeshovel.name=Бронзовая Лопата
|
||||||
|
item.bronzehoe.name=Бронзовая Мотыга
|
||||||
|
|
||||||
|
item.ironpickaxehead.name=Железное навершие кирки
|
||||||
|
item.ironaxehead.name=Железное навершие топора
|
||||||
|
item.ironshovelhead.name=Железное навершие лопаты
|
||||||
|
item.ironhoehead.name=Железное навершие мотыги
|
||||||
|
item.ironpickaxe.name=Железная Кирка
|
||||||
|
item.ironaxe.name=Железный Топор
|
||||||
|
item.ironshovel.name=Железная Лопата
|
||||||
|
item.ironhoe.name=Железная Мотыга
|
||||||
|
item.ironsword.name=Железный Меч
|
||||||
|
|
||||||
|
item.cleanironpickaxehead.name=Чистое железное навершие кирки
|
||||||
|
item.cleanironaxehead.name=Чистое железное навершие топора
|
||||||
|
item.cleanironshovelhead.name=Чистое железное навершие лопаты
|
||||||
|
item.cleanironhoehead.name=Чистое железное навершие мотыги
|
||||||
|
item.cleanironpickaxe.name=Чистая железная кирка
|
||||||
|
item.cleanironaxe.name=Чистый Железный Топор
|
||||||
|
item.cleanironshovel.name=Чистая Железная Лопата
|
||||||
|
item.cleanironhoe.name=Чистая Железная Мотыга
|
||||||
|
#item.cleanironsword.name=Чистый Железный Меч
|
||||||
|
|
||||||
|
item.steelpickaxehead.name=Стальное навершие кирки
|
||||||
|
item.steelaxehead.name=Стальное навершие топора
|
||||||
|
item.steelshovelhead.name=Стальное навершие лопаты
|
||||||
|
item.steelhoehead.name=Стальное навершие мотыги
|
||||||
|
item.steelpickaxe.name=Стальная Кирка
|
||||||
|
item.steelaxe.name=Стальной Топор
|
||||||
|
item.steelshovel.name=Стальная Лопата
|
||||||
|
item.steelhoe.name=Стальная Мотыга
|
||||||
|
#item.steelsword.name=Стальной Меч
|
||||||
|
|
||||||
|
item.wootzpickaxehead.name=Дамасское навершие кирки
|
||||||
|
item.wootzaxehead.name=Дамасское навершие топора
|
||||||
|
item.wootzshovelhead.name=Дамасское навершие лопаты
|
||||||
|
item.wootzhoehead.name=Дамасское навершие мотыги
|
||||||
|
item.wootzpickaxe.name=Дамасская Кирка
|
||||||
|
item.wootzaxe.name=Дамасский Топор
|
||||||
|
item.wootzshovel.name=Дамасская Лопата
|
||||||
|
item.wootzhoe.name=Дамасская Мотыга
|
||||||
|
|
||||||
|
|
||||||
|
item.copperpickaxehead.name=Медное навершие Кирки
|
||||||
|
item.copperaxehead.name=Медное навершие топора
|
||||||
|
item.coppershovelhead.name=Медное навершие лопаты
|
||||||
|
item.copperhoehead.name=Медное навершие мотыги
|
||||||
|
item.copperpickaxe.name=Медная Кирка
|
||||||
|
item.copperaxe.name=Медный Топор
|
||||||
|
item.coppershovel.name=Медная Лопата
|
||||||
|
item.copperhoe.name=Медная Мотыга
|
||||||
|
item.coppergladius.name=Медный Меч
|
||||||
|
|
||||||
|
item.leatherhelmet.name=Закаленный кожаный шлем
|
||||||
|
|
||||||
|
item.wootzsledgehammer.name=Дамасский Кузнечный Молот
|
||||||
|
item.steelsledgehammer.name=Стальной Кузнечный Молот
|
||||||
|
item.cleanironsledgehammer.name=Чистый Железный Кузнечный Молот
|
||||||
|
item.ironsledgehammer.name=Кованный Кузнечный Молот
|
||||||
|
item.bronzesledgehammer.name=Бронзовый Кузнечный Молот
|
||||||
|
item.coppersledgehammer.name=Медный Кузнечный Молот
|
||||||
|
|
||||||
|
item.wootzworkblade.name=Дамасский Рабочий Нож
|
||||||
|
|
||||||
|
# -- configuration -- #
|
||||||
|
forgecraft.config.title=ForgeCraft Config
|
||||||
|
|
||||||
|
forgecraft.compatibility=Совместимость
|
||||||
|
forgecraft.compatibility.tooltip=Особенности Совместимости
|
||||||
|
|
||||||
|
jei.category.forgecraft.crucible=Изготовление Тиглей
|
||||||
|
jei.category.forgecraft.anvil=Изготовление Наковален
|
||||||
|
jei.category.forgecraft.casting=Литье
|
||||||
|
jei.category.forgecraft.forging=Кузница
|
||||||
|
jei.category.forgecraft.workbench=Инструментальный Стол
|
||||||
|
|
||||||
|
jei.info.forgecraft.casting=Щелкните правой кнопкой мыши форму литья, удерживая горячий тигель из крафт-материала.
|
||||||
|
jei.info.forgecraft.sharpbench=Щелкните правой кнопкой мыши пустой рукой, чтобы запустить шлифовальный круг. Прикоснитесь к шлифовальному кругу, держа головку оружия или инструмента.
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
"modid": "forgecraft",
|
"modid": "forgecraft",
|
||||||
"name": "Kitsu's Forgecraft",
|
"name": "Kitsu's Forgecraft",
|
||||||
"description": "Forged with sweat and blood",
|
"description": "Forged with sweat and blood",
|
||||||
"version": "1.6.43",
|
"version": "1.6.44",
|
||||||
"mcversion": "1.12.2",
|
"mcversion": "1.12.2",
|
||||||
"url": "",
|
"url": "",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
|
|||||||
Reference in New Issue
Block a user