2021-03-13 20:39:42 -06:00
|
|
|
minetest.register_node('x_bows:arrow_node', {
|
|
|
|
drawtype = 'nodebox',
|
|
|
|
node_box = {
|
|
|
|
type = 'fixed',
|
|
|
|
fixed = {
|
|
|
|
{-0.1875, 0, -0.5, 0.1875, 0, 0.5},
|
|
|
|
{0, -0.1875, -0.5, 0, 0.1875, 0.5},
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.5},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
-- Textures of node; +Y, -Y, +X, -X, +Z, -Z
|
|
|
|
-- Textures of node; top, bottom, right, left, front, back
|
|
|
|
tiles = {
|
|
|
|
'x_bows_arrow_tile_point_top.png',
|
|
|
|
'x_bows_arrow_tile_point_bottom.png',
|
|
|
|
'x_bows_arrow_tile_point_right.png',
|
|
|
|
'x_bows_arrow_tile_point_left.png',
|
|
|
|
'x_bows_arrow_tile_tail.png',
|
|
|
|
'x_bows_arrow_tile_tail.png'
|
|
|
|
},
|
|
|
|
groups = {not_in_creative_inventory=1},
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = 'light',
|
|
|
|
collision_box = {0, 0, 0, 0, 0, 0},
|
|
|
|
selection_box = {0, 0, 0, 0, 0, 0}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node('x_bows:target', {
|
|
|
|
description = 'Straw',
|
|
|
|
tiles = {'x_bows_target.png'},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {snappy=3, flammable=4, fall_damage_add_percent=-30},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
mesecons = {receptor = {state = 'off'}},
|
2022-10-05 21:44:46 -05:00
|
|
|
on_timer = function (pos, elapsed)
|
2021-03-13 20:39:42 -06:00
|
|
|
mesecon.receptor_off(pos)
|
|
|
|
return false
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = 'fuel',
|
|
|
|
recipe = 'x_bows:target',
|
|
|
|
burntime = 3,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'x_bows:target',
|
|
|
|
recipe = {
|
|
|
|
{'', 'default:mese_crystal', ''},
|
|
|
|
{'default:mese_crystal', 'farming:straw', 'default:mese_crystal'},
|
|
|
|
{'', 'default:mese_crystal', ''},
|
|
|
|
}
|
|
|
|
})
|