Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Add the Electric Furnace
Browse files Browse the repository at this point in the history
The electric furnace can now be used to cook furnace recipes twice as
fast and using electricity. Both the Combustion Generator and the
Electric Furnace can be fully crafted in survival.
  • Loading branch information
MartinTheDragon committed Jul 21, 2021
1 parent bfdd27a commit a3d0cec
Show file tree
Hide file tree
Showing 86 changed files with 1,974 additions and 474 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ minecraft {
workingDirectory project.file('run')

// Recommended logging data for a userdev environment
// The markers can be changed as needed.
// The markers can be changed as needed. Pick any of these for incredible amounts of spam.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'
// property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'

// Recommended logging level for the console
// You can set various levels here.
Expand All @@ -68,15 +68,15 @@ minecraft {
workingDirectory project.file('run')

// Recommended logging data for a userdev environment
// The markers can be changed as needed.
// The markers can be changed as needed. Pick any of these for incredible amounts of spam.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'
// property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'

// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug'

mods {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

#versions
mod_version=0.0.6.0
mod_version=0.0.7.0
kotlin_version=1.5.20
jei_version=7.7.0.106
mekanism_version=1.16.5-10.0.21.448
41 changes: 38 additions & 3 deletions src/generated/resources/.cache/cache

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"variants": {
"facing=north,lit=false": {
"model": "nucleartech:block/electric_furnace"
},
"facing=south,lit=false": {
"model": "nucleartech:block/electric_furnace",
"y": 180
},
"facing=west,lit=false": {
"model": "nucleartech:block/electric_furnace",
"y": 270
},
"facing=east,lit=false": {
"model": "nucleartech:block/electric_furnace",
"y": 90
},
"facing=north,lit=true": {
"model": "nucleartech:block/electric_furnace_on"
},
"facing=south,lit=true": {
"model": "nucleartech:block/electric_furnace_on",
"y": 180
},
"facing=west,lit=true": {
"model": "nucleartech:block/electric_furnace_on",
"y": 270
},
"facing=east,lit=true": {
"model": "nucleartech:block/electric_furnace_on",
"y": 90
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"parent": "minecraft:block/orientable",
"parent": "minecraft:block/orientable_with_bottom",
"textures": {
"side": "nucleartech:block/combustion_generator_side",
"front": "nucleartech:block/combustion_generator_front",
"bottom": "nucleartech:block/combustion_generator_side",
"top": "nucleartech:block/combustion_generator_side"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"parent": "minecraft:block/orientable",
"parent": "minecraft:block/orientable_with_bottom",
"textures": {
"side": "nucleartech:block/combustion_generator_side",
"front": "nucleartech:block/combustion_generator_front_on",
"bottom": "nucleartech:block/combustion_generator_side",
"top": "nucleartech:block/combustion_generator_side"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"parent": "minecraft:block/orientable_with_bottom",
"textures": {
"side": "nucleartech:block/electric_furnace_side",
"front": "nucleartech:block/electric_furnace_front",
"bottom": "nucleartech:block/electric_furnace_side",
"top": "nucleartech:block/electric_furnace_side"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"parent": "minecraft:block/orientable_with_bottom",
"textures": {
"side": "nucleartech:block/electric_furnace_side",
"front": "nucleartech:block/electric_furnace_front_on",
"bottom": "nucleartech:block/electric_furnace_side",
"top": "nucleartech:block/electric_furnace_side"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "nucleartech:block/electric_furnace"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:iron_flat_stamp"
]
},
"criteria": {
"has_material_tag": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:ingots/iron"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:iron_flat_stamp"
}
}
},
"requirements": [
[
"has_material_tag",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:obsidian_flat_stamp"
]
},
"criteria": {
"has_material_tag": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:obsidian"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:obsidian_flat_stamp"
}
}
},
"requirements": [
[
"has_material_tag",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:schrabidium_flat_stamp"
]
},
"criteria": {
"has_schrabidium_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "nucleartech:schrabidium_ingot"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:schrabidium_flat_stamp"
}
}
},
"requirements": [
[
"has_schrabidium_ingot",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:steel_flat_stamp"
]
},
"criteria": {
"has_material_tag": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:ingots/steel"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:steel_flat_stamp"
}
}
},
"requirements": [
[
"has_material_tag",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:stone_flat_stamp"
]
},
"criteria": {
"has_material_tag": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:stone"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:stone_flat_stamp"
}
}
},
"requirements": [
[
"has_material_tag",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:titanium_flat_stamp"
]
},
"criteria": {
"has_material_tag": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:ingots/titanium"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:titanium_flat_stamp"
}
}
},
"requirements": [
[
"has_material_tag",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"nucleartech:blast_furnace"
]
},
"criteria": {
"has_tungsten_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:ingots/tungsten"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "nucleartech:blast_furnace"
}
}
},
"requirements": [
[
"has_tungsten_ingot",
"has_the_recipe"
]
]
}
Loading

0 comments on commit a3d0cec

Please sign in to comment.