forked from acmgit/cucina_vegana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sunflower.lua
42 lines (30 loc) · 1.07 KB
/
sunflower.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
local modpath = minetest.get_modpath(minetest.get_current_modname())
if(minetest.registered_nodes["flowers:sunflower"] ~= nil) then
print("[MOD] " .. minetest.get_current_modname() .. " Sunflowers available.")
print("[MOD] " .. minetest.get_current_modname() .. " using \"flowers:sunflower\".")
else
print("[MOD] " .. minetest.get_current_modname() .. " no Sunflowers available.")
print("[MOD] " .. minetest.get_current_modname() .. " use own Sunflowers.")
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass", "default:dirt_with_dry_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = cucina_vegana.plant_settings.sunflower_scale,
spread = {x = 10, y = 10, z = 10},
seed = 8756,
octaves = 3,
persist = 0.6
},
y_min = 0,
y_max = 150,
decoration = "cucina_vegana:wild_sunflower",
})
minetest.register_alias("flowers:sunflower", "cucina_vegana:sunflower")
if (cucina_vegana.farming_default) then
dofile(modpath .. "/sunflower_default.lua")
else
dofile(modpath .. "/sunflower_redo.lua")
end
end