Port cheaper rails
This commit is contained in:
parent
87e658924f
commit
00bc7a4ed6
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- The item spread is also off
|
||||
- Added [Language Reload](https://modrinth.com/mod/language-reload)
|
||||
- Added [Trimmable Tools](https://modrinth.com/datapack/trimmable-tools)
|
||||
- Ported cheaper rails recipes from 1.20 modpack
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:stick"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone_torch"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
},
|
||||
"*": {
|
||||
"item": "minecraft:glowstone_dust"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"X*X",
|
||||
"X#X",
|
||||
"XRX"
|
||||
],
|
||||
"result": {
|
||||
"count": 4,
|
||||
"id": "minecraft:activator_rail"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:stick"
|
||||
},
|
||||
"P": {
|
||||
"item": "minecraft:stone_pressure_plate"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
},
|
||||
"*": {
|
||||
"item": "minecraft:quartz"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"X*X",
|
||||
"X#X",
|
||||
"XPX"
|
||||
],
|
||||
"result": {
|
||||
"count": 4,
|
||||
"id": "minecraft:detector_rail"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:stick"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:gold_nugget"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"X X",
|
||||
"X#X",
|
||||
"XRX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
"id": "minecraft:powered_rail"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "minecraft:stick"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"X X",
|
||||
"X#X",
|
||||
"X X"
|
||||
],
|
||||
"result": {
|
||||
"count": 16,
|
||||
"id": "minecraft:rail"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
Loading…
Reference in a new issue