29 lines
1.1 KiB
Lua
29 lines
1.1 KiB
Lua
-----------------------------------------------------------------------------------------------
|
|
-- Dry Plants - Resin 0.0.2 (not in use)
|
|
-----------------------------------------------------------------------------------------------
|
|
-- by Mossmanikin
|
|
-- License (everything): WTFPL
|
|
-- Looked at code from: default, plants_lib, trees
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
-- Resin
|
|
-----------------------------------------------------------------------------------------------
|
|
--[[minetest.register_node("dryplants:resin", {
|
|
description = "Resin",
|
|
drawtype = "signlike",
|
|
tile_images = { "dryplants_resin.png" },
|
|
inventory_image = "dryplants_resin.png",
|
|
wield_image = "dryplants_resin.png",
|
|
sunlight_propagates = true,
|
|
paramtype = "light",
|
|
paramtype2 = "wallmounted",
|
|
walkable = false,
|
|
groups = { snappy = 3},]]
|
|
--sounds = default.node_sound_leaves_defaults(),
|
|
--[[selection_box = {
|
|
type = "wallmounted",
|
|
},
|
|
buildable_to = true,
|
|
})]]
|