added infused iron block

This commit is contained in:
Ellpeck 2018-11-17 23:08:46 +01:00
parent 42fb819889
commit b59245aa3c
8 changed files with 51 additions and 1 deletions

View file

@ -33,4 +33,5 @@ public final class ModBlocks {
public static final Block HOPPER_UPGRADE = new BlockHopperUpgrade();
public static final Block FIELD_CREATOR = new BlockFieldCreator();
public static final Block OAK_GENERATOR = new BlockOakGenerator();
public static final Block INFUSED_IRON = new BlockImpl("infused_iron_block", Material.IRON).setSoundType(SoundType.METAL).setHardness(3F);
}

View file

@ -59,6 +59,9 @@ public final class ModRecipes {
new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_iron"),
new ItemStack(Items.IRON_INGOT), new ItemStack(ModItems.INFUSED_IRON),
null, 300, 80).register();
new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_iron_block"),
new ItemStack(Blocks.IRON_BLOCK), new ItemStack(ModBlocks.INFUSED_IRON),
null, 2700, 700).register();
new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_stone"),
new ItemStack(Blocks.STONE), new ItemStack(ModBlocks.INFUSED_STONE),
null, 150, 40).register();

View file

@ -0,0 +1,14 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "naturesaura:blocks/infused_iron_block"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -30,6 +30,7 @@ tile.naturesaura.placer.name=Imperceptible Builder
tile.naturesaura.hopper_upgrade.name=Hopper Enhancement
tile.naturesaura.field_creator.name=Aura Field Creator
tile.naturesaura.oak_generator.name=Canopy Diminisher
tile.naturesaura.infused_iron_block.name=Infused Iron Block
item.naturesaura.eye.name=Environmental Eye
item.naturesaura.gold_fiber.name=Brilliant Fiber

View file

@ -11,7 +11,7 @@
},
{
"type": "naturesaura:altar",
"text": "Creating $(item)Infused Iron$(), a material blessed with the powers of $(aura), allowing it to be used in several magical $(thing)natural items$().",
"text": "Creating $(item)Infused Iron$(), a material blessed with the powers of $(aura), allowing it to be used in several magical $(thing)natural items$().$(br)Note that the same infusion is possible using the materials' block form.",
"recipe": "naturesaura:infused_iron"
},
{

View file

@ -0,0 +1,15 @@
{
"type": "forge:ore_shaped",
"pattern": [
"I"
],
"key": {
"I": {
"item": "naturesaura:infused_iron_block"
}
},
"result": {
"item": "naturesaura:infused_iron",
"count": 9
}
}

View file

@ -0,0 +1,16 @@
{
"type": "forge:ore_shaped",
"pattern": [
"III",
"III",
"III"
],
"key": {
"I": {
"item": "naturesaura:infused_iron"
}
},
"result": {
"item": "naturesaura:infused_iron_block"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 788 B