removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
2018-02-13 14:05:34 -05:00
|
|
|
local screwdriver_exists = minetest.global_exists("screwdriver")
|
|
|
|
|
2017-02-12 20:05:50 -05:00
|
|
|
local function insulated_wire_get_rules(node)
|
2016-04-01 20:02:19 -04:00
|
|
|
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",
|
update coloredwood, digilines, technic, gloopblocks, homedecor, mesecons,
pipeworks, player_textures, signs_lib, unifieddyes, and worldedit
2017-03-14 00:04:17 -04:00
|
|
|
description = "Straight Insulated Mesecon",
|
2016-04-01 20:02:19 -04:00
|
|
|
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",
|
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
2018-02-13 14:05:34 -05:00
|
|
|
is_ground_content = false,
|
2016-04-01 20:02:19 -04:00
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2018-09-08 12:12:15 -04:00
|
|
|
fixed = { -16/32, -16/32, -7/32, 16/32, -12/32, 7/32 }
|
2016-04-01 20:02:19 -04:00
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2018-09-08 12:12:15 -04:00
|
|
|
-- ±0.001 is to prevent z-fighting
|
2016-04-01 20:02:19 -04:00
|
|
|
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",
|
update castles, cottages, digistuff, gloopblocks, locks,
maptools, mesecons, pipeworks, technic, unified inventory,
unified dyes, and xban2
2018-08-03 09:31:05 -04:00
|
|
|
sounds = default.node_sound_defaults(),
|
2016-04-01 20:02:19 -04:00
|
|
|
mesecons = {conductor = {
|
|
|
|
state = mesecon.state.on,
|
|
|
|
offstate = "mesecons_insulated:insulated_off",
|
|
|
|
rules = insulated_wire_get_rules
|
updated boost cart, homedecor modpack, castles modpack, currency, farming-redo,
maptools, mesecons, moreblocks, moreores, pipeworks, quartz
2017-10-27 15:13:31 -04:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
2018-02-13 14:05:34 -05:00
|
|
|
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
|
2016-04-01 20:02:19 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_insulated:insulated_off", {
|
|
|
|
drawtype = "nodebox",
|
update coloredwood, digilines, technic, gloopblocks, homedecor, mesecons,
pipeworks, player_textures, signs_lib, unifieddyes, and worldedit
2017-03-14 00:04:17 -04:00
|
|
|
description = "Straight Insulated Mesecon",
|
2016-04-01 20:02:19 -04:00
|
|
|
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",
|
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
2018-02-13 14:05:34 -05:00
|
|
|
is_ground_content = false,
|
2016-04-01 20:02:19 -04:00
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2018-09-08 12:12:15 -04:00
|
|
|
fixed = { -16/32, -16/32, -7/32, 16/32, -12/32, 7/32 }
|
2016-04-01 20:02:19 -04:00
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2018-09-08 12:12:15 -04:00
|
|
|
-- ±0.001 is to prevent z-fighting
|
2016-04-01 20:02:19 -04:00
|
|
|
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
|
|
|
|
},
|
|
|
|
groups = {dig_immediate = 3},
|
update castles, cottages, digistuff, gloopblocks, locks,
maptools, mesecons, pipeworks, technic, unified inventory,
unified dyes, and xban2
2018-08-03 09:31:05 -04:00
|
|
|
sounds = default.node_sound_defaults(),
|
2016-04-01 20:02:19 -04:00
|
|
|
mesecons = {conductor = {
|
|
|
|
state = mesecon.state.off,
|
|
|
|
onstate = "mesecons_insulated:insulated_on",
|
|
|
|
rules = insulated_wire_get_rules
|
updated boost cart, homedecor modpack, castles modpack, currency, farming-redo,
maptools, mesecons, moreblocks, moreores, pipeworks, quartz
2017-10-27 15:13:31 -04:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
2018-02-13 14:05:34 -05:00
|
|
|
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
|
2016-04-01 20:02:19 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
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"},
|
|
|
|
}
|
|
|
|
})
|