wowowo looking gooooood

This commit is contained in:
Kacper Kostka
2023-01-28 11:04:13 +01:00
parent 046d6fb7a1
commit 8b7a428b88
7 changed files with 182 additions and 4 deletions

View File

@@ -364,4 +364,102 @@ minetest.register_node("amogus_blocks:green_leaves", {
is_ground_content = false,
sunlight_propagates = true,
groups = {cracky=3,oddly_breakable_by_hand=3},
})
})
minetest.register_node("amogus_blocks:grass_tall", {
description = "Grass plant",
drawtype = "plantlike",
tiles = {"grass_tall.png"},
inventory_image = "grass_tall.png",
wield_image = "grass_tall.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
groups = {snappy=3,flammable=2,flower=1},
--sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
},
on_punch = function(pos, node, puncher, pointed_thing)
minetest.remove_node(pos)
end
})
minetest.register_node("amogus_blocks:purple_grass_tall", {
description = "Grass plant",
drawtype = "plantlike",
tiles = {"purple_grass_tall.png"},
inventory_image = "purple_grass_tall.png",
wield_image = "purple_grass_tall.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
groups = {snappy=3,flammable=2,flower=1},
--sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
},
on_punch = function(pos, node, puncher, pointed_thing)
minetest.remove_node(pos)
end
})
minetest.register_node("amogus_blocks:amogflower", {
description = "amogus flower",
drawtype = "plantlike",
tiles = {"amog_flower.png"},
inventory_image = "amog_flower.png",
wield_image = "amog_flower.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
light_source = 14,
groups = {snappy=3,flammable=2,flower=1},
--sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
},
on_punch = function(pos, node, puncher, pointed_thing)
minetest.remove_node(pos)
end
})
minetest.register_node("amogus_blocks:redflower", {
description = "red flower",
drawtype = "plantlike",
tiles = {"flower.png"},
inventory_image = "flower.png",
wield_image = "flower.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
groups = {snappy=3,flammable=2,flower=1},
--sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
},
on_punch = function(pos, node, puncher, pointed_thing)
minetest.remove_node(pos)
end
})
minetest.register_node("amogus_blocks:yellowflower", {
description = "yellow flower",
drawtype = "plantlike",
tiles = {"flower_2.png"},
inventory_image = "flower_2.png",
wield_image = "flower_2.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
groups = {snappy=3,flammable=2,flower=1},
--sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
},
on_punch = function(pos, node, puncher, pointed_thing)
minetest.remove_node(pos)
end
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

After

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

After

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 177 B

After

Width:  |  Height:  |  Size: 260 B