diff --git a/src/main/java/techreborn/api/recipe/recipes/BlastFurnaceRecipe.java b/src/main/java/techreborn/api/recipe/recipes/BlastFurnaceRecipe.java index ebf993b4f..4bb63ee12 100644 --- a/src/main/java/techreborn/api/recipe/recipes/BlastFurnaceRecipe.java +++ b/src/main/java/techreborn/api/recipe/recipes/BlastFurnaceRecipe.java @@ -1,3 +1,27 @@ +/* + * This file is part of TechReborn, licensed under the MIT License (MIT). + * + * Copyright (c) 2018 TechReborn + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package techreborn.api.recipe.recipes; import com.google.gson.JsonObject; @@ -12,7 +36,7 @@ public class BlastFurnaceRecipe extends Recipe { int heat; - public BlastFurnaceRecipe(RecipeType type, ResourceLocation name) { + public BlastFurnaceRecipe(RecipeType type, ResourceLocation name) { super(type, name); } diff --git a/src/main/java/techreborn/api/recipe/recipes/IndustrialGrinderRecipe.java b/src/main/java/techreborn/api/recipe/recipes/IndustrialGrinderRecipe.java index ff1348573..e64253794 100644 --- a/src/main/java/techreborn/api/recipe/recipes/IndustrialGrinderRecipe.java +++ b/src/main/java/techreborn/api/recipe/recipes/IndustrialGrinderRecipe.java @@ -1,3 +1,27 @@ +/* + * This file is part of TechReborn, licensed under the MIT License (MIT). + * + * Copyright (c) 2018 TechReborn + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package techreborn.api.recipe.recipes; import net.minecraft.tileentity.TileEntity; @@ -12,7 +36,7 @@ public class IndustrialGrinderRecipe extends Recipe { //TODO 1.14 fluids FluidStack fluidStack = null; - public IndustrialGrinderRecipe(RecipeType type, ResourceLocation name) { + public IndustrialGrinderRecipe(RecipeType type, ResourceLocation name) { super(type, name); } diff --git a/src/main/java/techreborn/api/recipe/recipes/IndustrialSawmillRecipe.java b/src/main/java/techreborn/api/recipe/recipes/IndustrialSawmillRecipe.java index 68d096f61..d9167d333 100644 --- a/src/main/java/techreborn/api/recipe/recipes/IndustrialSawmillRecipe.java +++ b/src/main/java/techreborn/api/recipe/recipes/IndustrialSawmillRecipe.java @@ -1,3 +1,27 @@ +/* + * This file is part of TechReborn, licensed under the MIT License (MIT). + * + * Copyright (c) 2018 TechReborn + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package techreborn.api.recipe.recipes; import net.minecraft.tileentity.TileEntity; @@ -12,7 +36,7 @@ public class IndustrialSawmillRecipe extends Recipe { //TODO 1.14 fluids FluidStack fluidStack = null; - public IndustrialSawmillRecipe(RecipeType type, ResourceLocation name) { + public IndustrialSawmillRecipe(RecipeType type, ResourceLocation name) { super(type, name); } diff --git a/src/main/resources/assets/techreborn/blockstates/diesel_generator.json b/src/main/resources/assets/techreborn/blockstates/diesel_generator.json new file mode 100644 index 000000000..481187ea0 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/diesel_generator.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/generators/diesel_generator" }, + "facing=south,active=false": { "model": "techreborn:block/machines/generators/diesel_generator", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/generators/diesel_generator", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/generators/diesel_generator", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/generators/diesel_generator_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/generators/diesel_generator_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/generators/diesel_generator_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/generators/diesel_generator_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/dragon_egg_syphon.json b/src/main/resources/assets/techreborn/blockstates/dragon_egg_syphon.json new file mode 100644 index 000000000..51788a383 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/dragon_egg_syphon.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/generators/dragon_egg_syphon" }, + "facing=south,active=false": { "model": "techreborn:block/machines/generators/dragon_egg_syphon", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/generators/dragon_egg_syphon", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/generators/dragon_egg_syphon", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/generators/dragon_egg_syphon_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/generators/dragon_egg_syphon_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/generators/dragon_egg_syphon_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/generators/dragon_egg_syphon_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/gas_turbine.json b/src/main/resources/assets/techreborn/blockstates/gas_turbine.json new file mode 100644 index 000000000..1d0449b7f --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/gas_turbine.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/generators/gas_turbine" }, + "facing=south,active=false": { "model": "techreborn:block/machines/generators/gas_turbine", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/generators/gas_turbine", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/generators/gas_turbine", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/generators/gas_turbine_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/generators/gas_turbine_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/generators/gas_turbine_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/generators/gas_turbine_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/lightning_rod.json b/src/main/resources/assets/techreborn/blockstates/lightning_rod.json new file mode 100644 index 000000000..4abb0a99c --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/lightning_rod.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "techreborn:block/machines/generators/lightning_rod" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/generators/diesel_generator.json b/src/main/resources/assets/techreborn/blockstates/machines/generators/diesel_generator.json deleted file mode 100644 index 450b985a1..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/generators/diesel_generator.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "particle": "techreborn:blocks/machines/generators/diesel_generator_side_off", - "down": "techreborn:blocks/machines/generators/generator_bottom" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "side": "techreborn:blocks/machines/generators/diesel_generator_side_off", - "top": "techreborn:blocks/machines/generators/diesel_generator_top_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "side": "techreborn:blocks/machines/generators/diesel_generator_side_on", - "top": "techreborn:blocks/machines/generators/diesel_generator_top_on" - } - }, - "false": { - "textures": { - "side": "techreborn:blocks/machines/generators/diesel_generator_side_off", - "top": "techreborn:blocks/machines/generators/diesel_generator_top_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/generators/dragon_egg_syphon.json b/src/main/resources/assets/techreborn/blockstates/machines/generators/dragon_egg_syphon.json deleted file mode 100644 index 24511d8bb..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/generators/dragon_egg_syphon.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "particle": "techreborn:blocks/machines/generators/dragon_egg_syphon_side_off", - "top": "techreborn:blocks/machines/generators/dragon_egg_syphon_top", - "down": "techreborn:blocks/machines/generators/generator_bottom" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "side": "techreborn:blocks/machines/generators/dragon_egg_syphon_side_off" - } - }, - "facing": { - "north": { - - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "side": "techreborn:blocks/machines/generators/dragon_egg_syphon_side_on" - } - }, - "false": { - "textures": { - "side": "techreborn:blocks/machines/generators/dragon_egg_syphon_side_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/generators/gas_turbine.json b/src/main/resources/assets/techreborn/blockstates/machines/generators/gas_turbine.json deleted file mode 100644 index ad492126f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/generators/gas_turbine.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "particle": "techreborn:blocks/machines/generators/gas_turbine_top_off", - "down": "techreborn:blocks/machines/generators/generator_bottom", - "side": "techreborn:blocks/machines/generators/generator_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "textures": { - "top": "techreborn:blocks/machines/generators/gas_turbine_top_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "top": "techreborn:blocks/machines/generators/gas_turbine_top_on" - } - }, - "false": { - "textures": { - "top": "techreborn:blocks/machines/generators/gas_turbine_top_off" - } - } - }, - "inventory": { - "model": "cube_bottom_top", - "textures": { - "top": "techreborn:blocks/machines/generators/gas_turbine_top_off" - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/generators/lightning_rod.json b/src/main/resources/assets/techreborn/blockstates/machines/generators/lightning_rod.json deleted file mode 100644 index acd04c60f..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/generators/lightning_rod.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/generators/lightning_rod_side", - "top": "techreborn:blocks/machines/generators/lightning_rod_top", - "side": "techreborn:blocks/machines/generators/lightning_rod_side", - "front": "techreborn:blocks/machines/generators/lightning_rod_side", - "down": "techreborn:blocks/machines/generators/generator_bottom" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - - } - }, - "facing": { - "north": { - - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - - } - }, - "false": { - "textures": { - - } - } - } - } -} - diff --git a/src/main/resources/assets/techreborn/blockstates/magic_energy_absorber.json b/src/main/resources/assets/techreborn/blockstates/magic_energy_absorber.json new file mode 100644 index 000000000..463982b42 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/magic_energy_absorber.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/generators/magic_energy_absorber" }, + "facing=south,active=false": { "model": "techreborn:block/machines/generators/magic_energy_absorber", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/generators/magic_energy_absorber", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/generators/magic_energy_absorber", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/generators/magic_energy_absorber_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/generators/magic_energy_absorber_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/generators/magic_energy_absorber_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/generators/magic_energy_absorber_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator.json b/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator.json new file mode 100644 index 000000000..ab958a880 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/diesel_generator_top_off", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/diesel_generator_side_off" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator_on.json b/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator_on.json new file mode 100644 index 000000000..64412ca8f --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/diesel_generator_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/diesel_generator_top_on", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/diesel_generator_side_on" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon.json b/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon.json new file mode 100644 index 000000000..225c5b4bb --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/dragon_egg_syphon_top", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/dragon_egg_syphon_side_off" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon_on.json b/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon_on.json new file mode 100644 index 000000000..d7c32abe6 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/dragon_egg_syphon_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/dragon_egg_syphon_top", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/dragon_egg_syphon_side_on" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine.json b/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine.json new file mode 100644 index 000000000..1f0abc0e1 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/gas_turbine_top_off", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/generator_side_off" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine_on.json b/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine_on.json new file mode 100644 index 000000000..642f9e76e --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/gas_turbine_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/gas_turbine_top_on", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/generator_side_on" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/lightning_rod.json b/src/main/resources/assets/techreborn/models/block/machines/generators/lightning_rod.json new file mode 100644 index 000000000..6fbe8d7c4 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/lightning_rod.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/lightning_rod_top", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/lightning_rod_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber.json b/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber.json new file mode 100644 index 000000000..d4d5c7966 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/magic_energy_absorber_top_off", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/magic_energy_absorber_side_off" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber_on.json b/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber_on.json new file mode 100644 index 000000000..97cbd1bd1 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/generators/magic_energy_absorber_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/generators/magic_energy_absorber_top_on", + "bottom": "techreborn:block/machines/generators/generator_bottom", + "side": "techreborn:block/machines/generators/magic_energy_absorber_side_on" + } +} diff --git a/src/main/resources/assets/techreborn/models/item/diesel_generator.json b/src/main/resources/assets/techreborn/models/item/diesel_generator.json new file mode 100644 index 000000000..a990afaf3 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/diesel_generator.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/generators/diesel_generator" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/dragon_egg_syphon.json b/src/main/resources/assets/techreborn/models/item/dragon_egg_syphon.json new file mode 100644 index 000000000..1e32e74ca --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/dragon_egg_syphon.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/generators/dragon_egg_syphon" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/gas_turbine.json b/src/main/resources/assets/techreborn/models/item/gas_turbine.json new file mode 100644 index 000000000..ce237bcb0 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/gas_turbine.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/generators/gas_turbine" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lightning_rod.json b/src/main/resources/assets/techreborn/models/item/lightning_rod.json new file mode 100644 index 000000000..5f9f72033 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/lightning_rod.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/generators/lightning_rod" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/magic_energy_absorber.json b/src/main/resources/assets/techreborn/models/item/magic_energy_absorber.json new file mode 100644 index 000000000..2baf73f44 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/magic_energy_absorber.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/generators/magic_energy_absorber" +} \ No newline at end of file