Added Crafting
This commit is contained in:
parent
b5b8af6acf
commit
a7a1e10304
|
@ -25,7 +25,7 @@ parchment_mappings_version=2024.11.17
|
||||||
# Must match the String constant located in the main mod class annotated with @Mod.
|
# Must match the String constant located in the main mod class annotated with @Mod.
|
||||||
mod_id=debugstickusage
|
mod_id=debugstickusage
|
||||||
# The human-readable display name for the mod.
|
# The human-readable display name for the mod.
|
||||||
mod_name=DebugStickUsage
|
mod_name=Debug-Stick Usage
|
||||||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=Unlicense
|
mod_license=Unlicense
|
||||||
# The mod version. See https://semver.org/
|
# The mod version. See https://semver.org/
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "equipment",
|
||||||
|
"key": {
|
||||||
|
"#": {"item": "minecraft:stick"},
|
||||||
|
"X": {"item": "minecraft:breeze_rod"},
|
||||||
|
"A": {"item": "minecraft:blaze_rod"},
|
||||||
|
"B": {"item": "minecraft:nautilus_shell"},
|
||||||
|
"C": {"item": "minecraft:carrot_on_a_stick"}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"B A",
|
||||||
|
" # ",
|
||||||
|
"X C"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:debug_stick"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"pack": {
|
||||||
|
"description": "Debug Stick Usage Data",
|
||||||
|
"pack_format": 15,
|
||||||
|
"forge:server_data_pack_format": 12
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue