mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-07-18 04:06:45 -04:00
Merge 1c69bdde58
into a4823a4261
This commit is contained in:
commit
3b13b8a23d
9 changed files with 118 additions and 0 deletions
|
@ -304,6 +304,21 @@ minetest.register_craft({
|
|||
recipe = {"default:steel_ingot", "default:copper_ingot"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "dye:glowing_dye",
|
||||
recipe = {"default:mese_crystal_fragment", "moonflower:moonflower_closed"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:glowing_mese',
|
||||
recipe = {
|
||||
{'', 'dye:glowing_dye', ''},
|
||||
{'dye:glowing_dye', 'default:mese', 'dye:glowing_dye'},
|
||||
{'', 'dye:glowing_dye', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:coalblock',
|
||||
recipe = {
|
||||
|
|
|
@ -29,6 +29,14 @@ minetest.register_node("default:stone_with_coal", {
|
|||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:glowing_mese", {
|
||||
description = "Glowing Mese",
|
||||
tiles = {"default_glowing_mese.png"},
|
||||
groups = {cracky=1,level=2},
|
||||
light_source = 14,
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:stone_with_iron", {
|
||||
description = "Iron Ore",
|
||||
tiles = {"default_stone.png^default_mineral_iron.png"},
|
||||
|
|
BIN
mods/default/textures/default_glowing_mese.png
Normal file
BIN
mods/default/textures/default_glowing_mese.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 473 B |
Loading…
Add table
Add a link
Reference in a new issue