File: waterlily.lua

package info (click to toggle)
minetest-mod-ethereal 20181016-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,072 kB
  • sloc: makefile: 2
file content (20 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (3)
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