forked from MTSR/moreblocks
Craft Circle Stone Brick and Stone tile (#82)
* Craft Circle Stone Brick and Stone tile Craft Circle Stone Brick was similar furnace. Stone Tile is more similar with stone block. * Modify Circle Stone Brick * Modify craft Stone Tile
This commit is contained in:
parent
f6e0db21b2
commit
832b8f8817
@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
- The circular saw can no longer replace items from the player's inventory
|
- The circular saw can no longer replace items from the player's inventory
|
||||||
when it is full.
|
when it is full.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- New craft for:
|
||||||
|
- Stone Tile
|
||||||
|
- Circle Stone Bricks
|
||||||
|
|
||||||
## [1.1.0] - 2017-10-04
|
## [1.1.0] - 2017-10-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
15
crafting.lua
15
crafting.lua
@ -94,11 +94,11 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:circle_stone_bricks 8",
|
output = "moreblocks:circle_stone_bricks 5",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:stone", "default:stone", "default:stone"},
|
{"", "default:stone", ""},
|
||||||
{"default:stone", "", "default:stone"},
|
{"default:stone", "default:coal_lump", "default:stone"},
|
||||||
{"default:stone", "default:stone", "default:stone"},
|
{"", "default:stone", ""},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -156,10 +156,11 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:stone_tile 4",
|
output = "moreblocks:stone_tile 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:cobble", "default:cobble"},
|
{"default:cobble", "default:cobble", "default:cobble"},
|
||||||
{"default:cobble", "default:cobble"},
|
{"default:cobble", "default:stone", "default:cobble"},
|
||||||
|
{"default:cobble", "default:cobble", "default:cobble"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user