mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-07-13 14:00:29 +02:00
move dependencies into one source file for mapitems, stub in some translations
This commit is contained in:
@ -7,7 +7,7 @@ minetest.register_node("df_mapitems:glow_mese", {
|
||||
_doc_items_usagehelp = df_mapitems.doc.glow_mese_usage,
|
||||
tiles = {"dfcaverns_glow_mese.png"},
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
sounds = df_mapitems.sounds.glass,
|
||||
is_ground_content = false,
|
||||
light_source = 13,
|
||||
paramtype = "light",
|
||||
@ -35,14 +35,14 @@ minetest.register_node("df_mapitems:mese_crystal", {
|
||||
mesh = "underch_crystal.obj",
|
||||
light_source = 12,
|
||||
is_ground_content = false,
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
sounds = df_mapitems.sounds.glass,
|
||||
use_texture_alpha = true,
|
||||
sunlight_propagates = true,
|
||||
on_place = df_mapitems.place_against_surface,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese_crystal 9',
|
||||
output = df_mapitems.node_name.mese_crystal .. ' 9',
|
||||
recipe = {
|
||||
{'df_mapitems:mese_crystal'},
|
||||
}
|
||||
|
Reference in New Issue
Block a user