Basalt, marble, andesite and granite craftable #2046

basalt from coal & obsidian small dust
marble from diorite dust an obsidian small dust
andesite dust from andesite
granite dust from granite (no longer makes quartz)
This commit is contained in:
Justin Vitale 2020-06-13 00:36:45 +10:00
parent 10dc7b114e
commit f66e7019f9
6 changed files with 84 additions and 27 deletions

View file

@ -2,16 +2,16 @@
"type": "minecraft:crafting_shapeless", "type": "minecraft:crafting_shapeless",
"ingredients": [ "ingredients": [
{ {
"item": "techreborn:basalt_small_dust" "item": "techreborn:coal_small_dust"
}, },
{ {
"item": "techreborn:basalt_small_dust" "item": "techreborn:obsidian_small_dust"
},`
{
"item": "techreborn:coal_small_dust"
}, },
{ {
"item": "techreborn:basalt_small_dust" "item": "techreborn:obsidian_small_dust"
},
{
"item": "techreborn:basalt_small_dust"
} }
], ],
"result": { "result": {

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "techreborn:basalt_small_dust"
},
{
"item": "techreborn:basalt_small_dust"
},
{
"item": "techreborn:basalt_small_dust"
},
{
"item": "techreborn:basalt_small_dust"
}
],
"result": {
"item": "techreborn:basalt_dust"
}
}

View file

@ -2,16 +2,16 @@
"type": "minecraft:crafting_shapeless", "type": "minecraft:crafting_shapeless",
"ingredients": [ "ingredients": [
{ {
"item": "techreborn:marble_small_dust" "item": "techreborn:obsidian_small_dust"
}, },
{ {
"item": "techreborn:marble_small_dust" "item": "techreborn:diorite_dust"
}, },
{ {
"item": "techreborn:marble_small_dust" "item": "techreborn:diorite_dust"
}, },
{ {
"item": "techreborn:marble_small_dust" "item": "techreborn:diorite_dust"
} }
], ],
"result": { "result": {

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "techreborn:marble_small_dust"
},
{
"item": "techreborn:marble_small_dust"
},
{
"item": "techreborn:marble_small_dust"
},
{
"item": "techreborn:marble_small_dust"
}
],
"result": {
"item": "techreborn:marble_dust"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 4,
"time": 270,
"ingredients": [
{
"item": "minecraft:andesite"
}
],
"results": [
{
"item": "techreborn:andesite_dust",
"count": 2
}
]
}

View file

@ -1,16 +1,17 @@
{ {
"type": "techreborn:grinder", "type": "techreborn:grinder",
"power": 2, "power": 4,
"time": 720, "time": 270,
"ingredients": [ "ingredients": [
{ {
"item": "minecraft:granite", "item": "minecraft:granite",
"count": 4 "count": 1
} }
], ],
"results": [ "results": [
{ {
"item": "techreborn:quartz_dust" "item": "techreborn:granite_dust",
"count": 2
} }
] ]
} }