Added calcite related recipes. Thanks to Ayutac.
* Added calcite related recipes. Successfully tested. * Rebalanced the centrifuge color output for coral blocks The initial value came from thinking "this should be more than an extractor yield" which would be 60, but that way of thinking is wrong because we get methane from the block after all * Of course, I forgot that calcite grinds to calcite dust...
This commit is contained in:
parent
a2ea684c57
commit
347117b95a
42 changed files with 648 additions and 0 deletions
7
src/main/resources/data/c/tags/items/coral_blocks.json
Normal file
7
src/main/resources/data/c/tags/items/coral_blocks.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#c:living_coral_blocks",
|
||||
"#c:dead_coral_blocks"
|
||||
]
|
||||
}
|
7
src/main/resources/data/c/tags/items/coral_fans.json
Normal file
7
src/main/resources/data/c/tags/items/coral_fans.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#c:living_coral_fans",
|
||||
"#c:dead_coral_fans"
|
||||
]
|
||||
}
|
7
src/main/resources/data/c/tags/items/coral_plants.json
Normal file
7
src/main/resources/data/c/tags/items/coral_plants.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#c:living_coral_plants",
|
||||
"#c:dead_coral_plants"
|
||||
]
|
||||
}
|
10
src/main/resources/data/c/tags/items/dead_coral_blocks.json
Normal file
10
src/main/resources/data/c/tags/items/dead_coral_blocks.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:dead_tube_coral_block",
|
||||
"minecraft:dead_brain_coral_block",
|
||||
"minecraft:dead_bubble_coral_block",
|
||||
"minecraft:dead_fire_coral_block",
|
||||
"minecraft:dead_horn_coral_block"
|
||||
]
|
||||
}
|
10
src/main/resources/data/c/tags/items/dead_coral_fans.json
Normal file
10
src/main/resources/data/c/tags/items/dead_coral_fans.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:dead_tube_coral_fan",
|
||||
"minecraft:dead_brain_coral_fan",
|
||||
"minecraft:dead_bubble_coral_fan",
|
||||
"minecraft:dead_fire_coral_fan",
|
||||
"minecraft:dead_horn_coral_fan"
|
||||
]
|
||||
}
|
10
src/main/resources/data/c/tags/items/dead_coral_plants.json
Normal file
10
src/main/resources/data/c/tags/items/dead_coral_plants.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:dead_tube_coral",
|
||||
"minecraft:dead_brain_coral",
|
||||
"minecraft:dead_bubble_coral",
|
||||
"minecraft:dead_fire_coral",
|
||||
"minecraft:dead_horn_coral"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:tube_coral_block",
|
||||
"minecraft:brain_coral_block",
|
||||
"minecraft:bubble_coral_block",
|
||||
"minecraft:fire_coral_block",
|
||||
"minecraft:horn_coral_block"
|
||||
]
|
||||
}
|
10
src/main/resources/data/c/tags/items/living_coral_fans.json
Normal file
10
src/main/resources/data/c/tags/items/living_coral_fans.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:tube_coral_fan",
|
||||
"minecraft:brain_coral_fan",
|
||||
"minecraft:bubble_coral_fan",
|
||||
"minecraft:fire_coral_fan",
|
||||
"minecraft:horn_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:tube_coral",
|
||||
"minecraft:brain_coral",
|
||||
"minecraft:bubble_coral",
|
||||
"minecraft:fire_coral",
|
||||
"minecraft:horn_coral"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:tube_coral",
|
||||
"minecraft:tube_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#c:dead_coral_plants",
|
||||
"#c:dead_coral_fans"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:brain_coral",
|
||||
"minecraft:brain_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:bubble_coral",
|
||||
"minecraft:bubble_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:fire_coral",
|
||||
"minecraft:fire_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:horn_coral",
|
||||
"minecraft:horn_coral_fan"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "techreborn:centrifuge",
|
||||
"power": 5,
|
||||
"time": 5000,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:brain_coral_block",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": "null"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": {
|
||||
"fluid": "techreborn:methane"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_brain_coral",
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_brain_coral_fan",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "minecraft:pink_dye",
|
||||
"count": 16
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "techreborn:centrifuge",
|
||||
"power": 5,
|
||||
"time": 5000,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:bubble_coral_block",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": "null"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": {
|
||||
"fluid": "techreborn:methane"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_bubble_coral",
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_bubble_coral_fan",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "minecraft:purple_dye",
|
||||
"count": 16
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "techreborn:centrifuge",
|
||||
"power": 5,
|
||||
"time": 5000,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:fire_coral_block",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": "null"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": {
|
||||
"fluid": "techreborn:methane"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_fire_coral",
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_fire_coral_fan",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "minecraft:red_dye",
|
||||
"count": 16
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "techreborn:centrifuge",
|
||||
"power": 5,
|
||||
"time": 5000,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:horn_coral_block",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": "null"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": {
|
||||
"fluid": "techreborn:methane"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_horn_coral",
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_horn_coral_fan",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "minecraft:yellow_dye",
|
||||
"count": 16
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "techreborn:centrifuge",
|
||||
"power": 5,
|
||||
"time": 5000,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:tube_coral_block",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": "null"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:cell",
|
||||
"nbt": {
|
||||
"fluid": "techreborn:methane"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_tube_coral",
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dead_tube_coral_fan",
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"item": "minecraft:blue_dye",
|
||||
"count": 16
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "techreborn:chemical_reactor",
|
||||
"power": 30,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:calcite_dusts",
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"item": "minecraft:slime_ball"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:bone"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "techreborn:chemical_reactor",
|
||||
"power": 30,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:calcite_small_dusts",
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"item": "minecraft:slime_ball"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:pointed_dripstone"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:tube_coral_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:blue_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_blue"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:blue_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:dead_coral_blocks"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:gray_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_dead"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:gray_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:brain_coral_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:pink_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_pink"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:pink_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:bubble_coral_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:purple_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_purple"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:purple_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:fire_coral_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:red_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_red"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:red_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 400,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:horn_coral_block"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:yellow_dye",
|
||||
"count": 5
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"tag": "c:small_corals_yellow"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:yellow_dye",
|
||||
"count": 1
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 400,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:calcite"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 400,
|
||||
"ingredients" : [
|
||||
{
|
||||
"tag": "c:coral_blocks"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 400,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:dripstone_block"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 100,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:bone_meal"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_small_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 100,
|
||||
"ingredients" : [
|
||||
{
|
||||
"tag": "c:coral_fans"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_small_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 100,
|
||||
"ingredients" : [
|
||||
{
|
||||
"tag": "c:coral_plants"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_small_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 100,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:nautilus_shell"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_small_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 2,
|
||||
"time": 100,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:pointed_dripstone"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:calcite_small_dust"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue