Start work on dusts and add gunpowder recipe

This commit is contained in:
Sangelo 2023-06-02 10:15:06 +02:00
parent 495b179633
commit 6cc6ceb776
4 changed files with 45 additions and 1 deletions

View file

@ -1076,6 +1076,10 @@ hash = "866e16328bce9eef80e573c6e2969a51ad7b9392f83e64eb204168b2b1ab0b0f"
file = "resources/required-data/ExploreCraft-Tweaks/data/dropper_to_dispenser/recipes/dispenser_alternate.json"
hash = "2d366b42e07bf51e489ffe9e4347d6de0a4359cd815502e29441fe193b7d9e8e"
[[files]]
file = "resources/required-data/ExploreCraft-Tweaks/data/explorecraft_tweaks/recipes/gunpowder.json"
hash = "58e9e5151cee1e7edfe4c22fa7fbb0721659d015a280ac58dad5120fb977f301"
[[files]]
file = "resources/required-data/ExploreCraft-Tweaks/data/minecraft/recipes/acacia_wood.json"
hash = "5ed22832ffec3b9170419a278bcde6d3e1b1bd147e07b267033d2af4b92db155"
@ -1156,6 +1160,10 @@ hash = "bf9b6c9f0b0ecf674bbb671bd05805dff40bd0d9ed3735b17f89631d65a70ccb"
file = "resources/required-data/ExploreCraft-Tweaks/data/minecraft/recipes/warped_hyphae.json"
hash = "9678e4c4f4b00591ea8ce602ee747a99ada7926542487807206f82e21e47e44b"
[[files]]
file = "resources/required-data/ExploreCraft-Tweaks/data/mythicmetals/recipes/crafting/adamantite_dust.json"
hash = "6c13c8954915cc407d9a177459de639b3ce500c3c54ede5539ac033d0dfc8f1b"
[[files]]
file = "resources/required-data/ExploreCraft-Tweaks/data/mythicmetals/recipes/crafting/banglum_nuke_core.json"
hash = "2124cae9391a372600ab5ee7ab6e764c068c0683daf7f15879fc607599685f49"

View file

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "43b81f3d2f7d531fd73db4f34cda2f3e30bd07cfd8559c8270c4159b99ee3f92"
hash = "cba956feb4a015c792d689ccce13c0840e5a2c86a63d5e90110cddf652846109"
[versions]
minecraft = "1.19.2"

View file

@ -0,0 +1,22 @@
{
"type": "crafting_shapeless",
"result": {
"item": "minecraft:gunpowder",
"count": 8
},
"ingredients": [
{
"item": "minecraft:glowstone_powder"
},
{
"item": "minecraft:flint"
},
{
"item": "minecraft:coal"
},
{
"item": "mythicmetals:banglum_dust"
}
],
"group": "sandstone_dyeing"
}

View file

@ -0,0 +1,14 @@
{
"type": "create:crushing",
"ingredients": [
{
"item": "mythicmetals:adamantite_ingot"
}
],
"results": [
{
"item": "mythicmetals:adamantite_dust",
"count": 2
}
]
}