1
1
-- Minetest 0.4 mod: default
2
2
-- See README.txt for licensing and other information.
3
3
4
+ -- Namespace for functions
5
+ flowers = {}
6
+
4
7
-- Map Generation
5
8
dofile (minetest .get_modpath (" flowers" ).. " /mapgen.lua" )
6
9
@@ -13,13 +16,20 @@ minetest.register_alias("flowers:flower_tulip", "flowers:tulip")
13
16
minetest .register_alias (" flowers:flower_viola" , " flowers:viola" )
14
17
15
18
-- Flower registration function
16
- local function add_simple_flower (name , desc , image , f_groups )
19
+ local function add_simple_flower (name , desc , box , f_groups )
20
+ -- Common flowers' groups
21
+ f_groups .snappy = 3
22
+ f_groups .flammable = 2
23
+ f_groups .flower = 1
24
+ f_groups .flora = 1
25
+ f_groups .attached_node = 1
26
+
17
27
minetest .register_node (" flowers:" .. name .. " " , {
18
28
description = desc ,
19
29
drawtype = " plantlike" ,
20
- tiles = { image .. " .png" },
21
- inventory_image = image .. " .png" ,
22
- wield_image = image .. " .png" ,
30
+ tiles = { " flowers_ " .. name .. " .png" },
31
+ inventory_image = " flowers_ " .. name .. " .png" ,
32
+ wield_image = " flowers_ " .. name .. " .png" ,
23
33
sunlight_propagates = true ,
24
34
paramtype = " light" ,
25
35
walkable = false ,
@@ -28,19 +38,24 @@ local function add_simple_flower(name, desc, image, f_groups)
28
38
sounds = default .node_sound_leaves_defaults (),
29
39
selection_box = {
30
40
type = " fixed" ,
31
- fixed = { - 0.15 , - 0.5 , - 0.15 , 0.15 , 0.2 , 0.15 },
32
- },
41
+ fixed = box
42
+ }
33
43
})
34
44
end
35
45
36
46
-- Registrations using the function above
37
- add_simple_flower (" dandelion_yellow" , " Yellow Dandelion" , " flowers_dandelion_yellow" , {snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,dig_by_water = 1 ,color_yellow = 1 })
38
- add_simple_flower (" geranium" , " Blue Geranium" , " flowers_geranium" , {snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,dig_by_water = 1 ,color_blue = 1 })
39
- add_simple_flower (" rose" , " Rose" , " flowers_rose" , {snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,dig_by_water = 1 ,color_red = 1 })
40
- add_simple_flower (" tulip" , " Orange Tulip" , " flowers_tulip" , {snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,dig_by_water = 1 ,color_orange = 1 })
41
- add_simple_flower (" dandelion_white" , " White dandelion" , " flowers_dandelion_white" ,{snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,color_white = 1 })
42
- add_simple_flower (" viola" , " Viola" , " flowers_viola" , {snappy = 3 ,flammable = 2 ,flower = 1 ,flora = 1 ,attached_node = 1 ,color_violet = 1 })
47
+ flowers .datas = {
48
+ {" dandelion_yellow" , " Yellow Dandelion" , { - 0.15 , - 0.5 , - 0.15 , 0.15 , 0.2 , 0.15 }, {color_yellow = 1 }},
49
+ {" geranium" , " Blue Geranium" , { - 0.15 , - 0.5 , - 0.15 , 0.15 , 0.2 , 0.15 }, {color_blue = 1 }},
50
+ {" rose" , " Rose" , { - 0.15 , - 0.5 , - 0.15 , 0.15 , 0.3 , 0.15 }, {color_red = 1 }},
51
+ {" tulip" , " Orange Tulip" , { - 0.15 , - 0.5 , - 0.15 , 0.15 , 0.2 , 0.15 }, {color_orange = 1 }},
52
+ {" dandelion_white" , " White dandelion" , { - 0.5 , - 0.5 , - 0.5 , 0.5 , - 0.2 , 0.5 }, {color_white = 1 }},
53
+ {" viola" , " Viola" , { - 0.5 , - 0.5 , - 0.5 , 0.5 , - 0.2 , 0.5 }, {color_violet = 1 }}
54
+ }
43
55
56
+ for _ ,item in pairs (flowers .datas ) do
57
+ add_simple_flower (unpack (item ))
58
+ end
44
59
45
60
minetest .register_abm ({
46
61
nodenames = {" group:flora" },
0 commit comments