move dependencies into one source file for mapitems, stub in some translations

This commit is contained in:
FaceDeer
2020-11-15 17:54:56 -07:00
parent e18174b971
commit 9452f69509
13 changed files with 425 additions and 251 deletions

View File

@ -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'},
}