6
6
minetest .register_node (" mesecons_hydroturbine:hydro_turbine_off" , {
7
7
drawtype = " mesh" ,
8
8
mesh = " jeija_hydro_turbine.obj" ,
9
- tiles = {" jeija_hydro_turbine_off.png" },
9
+ tiles = {
10
+ " jeija_hydro_turbine_sides_off.png" ,
11
+ " jeija_hydro_turbine_top_bottom.png" ,
12
+ " jeija_hydro_turbine_turbine_top_bottom.png" ,
13
+ " jeija_hydro_turbine_turbine_misc.png"
14
+ },
10
15
inventory_image = " jeija_hydro_turbine_inv.png" ,
11
16
wield_scale = {x = 0.75 , y = 0.75 , z = 0.75 },
12
17
groups = {dig_immediate = 2 },
13
- description = " Water Turbine" ,
18
+ description = " Water Turbine" ,
14
19
paramtype = " light" ,
15
20
selection_box = {
16
21
type = " fixed" ,
@@ -26,7 +31,12 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
26
31
drawtype = " mesh" ,
27
32
mesh = " jeija_hydro_turbine.obj" ,
28
33
wield_scale = {x = 0.75 , y = 0.75 , z = 0.75 },
29
- tiles = {" jeija_hydro_turbine_on.png" },
34
+ tiles = {
35
+ " jeija_hydro_turbine_sides_on.png" ,
36
+ " jeija_hydro_turbine_top_bottom.png" ,
37
+ " jeija_hydro_turbine_turbine_top_bottom.png" ,
38
+ " jeija_hydro_turbine_turbine_misc.png"
39
+ },
30
40
inventory_image = " jeija_hydro_turbine_inv.png" ,
31
41
drop = " mesecons_hydroturbine:hydro_turbine_off 1" ,
32
42
groups = {dig_immediate = 2 ,not_in_creative_inventory = 1 },
0 commit comments