summaryrefslogtreecommitdiff
path: root/schematics/waterlily.lua
blob: 0373a88af5179a38c0c4aecf40ae1d39f44c0cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

-- waterlily

ethereal.waterlily = {
	size = {x = 1, y = 3, z = 1},
	data = {

		{name = "default:sand", param1 = 255},
		{name = "default:water_source", param1 = 255},
		{name = "flowers:waterlily", param1 = 255},

	},
}

if ethereal.lilywalk == true then

	minetest.override_item("flowers:waterlily", {
		walkable = true,
	})
end