mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 06:11:47 +02:00
initial commit
subgame + mods
This commit is contained in:
1
mods/mesecons/mesecons_random/depends.txt
Executable file
1
mods/mesecons/mesecons_random/depends.txt
Executable file
@ -0,0 +1 @@
|
||||
mesecons
|
85
mods/mesecons/mesecons_random/init.lua
Executable file
85
mods/mesecons/mesecons_random/init.lua
Executable file
@ -0,0 +1,85 @@
|
||||
-- REMOVESTONE
|
||||
|
||||
minetest.register_node("mesecons_random:removestone", {
|
||||
tiles = {"jeija_removestone.png"},
|
||||
inventory_image = minetest.inventorycube("jeija_removestone_inv.png"),
|
||||
groups = {cracky=3},
|
||||
description="Removestone",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
mesecons = {effector = {
|
||||
action_on = function (pos, node)
|
||||
minetest.remove_node(pos)
|
||||
mesecon:update_autoconnect(pos)
|
||||
end
|
||||
}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mesecons_random:removestone 4',
|
||||
recipe = {
|
||||
{"", "default:cobble", ""},
|
||||
{"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"},
|
||||
{"", "default:cobble", ""},
|
||||
}
|
||||
})
|
||||
|
||||
-- GHOSTSTONE
|
||||
|
||||
minetest.register_node("mesecons_random:ghoststone", {
|
||||
description="ghoststone",
|
||||
tiles = {"jeija_ghoststone.png"},
|
||||
is_ground_content = true,
|
||||
inventory_image = minetest.inventorycube("jeija_ghoststone_inv.png"),
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.off,
|
||||
rules = { --axes
|
||||
{x = -1, y = 0, z = 0},
|
||||
{x = 1, y = 0, z = 0},
|
||||
{x = 0, y = -1, z = 0},
|
||||
{x = 0, y = 1, z = 0},
|
||||
{x = 0, y = 0, z = -1},
|
||||
{x = 0, y = 0, z = 1},
|
||||
},
|
||||
onstate = "mesecons_random:ghoststone_active"
|
||||
}}
|
||||
})
|
||||
|
||||
minetest.register_node("mesecons_random:ghoststone_active", {
|
||||
drawtype = "airlike",
|
||||
pointable = false,
|
||||
walkable = false,
|
||||
diggable = false,
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.on,
|
||||
rules = {
|
||||
{x = -1, y = 0, z = 0},
|
||||
{x = 1, y = 0, z = 0},
|
||||
{x = 0, y = -1, z = 0},
|
||||
{x = 0, y = 1, z = 0},
|
||||
{x = 0, y = 0, z = -1},
|
||||
{x = 0, y = 0, z = 1},
|
||||
},
|
||||
offstate = "mesecons_random:ghoststone"
|
||||
}},
|
||||
on_construct = function(pos)
|
||||
--remove shadow
|
||||
pos2 = {x = pos.x, y = pos.y + 1, z = pos.z}
|
||||
if ( minetest.get_node(pos2).name == "air" ) then
|
||||
minetest.dig_node(pos2)
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mesecons_random:ghoststone 4',
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
||||
{"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"},
|
||||
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
||||
}
|
||||
})
|
BIN
mods/mesecons/mesecons_random/textures/jeija_ghoststone.png
Executable file
BIN
mods/mesecons/mesecons_random/textures/jeija_ghoststone.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 690 B |
BIN
mods/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png
Executable file
BIN
mods/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 709 B |
BIN
mods/mesecons/mesecons_random/textures/jeija_removestone.png
Executable file
BIN
mods/mesecons/mesecons_random/textures/jeija_removestone.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 690 B |
BIN
mods/mesecons/mesecons_random/textures/jeija_removestone_inv.png
Executable file
BIN
mods/mesecons/mesecons_random/textures/jeija_removestone_inv.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 709 B |
Reference in New Issue
Block a user