Port cheaper rails

This commit is contained in:
Sergeant Acoustic 2026-04-06 00:49:37 +01:00
parent 87e658924f
commit 00bc7a4ed6
5 changed files with 104 additions and 0 deletions

View file

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The item spread is also off - The item spread is also off
- Added [Language Reload](https://modrinth.com/mod/language-reload) - Added [Language Reload](https://modrinth.com/mod/language-reload)
- Added [Trimmable Tools](https://modrinth.com/datapack/trimmable-tools) - Added [Trimmable Tools](https://modrinth.com/datapack/trimmable-tools)
- Ported cheaper rails recipes from 1.20 modpack
### Fixed ### Fixed

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}