diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-26 02:26:19 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:13:52 +0200 |
commit | 908db7c1d241388eca0a59d9a67f41c1b21205fd (patch) | |
tree | d089858f21676f7b9dae76a7580af7c12016869e /data/builtin.lua | |
parent | 77337271fc7ab3b767c6832424dc7d82cebd33f4 (diff) | |
download | minetest-908db7c1d241388eca0a59d9a67f41c1b21205fd.tar.gz minetest-908db7c1d241388eca0a59d9a67f41c1b21205fd.tar.bz2 minetest-908db7c1d241388eca0a59d9a67f41c1b21205fd.zip |
Make node definitions available to Lua
Diffstat (limited to 'data/builtin.lua')
-rw-r--r-- | data/builtin.lua | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/data/builtin.lua b/data/builtin.lua index 4a7678a21..7a92bbd27 100644 --- a/data/builtin.lua +++ b/data/builtin.lua @@ -73,9 +73,56 @@ function dump(o, dumped) end -- --- Built-in node types. Also defined in C. +-- Built-in node definitions. Also defined in C. -- +minetest.register_nodedef_defaults({ + -- name intentionally not defined here + drawtype = "normal", + visual_scale = 1.0, + tile_images = {"unknown_block.png"}, + inventory_image = "unknown_block.png", + special_materials = { + {image="", backface_culling=true}, + {image="", backface_culling=true}, + }, + alpha = 255, + post_effect_color = {a=0, r=0, g=0, b=0}, + paramtype = "none", + is_ground_content = false, + light_propagates = false, + sunlight_propagates = false, + walkable = true, + pointable = true, + diggable = true, + climbable = false, + buildable_to = false, + wall_mounted = false, + often_contains_mineral = false, + dug_item = "", + extra_dug_item = "", + extra_dug_item_rarity = 2, + metadata_name = "", + liquid_type = "none", + liquid_alternative_flowing = "", + liquid_alternative_source = "", + liquid_viscosity = 0, + light_source = 0, + damage_per_second = 0, + selection_box = {type="regular"}, + material = { + diggablity = "normal", + weight = 0, + crackiness = 0, + crumbliness = 0, + cuttability = 0, + flammability = 0, + }, + cookresult_item = "", -- Cannot be cooked + furnace_cooktime = 3.0, + furnace_burntime = -1, -- Cannot be used as fuel +}) + minetest.register_node("air", { drawtype = "airlike", paramtype = "light", |