Add unknown block maker

This commit is contained in:
cora 2022-03-12 04:49:38 +01:00
parent 972a6a6101
commit 578fe31687
1 changed files with 11 additions and 0 deletions

11
unknower/init.lua Normal file
View File

@ -0,0 +1,11 @@
math.randomseed(os.clock())
minetest.register_node("unknower:unknown"..tostring(math.random(65000)), {
description = "Unknownmaker",
_doc_items_longdesc = "When placed node will become unknown on next server restart.",
tiles = {"mcl_core_diorite_smooth.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
_mcl_blast_resistance = 6,
_mcl_hardness = 1.5,
})