Add compressed desert cobblestone (#156)
Desert cobblestone can be obtained in large quantities from deserts, so makes sense to add a compressed node.
This commit is contained in:
parent
8e6f339313
commit
f8314c322e
@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
- Legacy Stairs+ conversion code.
|
||||
- It was only required to import worlds last edited before Q3 2013.
|
||||
|
||||
### Added
|
||||
|
||||
- Compressed desert cobblestone.
|
||||
|
||||
## [2.0.0] - 2019-11-25
|
||||
|
||||
### Added
|
||||
|
16
crafting.lua
16
crafting.lua
@ -512,6 +512,22 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:desert_cobble_compressed",
|
||||
recipe = {
|
||||
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
||||
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
||||
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:desert_cobble 9",
|
||||
recipe = {
|
||||
{"moreblocks:desert_cobble_compressed"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking", output = "moreblocks:tar", recipe = "default:pine_tree",
|
||||
})
|
||||
|
@ -132,6 +132,10 @@ msgstr "Kohlesteinziegel"
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr "Gepresster Kopfsteinpflaster"
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr "Gepresste Erde"
|
||||
|
@ -128,6 +128,10 @@ msgstr ""
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr ""
|
||||
|
@ -133,6 +133,10 @@ msgstr "Briques en pierre de charbon"
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr "Pierre taillée compressée"
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr "Terre compressée"
|
||||
|
@ -132,6 +132,10 @@ msgstr "Mattoni di pietra in carbone"
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr ""
|
||||
|
@ -132,6 +132,10 @@ msgstr "Węglowe kamienne cegły"
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr "Skompresowany bruk"
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr "Skompresowana ziemia"
|
||||
|
@ -133,6 +133,10 @@ msgstr "угольно-каменный кирпич"
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr "прессованный булыжник"
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr "прессованная земля"
|
||||
|
@ -127,6 +127,10 @@ msgstr ""
|
||||
msgid "Compressed Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Desert Cobblestone"
|
||||
msgstr ""
|
||||
|
||||
#: nodes.lua
|
||||
msgid "Compressed Dirt"
|
||||
msgstr ""
|
||||
|
@ -175,6 +175,12 @@ local nodes = {
|
||||
is_ground_content = false,
|
||||
sounds = sound_stone,
|
||||
},
|
||||
["desert_cobble_compressed"] = {
|
||||
description = S("Compressed Desert Cobblestone"),
|
||||
groups = {cracky = 1},
|
||||
is_ground_content = false,
|
||||
sounds = sound_stone,
|
||||
},
|
||||
["plankstone"] = {
|
||||
description = S("Plankstone"),
|
||||
paramtype2 = "facedir",
|
||||
|
BIN
textures/moreblocks_desert_cobble_compressed.png
Normal file
BIN
textures/moreblocks_desert_cobble_compressed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in New Issue
Block a user