123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593 |
- -- Licensed under CC0.
- -- Painting textures from Stunt Rally <https://code.google.com/p/vdrift-ogre/>, licensed under CC0. Modified.
- -- Painting textures made by Maizegod, licensed under CC0.
- minetest.register_node("paintings:canvas", {
- description = "Canvas",
- drawtype = "nodebox",
- tiles = {"paintings_canvas.png"},
- inventory_image = "paintings_canvas.png",
- wield_image = "paintings_canvas.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- })
- minetest.register_craft({
- output = "paintings:canvas",
- recipe = {
- {"group:stick", "group:stick", "group:stick"},
- {"group:stick", "wool:white", "group:stick"},
- {"group:stick", "group:stick", "group:stick"},
- }
- })
- minetest.register_node("paintings:aalmeidah_landscape", {
- description = "Painting: aalmeidah - Landscape",
- drawtype = "nodebox",
- tiles = {"paintings_aalmeidah_landscape.png"},
- inventory_image = "paintings_aalmeidah_landscape.png",
- wield_image = "paintings_aalmeidah_landscape.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:aalmeidah_landscape",
- recipe = {
- {"dye:cyan", "dye:cyan", "dye:pink"},
- {"dye:dark_grey", "paintings:canvas", "dye:pink"},
- {"dye:dark_grey", "dye:dark_grey", "dye:dark_grey"},
- }
- })
- minetest.register_node("paintings:andy_warhol_popart", {
- description = "Painting: Andy Warhol - Popart",
- drawtype = "nodebox",
- tiles = {"paintings_andy_warhol_popart.png"},
- inventory_image = "paintings_andy_warhol_popart.png",
- wield_image = "paintings_andy_warhol_popart.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:andy_warhol_popart",
- recipe = {
- {"dye:yellow", "dye:yellow", "dye:green"},
- {"dye:pink", "paintings:canvas", "dye:green"},
- {"dye:pink", "dye:blue", "dye:blue"},
- }
- })
- minetest.register_node("paintings:autumn_forest", {
- description = "Painting: Autumn Forest",
- drawtype = "nodebox",
- tiles = {"paintings_autumn_forest.png"},
- inventory_image = "paintings_autumn_forest.png",
- wield_image = "paintings_autumn_forest.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:autumn_forest",
- recipe = {
- {"dye:brown", "dye:grey", "dye:brown"},
- {"dye:brown", "paintings:canvas", "dye:brown"},
- {"dye:dark_green", "dye:dark_green", "dye:dark_green"},
- }
- })
- minetest.register_node("paintings:beach", {
- description = "Painting: Beach",
- drawtype = "nodebox",
- tiles = {"paintings_beach.png"},
- inventory_image = "paintings_beach.png",
- wield_image = "paintings_beach.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:beach",
- recipe = {
- {"dye:grey", "dye:blue", "dye:grey"},
- {"dye:green", "paintings:canvas", "dye:blue"},
- {"dye:blue", "dye:blue", "dye:blue"},
- }
- })
- minetest.register_node("paintings:cezanne", {
- description = "Painting: Cezanne",
- drawtype = "nodebox",
- tiles = {"paintings_cezanne.png"},
- inventory_image = "paintings_cezanne.png",
- wield_image = "paintings_cezanne.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:cezanne",
- recipe = {
- {"dye:dark_grey", "dye:dark_grey", "dye:dark_grey"},
- {"dye:blue", "paintings:canvas", "dye:pink"},
- {"dye:brown", "dye:brown", "dye:brown"},
- }
- })
- minetest.register_node("paintings:debian_logo", {
- description = "Painting: Debian logo",
- drawtype = "nodebox",
- tiles = {"paintings_debian_logo.png"},
- inventory_image = "paintings_debian_logo.png",
- wield_image = "paintings_debian_logo.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:debian_logo",
- recipe = {
- {"", "dye:magenta", ""},
- {"dye:magenta", "paintings:canvas", "dye:magenta"},
- {"", "dye:magenta", ""},
- }
- })
- minetest.register_node("paintings:desert", {
- description = "Painting: Desert",
- drawtype = "nodebox",
- tiles = {"paintings_desert.png"},
- inventory_image = "paintings_desert.png",
- wield_image = "paintings_desert.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:desert",
- recipe = {
- {"dye:blue", "dye:blue", "dye:blue"},
- {"dye:orange", "paintings:canvas", "dye:orange"},
- {"dye:orange", "dye:orange", "dye:white"},
- }
- })
- minetest.register_node("paintings:misty_forest", {
- description = "Painting: Misty Forest",
- drawtype = "nodebox",
- tiles = {"paintings_misty_forest.png"},
- inventory_image = "paintings_misty_forest.png",
- wield_image = "paintings_misty_forest.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:misty_forest",
- recipe = {
- {"dye:dark_grey", "dye:dark_grey", "dye:dark_grey"},
- {"dye:dark_green", "paintings:canvas", "dye:dark_green"},
- {"dye:dark_green", "dye:dark_green", "dye:dark_green"},
- }
- })
- minetest.register_node("paintings:mountain_top", {
- description = "Painting: Mountain Top",
- drawtype = "nodebox",
- tiles = {"paintings_mountain_top.png"},
- inventory_image = "paintings_mountain_top.png",
- wield_image = "paintings_mountain_top.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:mountain_top",
- recipe = {
- {"dye:white", "dye:white", "dye:blue"},
- {"dye:green", "paintings:canvas", "dye:green"},
- {"dye:green", "dye:blue", "dye:green"},
- }
- })
- minetest.register_node("paintings:pines", {
- description = "Painting: Pines",
- drawtype = "nodebox",
- tiles = {"paintings_pines.png"},
- inventory_image = "paintings_pines.png",
- wield_image = "paintings_pines.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:pines",
- recipe = {
- {"dye:grey", "dye:grey", "dye:grey"},
- {"dye:green", "paintings:canvas", "dye:green"},
- {"dye:green", "dye:green", "dye:green"},
- }
- })
- minetest.register_node("paintings:petiapocok_dali_laba", {
- description = "Painting: PetiAPocok - Dali Lába",
- drawtype = "nodebox",
- tiles = {"paintings_petiapocok_dali_laba.png"},
- inventory_image = "paintings_petiapocok_dali_laba.png",
- wield_image = "paintings_petiapocok_dali_laba.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:petiapocok_dali_laba",
- recipe = {
- {"dye:brown", "dye:pink", "dye:brown"},
- {"dye:brown", "paintings:canvas", "dye:brown"},
- {"dye:brown", "dye:pink", "dye:brown"},
- }
- })
- minetest.register_node("paintings:petiapocok_golya_lab", {
- description = "Painting: PetiAPocok - Gólya Láb",
- drawtype = "nodebox",
- tiles = {"paintings_petiapocok_golya_lab.png"},
- inventory_image = "paintings_petiapocok_golya_lab.png",
- wield_image = "paintings_petiapocok_golya_lab.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:petiapocok_golya_lab",
- recipe = {
- {"dye:grey", "dye:orange", "dye:grey"},
- {"dye:grey", "paintings:canvas", "dye:grey"},
- {"dye:green", "dye:orange", "dye:green"},
- }
- })
- minetest.register_node("paintings:salvador_dali", {
- description = "Painting: Salvador Dali",
- drawtype = "nodebox",
- tiles = {"paintings_salvador_dali.png"},
- inventory_image = "paintings_salvador_dali.png",
- wield_image = "paintings_salvador_dali.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:salvador_dali",
- recipe = {
- {"dye:orange", "dye:orange", "dye:yellow"},
- {"dye:brown", "paintings:canvas", "dye:yellow"},
- {"dye:yellow", "dye:red", "dye:red"},
- }
- })
- minetest.register_node("paintings:shore", {
- description = "Painting: Shore",
- drawtype = "nodebox",
- tiles = {"paintings_shore.png"},
- inventory_image = "paintings_shore.png",
- wield_image = "paintings_shore.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:shore",
- recipe = {
- {"dye:white", "dye:blue", "dye:green"},
- {"dye:blue", "paintings:canvas", "dye:green"},
- {"dye:green", "dye:green", "dye:green"},
- }
- })
- minetest.register_node("paintings:sunset", {
- description = "Painting: Sunset",
- drawtype = "nodebox",
- tiles = {"paintings_sunset.png"},
- inventory_image = "paintings_sunset.png",
- wield_image = "paintings_sunset.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:sunset",
- recipe = {
- {"dye:yellow", "dye:red", "dye:grey"},
- {"dye:yellow", "paintings:canvas", "dye:green"},
- {"dye:green", "dye:brown", "dye:green"},
- }
- })
- minetest.register_node("paintings:vectronom_studios_sphynx_cat", {
- description = "Painting: Vectronom Studios - Sphynx Cat",
- drawtype = "nodebox",
- tiles = {"paintings_vectronom_studios_sphynx_cat.png"},
- inventory_image = "paintings_vectronom_studios_sphynx_cat.png",
- wield_image = "paintings_vectronom_studios_sphynx_cat.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:vectronom_studios_sphynx_cat",
- recipe = {
- {"dye:pink", "dye:grey", "dye:pink"},
- {"dye:grey", "paintings:canvas", "dye:grey"},
- {"", "dye:grey", ""},
- }
- })
- minetest.register_node("paintings:winter", {
- description = "Painting: Winter",
- drawtype = "nodebox",
- tiles = {"paintings_winter.png"},
- inventory_image = "paintings_winter.png",
- wield_image = "paintings_winter.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- sunlight_propagates = true,
- walkable = false,
- node_box = {
- type = "wallmounted",
- wall_top = {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
- wall_bottom = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
- wall_side = {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3},
- sounds = default.node_sound_wood_defaults(),
- on_construct = function(pos)
- minetest.get_meta(pos):set_string("infotext", minetest.registered_nodes[minetest.get_node(pos).name].description)
- end
- })
- minetest.register_craft({
- output = "paintings:winter",
- recipe = {
- {"dye:blue", "dye:blue", "dye:blue"},
- {"dye:white", "paintings:canvas", "dye:green"},
- {"dye:white", "dye:white", "dye:white"},
- }
- })
|