mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
ducrete love
This commit is contained in:
parent
8c076968b4
commit
9695763605
@ -63,6 +63,7 @@ public class ChemplantRecipes {
|
||||
recipes.add(new ChemRecipe("TEL", 0));
|
||||
recipes.add(new ChemRecipe("GASOLINE", 0));
|
||||
recipes.add(new ChemRecipe("FRACKSOL", 0));
|
||||
recipes.add(new ChemRecipe("DUCRETE", 0));
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1481,6 +1481,10 @@ public class MachineRecipes {
|
||||
list.add(new ItemStack(Items.wheat, 1));
|
||||
list.add(new ItemStack(Items.dye, 2, 3));
|
||||
break;
|
||||
case DUCRETE:
|
||||
list.add(new ItemStack(Blocks.sand, 8));
|
||||
list.add(new ItemStack(ModItems.ingot_u238, 10));
|
||||
list.add(new ItemStack(Items.clay_ball, 4));
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -1740,6 +1744,8 @@ public class MachineRecipes {
|
||||
case HEAVY_ELECTROLYSIS:
|
||||
input[0] = new FluidStack(8000, FluidType.HEAVYWATER);
|
||||
break;
|
||||
case DUCRETE:
|
||||
input[0] = new FluidStack(2000, FluidType.WATER);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -1901,6 +1907,11 @@ public class MachineRecipes {
|
||||
output[0] = new ItemStack(ModItems.chocolate, 2);
|
||||
output[1] = new ItemStack(ModItems.chocolate, 2);
|
||||
break;
|
||||
case DUCRETE:
|
||||
output[0] = new ItemStack(ModBlocks.ducrete_smooth, 4);
|
||||
output[1] = new ItemStack(ModBlocks.ducrete_smooth, 4);
|
||||
output[2] = new ItemStack(ModBlocks.ducrete_smooth, 4);
|
||||
output[3] = new ItemStack(ModBlocks.ducrete_smooth, 4);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
@ -108,7 +108,8 @@ public class ItemChemistryTemplate extends Item {
|
||||
ETHANOL,
|
||||
METH,
|
||||
CO2,
|
||||
HEAVY_ELECTROLYSIS;
|
||||
HEAVY_ELECTROLYSIS,
|
||||
DUCRETE;
|
||||
|
||||
public static EnumChemistryTemplate getEnum(int i) {
|
||||
if(i < EnumChemistryTemplate.values().length)
|
||||
@ -318,6 +319,8 @@ public class ItemChemistryTemplate extends Item {
|
||||
return 60;
|
||||
case HEAVY_ELECTROLYSIS:
|
||||
return 150;
|
||||
case DUCRETE:
|
||||
return 150;
|
||||
default:
|
||||
return 100;
|
||||
}
|
||||
|
||||
@ -346,6 +346,10 @@ public class CraftingManager {
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_concrete_mossy, 8), new Object[] { "CCC", "CVC", "CCC", 'C', ModBlocks.brick_concrete, 'V', Blocks.vine });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_concrete_cracked, 6), new Object[] { " C " , "C C", " C ", 'C', ModBlocks.brick_concrete });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_concrete_broken, 6), new Object[] { " C " , "C C", " C ", 'C', ModBlocks.brick_concrete_cracked });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.ducrete, 4), new Object[] { "DD", "DD", 'D', ModBlocks.ducrete_smooth });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_ducrete, 4), new Object[] {"CDC", "DLD", "CDC", 'D', ModBlocks.ducrete_smooth, 'C', Items.clay_ball, 'L', ModItems.plate_lead });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_ducrete, 4), new Object[] {"CDC", "DLD", "CDC", 'D', ModBlocks.ducrete, 'C', Items.clay_ball, 'L', ModItems.plate_lead });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.reinforced_ducrete, 4), new Object[] {"DSD", "SUS", "DSD", 'D', ModBlocks.brick_ducrete, 'S', ModItems.plate_steel, 'U', ModItems.ingot_u238 });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.brick_obsidian, 4), new Object[] { "FBF", "BFB", "FBF", 'F', Blocks.iron_bars, 'B', Blocks.obsidian });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.meteor_polished, 4), new Object[] { "CC", "CC", 'C', ModBlocks.block_meteor_broken });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.meteor_pillar, 2), new Object[] { "C", "C", 'C', ModBlocks.meteor_polished });
|
||||
|
||||
@ -191,6 +191,7 @@ chem.CORDITE=Cordite Production
|
||||
chem.CRYOGEL=Cryogel Mixing
|
||||
chem.DESH=Desh Production
|
||||
chem.DEUTERIUM=Deuterium Extraction
|
||||
chem.DUCRETE=Ducrete Production
|
||||
chem.DYN_DNT=Dineutronium Dynosynthesis
|
||||
chem.DYN_EUPH=Euphemium Dynosynthesis
|
||||
chem.DYN_SCHRAB=Schrabidium Dynosynthesis
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 267 B |
Loading…
x
Reference in New Issue
Block a user