Skip to content
Snippets Groups Projects
Commit 35de798d authored by Kotolegokot's avatar Kotolegokot
Browse files

Blinky Plant

parent e8155f5c
No related branches found
No related tags found
No related merge requests found
-- The BLINKY_PLANT
minetest.register_node("mesecons_blinkyplant:blinky_plant_off", {
drawtype = "plantlike",
drawtype = "torchlike",
visual_scale = 1,
tile_images = {"jeija_blinky_plant_off.png"},
inventory_image = "jeija_blinky_plant_off.png",
paramtype = "light",
walkable = false,
groups = {snappy=2},
groups = {dig_immediate=3},
description="Blinky Plant",
selection_box = {
type = "fixed",
fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
},
})
minetest.register_node("mesecons_blinkyplant:blinky_plant_on", {
drawtype = "plantlike",
drawtype = "torchlike",
visual_scale = 1,
tile_images = {"jeija_blinky_plant_on.png"},
inventory_image = "jeija_blinky_plant_off.png",
paramtype = "light",
walkable = false,
groups = {snappy=2, not_in_creative_inventory=1},
groups = {dig_immediate=3, not_in_creative_inventory=1},
drop='"mesecons_blinkyplant:blinky_plant_off" 1',
light_source = LIGHT_MAX-7,
description = "Blinky Plant",
after_dig_node = function(pos)
mesecon:receptor_off(pos)
end
end,
selection_box = {
type = "fixed",
fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
},
})
minetest.register_craft({
......
mesecons_textures/textures/jeija_blinky_plant_off.png

201 B | W: | H:

mesecons_textures/textures/jeija_blinky_plant_off.png

207 B | W: | H:

mesecons_textures/textures/jeija_blinky_plant_off.png
mesecons_textures/textures/jeija_blinky_plant_off.png
mesecons_textures/textures/jeija_blinky_plant_off.png
mesecons_textures/textures/jeija_blinky_plant_off.png
  • 2-up
  • Swipe
  • Onion skin
mesecons_textures/textures/jeija_blinky_plant_on.png

209 B | W: | H:

mesecons_textures/textures/jeija_blinky_plant_on.png

214 B | W: | H:

mesecons_textures/textures/jeija_blinky_plant_on.png
mesecons_textures/textures/jeija_blinky_plant_on.png
mesecons_textures/textures/jeija_blinky_plant_on.png
mesecons_textures/textures/jeija_blinky_plant_on.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment