Added Amethyst dust. Thanks to Xanthian.
* Create amethyst_dust_alt * Update amethyst_dust_alt * Update and rename amethyst_dust_alt to amethyst_dust_alt.json * implements grinding of amethyst blocks to dust 1 Block = 2 Dust implements production of amethyst shards from dust + tnt in implosion compressor. 8 Dust + 16 TNT = 16 Shards Conversion ratio = 1 Stack of Amethyst Block + 1 Stack of TNT = 1 Stack of Shard * Update amethyst_dust_alt.json noticed small mistake chrome dust > quartz dust
This commit is contained in:
parent
18b7d935df
commit
157ace896c
8 changed files with 81 additions and 1 deletions
|
@ -616,7 +616,7 @@ public class TRContent {
|
|||
}
|
||||
|
||||
public enum Dusts implements ItemConvertible {
|
||||
ALMANDINE, ALUMINUM, ANDESITE, ANDRADITE, ASHES, BASALT, BAUXITE, BRASS, BRONZE, CALCITE, CHARCOAL, CHROME,
|
||||
ALMANDINE, ALUMINUM, AMETHYST, ANDESITE, ANDRADITE, ASHES, BASALT, BAUXITE, BRASS, BRONZE, CALCITE, CHARCOAL, CHROME,
|
||||
CINNABAR, CLAY, COAL, DARK_ASHES, DIAMOND, DIORITE, ELECTRUM, EMERALD, ENDER_EYE, ENDER_PEARL, ENDSTONE,
|
||||
FLINT, GALENA, GRANITE, GROSSULAR, INVAR, LAZURITE, MAGNESIUM, MANGANESE, MARBLE, NETHERRACK,
|
||||
NICKEL, OBSIDIAN, OLIVINE, PERIDOT, PHOSPHOROUS, PLATINUM, PYRITE, PYROPE, QUARTZ, RED_GARNET, RUBY, SALTPETER,
|
||||
|
|
|
@ -377,6 +377,7 @@
|
|||
"_comment7": "Dusts",
|
||||
"item.techreborn.almandine_dust": "Almandine Dust",
|
||||
"item.techreborn.aluminum_dust": "Aluminium Dust",
|
||||
"item.techreborn.amethyst_dust": "Amethyst Dust",
|
||||
"item.techreborn.andesite_dust": "Andesite Dust",
|
||||
"item.techreborn.andradite_dust": "Andradite Dust",
|
||||
"item.techreborn.ashes_dust": "Ashes",
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "techreborn:item/dust/amethyst_dust"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 244 B |
6
src/main/resources/data/c/tags/items/amethyst_dusts.json
Normal file
6
src/main/resources/data/c/tags/items/amethyst_dusts.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"techreborn:amethyst_dust"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 4,
|
||||
"time": 270,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:amethyst_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:amethyst_dust",
|
||||
"count": 2
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"type": "techreborn:implosion_compressor",
|
||||
"power": 30,
|
||||
"time": 2000,
|
||||
"ingredients": [
|
||||
{
|
||||
"count": 8,
|
||||
"tag": "c:amethyst_dusts"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:tnt",
|
||||
"count": 16
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:amethyst_shard",
|
||||
"count": 16
|
||||
},
|
||||
{
|
||||
"item": "techreborn:quartz_dust",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
{
|
||||
"type": "techreborn:implosion_compressor",
|
||||
"power": 30,
|
||||
"time": 2000,
|
||||
"ingredients": [
|
||||
{
|
||||
"count": 8,
|
||||
"tag": "c:amethyst_dusts"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:end_crystal",
|
||||
"count": 4
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:amethyst_shard",
|
||||
"count": 16
|
||||
},
|
||||
{
|
||||
"item": "techreborn:quartz_dust",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue