forked from VoxeLibre/VoxeLibre
75 lines
2.4 KiB
Lua
75 lines
2.4 KiB
Lua
-- Normal rail
|
|
minetest.register_node("mcl_minecarts:rail", {
|
|
description = "Rail",
|
|
drawtype = "raillike",
|
|
tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"},
|
|
is_ground_content = false,
|
|
inventory_image = "default_rail.png",
|
|
wield_image = "default_rail.png",
|
|
paramtype = "light",
|
|
walkable = false,
|
|
selection_box = {
|
|
type = "fixed",
|
|
-- but how to specify the dimensions for curved and sideways rails?
|
|
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
|
},
|
|
stack_max = 64,
|
|
groups = {cracky=3,oddly_breakable_by_hand=3,attached_node=1,rail=1,connect_to_raillike=1,dig_by_water=1,transport=1},
|
|
sounds = mcl_sounds.node_sound_defaults(),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = 'mcl_minecarts:rail 16',
|
|
recipe = {
|
|
{'mcl_core:iron_ingot', '', 'mcl_core:iron_ingot'},
|
|
{'mcl_core:iron_ingot', 'mcl_core:stick', 'mcl_core:iron_ingot'},
|
|
{'mcl_core:iron_ingot', '', 'mcl_core:iron_ingot'},
|
|
}
|
|
})
|
|
|
|
-- Rail to speed up
|
|
minetest.register_node("mcl_minecarts:golden_rail", {
|
|
description = "Powered Rail",
|
|
drawtype = "raillike",
|
|
tiles = {"carts_rail_pwr.png", "carts_rail_curved_pwr.png", "carts_rail_t_junction_pwr.png", "carts_rail_crossing_pwr.png"},
|
|
inventory_image = "carts_rail_pwr.png",
|
|
wield_image = "carts_rail_pwr.png",
|
|
paramtype = "light",
|
|
is_ground_content = true,
|
|
walkable = false,
|
|
selection_box = {
|
|
type = "fixed",
|
|
-- but how to specify the dimensions for curved and sideways rails?
|
|
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
|
},
|
|
groups = {cracky = 3, oddly_breakable_by_hand = 3, attached_node = 1, rail = 1, connect_to_raillike = 1, dig_by_water = 1, transport = 1},
|
|
|
|
after_place_node = function(pos, placer, itemstack)
|
|
if not mesecon then
|
|
minetest.get_meta(pos):set_string("cart_acceleration", "0.5")
|
|
end
|
|
end,
|
|
sounds = mcl_sounds.node_sound_defaults(),
|
|
mesecons = {
|
|
effector = {
|
|
action_on = function(pos, node)
|
|
mcl_minecarts:boost_rail(pos, 0.5)
|
|
end,
|
|
|
|
action_off = function(pos, node)
|
|
minetest.get_meta(pos):set_string("cart_acceleration", "0")
|
|
end,
|
|
},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mcl_minecarts:golden_rail 6",
|
|
recipe = {
|
|
{"mcl_core:gold_ingot", "", "mcl_core:gold_ingot"},
|
|
{"mcl_core:gold_ingot", "mcl_core:stick", "mcl_core:gold_ingot"},
|
|
{"mcl_core:gold_ingot", "mesecons:redstone", "mcl_core:gold_ingot"},
|
|
}
|
|
})
|
|
|