initial commit
subgame + mods
1
mods/mesecons/mesecons_insulated/depends.txt
Executable file
@ -0,0 +1 @@
|
||||
mesecons
|
84
mods/mesecons/mesecons_insulated/init.lua
Executable file
@ -0,0 +1,84 @@
|
||||
function insulated_wire_get_rules(node)
|
||||
local rules = {{x = 1, y = 0, z = 0},
|
||||
{x =-1, y = 0, z = 0}}
|
||||
if node.param2 == 1 or node.param2 == 3 then
|
||||
return mesecon:rotate_rules_right(rules)
|
||||
end
|
||||
return rules
|
||||
end
|
||||
|
||||
minetest.register_node("mesecons_insulated:insulated_on", {
|
||||
drawtype = "nodebox",
|
||||
description = "Insulated Mesecon",
|
||||
tiles = {
|
||||
"jeija_insulated_wire_sides_on.png",
|
||||
"jeija_insulated_wire_sides_on.png",
|
||||
"jeija_insulated_wire_ends_on.png",
|
||||
"jeija_insulated_wire_ends_on.png",
|
||||
"jeija_insulated_wire_sides_on.png",
|
||||
"jeija_insulated_wire_sides_on.png"
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
|
||||
},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
|
||||
},
|
||||
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
||||
drop = "mesecons_insulated:insulated_off",
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.on,
|
||||
offstate = "mesecons_insulated:insulated_off",
|
||||
rules = insulated_wire_get_rules
|
||||
}}
|
||||
})
|
||||
|
||||
minetest.register_node("mesecons_insulated:insulated_off", {
|
||||
drawtype = "nodebox",
|
||||
description = "insulated mesecons",
|
||||
tiles = {
|
||||
"jeija_insulated_wire_sides_off.png",
|
||||
"jeija_insulated_wire_sides_off.png",
|
||||
"jeija_insulated_wire_ends_off.png",
|
||||
"jeija_insulated_wire_ends_off.png",
|
||||
"jeija_insulated_wire_sides_off.png",
|
||||
"jeija_insulated_wire_sides_off.png"
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
|
||||
},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
|
||||
},
|
||||
groups = {dig_immediate = 3},
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.off,
|
||||
onstate = "mesecons_insulated:insulated_on",
|
||||
rules = insulated_wire_get_rules
|
||||
}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_insulated:insulated_off 3",
|
||||
recipe = {
|
||||
{"mesecons_materials:fiber", "mesecons_materials:fiber", "mesecons_materials:fiber"},
|
||||
{"mesecons:wire_00000000_off", "mesecons:wire_00000000_off", "mesecons:wire_00000000_off"},
|
||||
{"mesecons_materials:fiber", "mesecons_materials:fiber", "mesecons_materials:fiber"},
|
||||
}
|
||||
})
|
||||
|
||||
mesecon:add_rules("insulated", {
|
||||
{x = 1, y = 0, z = 0},
|
||||
{x =-1, y = 0, z = 0}})
|
After Width: | Height: | Size: 305 B |
After Width: | Height: | Size: 270 B |
After Width: | Height: | Size: 293 B |
After Width: | Height: | Size: 209 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_off.png
Executable file
After Width: | Height: | Size: 253 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_curved_tb_on.png
Executable file
After Width: | Height: | Size: 196 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01x.png
Executable file
After Width: | Height: | Size: 246 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_01z.png
Executable file
After Width: | Height: | Size: 252 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10x.png
Executable file
After Width: | Height: | Size: 238 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_10z.png
Executable file
After Width: | Height: | Size: 261 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_off.png
Executable file
After Width: | Height: | Size: 142 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_ends_on.png
Executable file
After Width: | Height: | Size: 126 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_off.png
Executable file
After Width: | Height: | Size: 200 B |
BIN
mods/mesecons/mesecons_insulated/textures/jeija_insulated_wire_sides_on.png
Executable file
After Width: | Height: | Size: 169 B |
After Width: | Height: | Size: 244 B |
After Width: | Height: | Size: 207 B |