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")
|
|
|
|
|
2016-04-01 20:02:19 -04:00
|
|
|
local corner_selectionbox = {
|
|
|
|
type = "fixed",
|
2018-09-08 12:12:15 -04:00
|
|
|
fixed = { -16/32, -16/32, -16/32, 5/32, -12/32, 5/32 },
|
2016-04-01 20:02:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
local corner_get_rules = function (node)
|
|
|
|
local rules =
|
|
|
|
{{x = 1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = -1}}
|
|
|
|
|
|
|
|
for i = 0, node.param2 do
|
|
|
|
rules = mesecon.rotate_rules_left(rules)
|
|
|
|
end
|
|
|
|
|
|
|
|
return rules
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_extrawires:corner_on", {
|
update castles, cool_trees, plantlife, basic_materials, bees, bonemeal,
homedecor, currency, digilines, farming redo, item_drop, maptools,
mesecons, moreblocks, moreores, moretrees, pipeworks, signs_lib,
stained_glass, technic, titanium, unified_inventory, unifieddyes,and
worldedit.
added Tenplus1's ambience mod
2020-11-01 13:02:30 -05:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "mesecons_extrawires_corner.obj",
|
2016-04-01 20:02:19 -04:00
|
|
|
tiles = {
|
update castles, cool_trees, plantlife, basic_materials, bees, bonemeal,
homedecor, currency, digilines, farming redo, item_drop, maptools,
mesecons, moreblocks, moreores, moretrees, pipeworks, signs_lib,
stained_glass, technic, titanium, unified_inventory, unifieddyes,and
worldedit.
added Tenplus1's ambience mod
2020-11-01 13:02:30 -05:00
|
|
|
{ name = "jeija_insulated_wire_sides_on.png", backface_culling = true },
|
|
|
|
{ name = "jeija_insulated_wire_ends_on.png", backface_culling = true },
|
2016-04-01 20:02:19 -04:00
|
|
|
},
|
|
|
|
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 = corner_selectionbox,
|
|
|
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
|
|
|
drop = "mesecons_extrawires:corner_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,
|
|
|
|
rules = corner_get_rules,
|
|
|
|
offstate = "mesecons_extrawires:corner_off"
|
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_extrawires:corner_off", {
|
update castles, cool_trees, plantlife, basic_materials, bees, bonemeal,
homedecor, currency, digilines, farming redo, item_drop, maptools,
mesecons, moreblocks, moreores, moretrees, pipeworks, signs_lib,
stained_glass, technic, titanium, unified_inventory, unifieddyes,and
worldedit.
added Tenplus1's ambience mod
2020-11-01 13:02:30 -05:00
|
|
|
drawtype = "mesh",
|
2017-02-12 20:05:50 -05:00
|
|
|
description = "Insulated Mesecon Corner",
|
update castles, cool_trees, plantlife, basic_materials, bees, bonemeal,
homedecor, currency, digilines, farming redo, item_drop, maptools,
mesecons, moreblocks, moreores, moretrees, pipeworks, signs_lib,
stained_glass, technic, titanium, unified_inventory, unifieddyes,and
worldedit.
added Tenplus1's ambience mod
2020-11-01 13:02:30 -05:00
|
|
|
mesh = "mesecons_extrawires_corner.obj",
|
2016-04-01 20:02:19 -04:00
|
|
|
tiles = {
|
update castles, cool_trees, plantlife, basic_materials, bees, bonemeal,
homedecor, currency, digilines, farming redo, item_drop, maptools,
mesecons, moreblocks, moreores, moretrees, pipeworks, signs_lib,
stained_glass, technic, titanium, unified_inventory, unifieddyes,and
worldedit.
added Tenplus1's ambience mod
2020-11-01 13:02:30 -05:00
|
|
|
{ name = "jeija_insulated_wire_sides_off.png", backface_culling = true },
|
|
|
|
{ name = "jeija_insulated_wire_ends_off.png", backface_culling = true },
|
2016-04-01 20:02:19 -04:00
|
|
|
},
|
|
|
|
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 = corner_selectionbox,
|
|
|
|
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,
|
|
|
|
rules = corner_get_rules,
|
|
|
|
onstate = "mesecons_extrawires:corner_on"
|
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_extrawires:corner_off 3",
|
|
|
|
recipe = {
|
update bakedclay, basic_materials, bonemeal, currency, farming_redo,
maptools, mesecons, moreblocks, moreores, new_campfire, cool_trees,
pipeworks, staines_glass, technic, unified_inventory, and unifieddyes.
2020-07-12 08:03:52 -04:00
|
|
|
{"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off"},
|
|
|
|
{"", "mesecons_insulated:insulated_off"},
|
2016-04-01 20:02:19 -04:00
|
|
|
}
|
|
|
|
})
|