mirror of
https://github.com/adrido/darkage.git
synced 2025-06-30 23:40:56 +02:00
Introduced Chalked Bricks
Chalked Bricks using the cobble texture of the old minetest_game that where removed in 0.4.7. Its a nice looking stonebrick alternative good to bring a bit more colors in stonebrick houses. Texture is made by c55 and licensed under CC BY-SA 3.0
This commit is contained in:
16
init.lua
16
init.lua
@ -80,6 +80,22 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "darkage:chalked_bricks_with_plaster 2",
|
||||
recipe = {
|
||||
{"darkage:chalked_bricks", "darkage:chalk_powder"},
|
||||
{"darkage:chalked_bricks", "darkage:chalk_powder"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "darkage:chalked_bricks_with_plaster 2",
|
||||
recipe = {
|
||||
{"darkage:chalk_powder", "darkage:chalked_bricks"},
|
||||
{"darkage:chalk_powder", "darkage:chalked_bricks"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "darkage:darkdirt 4",
|
||||
recipe = {
|
||||
|
Reference in New Issue
Block a user