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:
Jat15 2018-02-17 21:08:08 +01:00 committed by sofar
parent f6e0db21b2
commit 832b8f8817
2 changed files with 14 additions and 7 deletions

View File

@ -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
when it is full.
### Changed
- New craft for:
- Stone Tile
- Circle Stone Bricks
## [1.1.0] - 2017-10-04
### Added

View File

@ -94,11 +94,11 @@ minetest.register_craft({
})
minetest.register_craft({
output = "moreblocks:circle_stone_bricks 8",
output = "moreblocks:circle_stone_bricks 5",
recipe = {
{"default:stone", "default:stone", "default:stone"},
{"default:stone", "", "default:stone"},
{"default:stone", "default:stone", "default:stone"},
{"", "default:stone", ""},
{"default:stone", "default:coal_lump", "default:stone"},
{"", "default:stone", ""},
}
})
@ -156,10 +156,11 @@ minetest.register_craft({
})
minetest.register_craft({
output = "moreblocks:stone_tile 4",
output = "moreblocks:stone_tile 9",
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"},
}
})