Updated mesecons
- New textures for lever and hydroturbine - Little update of news.txt
@ -6,11 +6,16 @@
|
|||||||
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "jeija_hydro_turbine.obj",
|
mesh = "jeija_hydro_turbine.obj",
|
||||||
tiles = {"jeija_hydro_turbine_off.png"},
|
tiles = {
|
||||||
|
"jeija_hydro_turbine_sides_off.png",
|
||||||
|
"jeija_hydro_turbine_top_bottom.png",
|
||||||
|
"jeija_hydro_turbine_turbine_top_bottom.png",
|
||||||
|
"jeija_hydro_turbine_turbine_misc.png"
|
||||||
|
},
|
||||||
inventory_image = "jeija_hydro_turbine_inv.png",
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
||||||
wield_scale = {x=0.75, y=0.75, z=0.75},
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
||||||
groups = {dig_immediate=2},
|
groups = {dig_immediate=2},
|
||||||
description="Water Turbine",
|
description="Water Turbine",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
@ -26,7 +31,12 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
|
|||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "jeija_hydro_turbine.obj",
|
mesh = "jeija_hydro_turbine.obj",
|
||||||
wield_scale = {x=0.75, y=0.75, z=0.75},
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
||||||
tiles = {"jeija_hydro_turbine_on.png"},
|
tiles = {
|
||||||
|
"jeija_hydro_turbine_sides_on.png",
|
||||||
|
"jeija_hydro_turbine_top_bottom.png",
|
||||||
|
"jeija_hydro_turbine_turbine_top_bottom.png",
|
||||||
|
"jeija_hydro_turbine_turbine_misc.png"
|
||||||
|
},
|
||||||
inventory_image = "jeija_hydro_turbine_inv.png",
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
||||||
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
|
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
|
||||||
groups = {dig_immediate=2,not_in_creative_inventory=1},
|
groups = {dig_immediate=2,not_in_creative_inventory=1},
|
||||||
|
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.9 KiB |
BIN
mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_sides_off.png
Executable file
After Width: | Height: | Size: 782 B |
BIN
mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_sides_on.png
Executable file
After Width: | Height: | Size: 758 B |
BIN
mods/mesecons/mesecons_hydroturbine/textures/jeija_hydro_turbine_top_bottom.png
Executable file
After Width: | Height: | Size: 564 B |
After Width: | Height: | Size: 820 B |
After Width: | Height: | Size: 496 B |
@ -24,7 +24,12 @@ mesecon.register_node("mesecons_walllever:wall_lever", {
|
|||||||
minetest.sound_play("mesecons_lever", {pos=pos})
|
minetest.sound_play("mesecons_lever", {pos=pos})
|
||||||
end
|
end
|
||||||
},{
|
},{
|
||||||
tiles = { "jeija_wall_lever_off.png" },
|
tiles = {
|
||||||
|
"jeija_wall_lever_lever_light_off.png",
|
||||||
|
"jeija_wall_lever_front.png",
|
||||||
|
"jeija_wall_lever_front_bump.png",
|
||||||
|
"jeija_wall_lever_back_edges.png"
|
||||||
|
},
|
||||||
mesh="jeija_wall_lever_off.obj",
|
mesh="jeija_wall_lever_off.obj",
|
||||||
mesecons = {receptor = {
|
mesecons = {receptor = {
|
||||||
rules = mesecon.rules.buttonlike_get,
|
rules = mesecon.rules.buttonlike_get,
|
||||||
@ -32,7 +37,12 @@ mesecon.register_node("mesecons_walllever:wall_lever", {
|
|||||||
}},
|
}},
|
||||||
groups = {dig_immediate = 2, mesecon_needs_receiver = 1}
|
groups = {dig_immediate = 2, mesecon_needs_receiver = 1}
|
||||||
},{
|
},{
|
||||||
tiles = { "jeija_wall_lever_on.png" },
|
tiles = {
|
||||||
|
"jeija_wall_lever_lever_light_on.png",
|
||||||
|
"jeija_wall_lever_front.png",
|
||||||
|
"jeija_wall_lever_front_bump.png",
|
||||||
|
"jeija_wall_lever_back_edges.png"
|
||||||
|
},
|
||||||
mesh="jeija_wall_lever_on.obj",
|
mesh="jeija_wall_lever_on.obj",
|
||||||
mesecons = {receptor = {
|
mesecons = {receptor = {
|
||||||
rules = mesecon.rules.buttonlike_get,
|
rules = mesecon.rules.buttonlike_get,
|
||||||
|
BIN
mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_back_edges.png
Executable file
After Width: | Height: | Size: 457 B |
BIN
mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_front.png
Executable file
After Width: | Height: | Size: 360 B |
BIN
mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_front_bump.png
Executable file
After Width: | Height: | Size: 252 B |
BIN
mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_lever_light_off.png
Executable file
After Width: | Height: | Size: 347 B |
BIN
mods/mesecons/mesecons_walllever/textures/jeija_wall_lever_lever_light_on.png
Executable file
After Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
@ -5,6 +5,8 @@ News de FR - MinetestForFun (Survival - PVP - Hardcore)
|
|||||||
/!\ En effet, nous profitons de cette stabilitée pour préparer une grosse MAJ qui boulversera à jamais le gameplay de Minetest /!\
|
/!\ En effet, nous profitons de cette stabilitée pour préparer une grosse MAJ qui boulversera à jamais le gameplay de Minetest /!\
|
||||||
|
|
||||||
---Next merge--- (Remerciements : ???)
|
---Next merge--- (Remerciements : ???)
|
||||||
|
MaJ de "mesecons"
|
||||||
|
MaJ de "pipeworks"
|
||||||
Ajout du mod "broomstick" de palige (permet d'utiliser un balai volant contre 210 de mana)
|
Ajout du mod "broomstick" de palige (permet d'utiliser un balai volant contre 210 de mana)
|
||||||
|
|
||||||
---21/06/2015--- (Remerciements : mgl512/Le_Docteur, LeMagnesium/Mg, crabman77/crabman, Obani)
|
---21/06/2015--- (Remerciements : mgl512/Le_Docteur, LeMagnesium/Mg, crabman77/crabman, Obani)
|
||||||
|