Recipe to get quartz dust from various sources/products of quartz (#2038). Thanks to Jessifir

* Add quartz to quartz dust recipe to grinder
* Add grinder recipe to produce quarts dust from diorite
* Add grinder recipe to produce quarts dust from granite
* Add grinder recipe to produce quarts dust from quartz blocks
This commit is contained in:
Jessi Aurora 2020-02-12 00:56:39 -08:00 committed by GitHub
parent eec531465b
commit 89aa42e62d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 1440,
"ingredients": [
{
"item": "minecraft:diorite",
"count": 8
}
],
"results": [
{
"item": "techreborn:quartz_dust"
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "techreborn:grinder",
"power": 4,
"time": 270,
"ingredients": [
{
"item": "minecraft:quartz"
}
],
"results": [
{
"item": "techreborn:quartz_dust"
}
]
}

View file

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

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 4,
"time": 1080,
"ingredients": [
{
"item": "minecraft:quartz_block"
}
],
"results": [
{
"item": "techreborn:quartz_dust",
"count": 4
}
]
}