mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
added infused iron block
This commit is contained in:
parent
42fb819889
commit
b59245aa3c
8 changed files with 51 additions and 1 deletions
|
@ -33,4 +33,5 @@ public final class ModBlocks {
|
||||||
public static final Block HOPPER_UPGRADE = new BlockHopperUpgrade();
|
public static final Block HOPPER_UPGRADE = new BlockHopperUpgrade();
|
||||||
public static final Block FIELD_CREATOR = new BlockFieldCreator();
|
public static final Block FIELD_CREATOR = new BlockFieldCreator();
|
||||||
public static final Block OAK_GENERATOR = new BlockOakGenerator();
|
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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,6 +59,9 @@ public final class ModRecipes {
|
||||||
new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_iron"),
|
new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_iron"),
|
||||||
new ItemStack(Items.IRON_INGOT), new ItemStack(ModItems.INFUSED_IRON),
|
new ItemStack(Items.IRON_INGOT), new ItemStack(ModItems.INFUSED_IRON),
|
||||||
null, 300, 80).register();
|
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 AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_stone"),
|
||||||
new ItemStack(Blocks.STONE), new ItemStack(ModBlocks.INFUSED_STONE),
|
new ItemStack(Blocks.STONE), new ItemStack(ModBlocks.INFUSED_STONE),
|
||||||
null, 150, 40).register();
|
null, 150, 40).register();
|
||||||
|
|
|
@ -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": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,6 +30,7 @@ tile.naturesaura.placer.name=Imperceptible Builder
|
||||||
tile.naturesaura.hopper_upgrade.name=Hopper Enhancement
|
tile.naturesaura.hopper_upgrade.name=Hopper Enhancement
|
||||||
tile.naturesaura.field_creator.name=Aura Field Creator
|
tile.naturesaura.field_creator.name=Aura Field Creator
|
||||||
tile.naturesaura.oak_generator.name=Canopy Diminisher
|
tile.naturesaura.oak_generator.name=Canopy Diminisher
|
||||||
|
tile.naturesaura.infused_iron_block.name=Infused Iron Block
|
||||||
|
|
||||||
item.naturesaura.eye.name=Environmental Eye
|
item.naturesaura.eye.name=Environmental Eye
|
||||||
item.naturesaura.gold_fiber.name=Brilliant Fiber
|
item.naturesaura.gold_fiber.name=Brilliant Fiber
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "naturesaura:altar",
|
"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"
|
"recipe": "naturesaura:infused_iron"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"type": "forge:ore_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"I"
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"I": {
|
||||||
|
"item": "naturesaura:infused_iron_block"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "naturesaura:infused_iron",
|
||||||
|
"count": 9
|
||||||
|
}
|
||||||
|
}
|
|
@ -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 |
Loading…
Reference in a new issue