123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- minetest.register_node("lottblocks:dwarf_harp", {
- description = "Dwarvern Harp",
- tiles = {"lottblocks_harp1.png", "lottblocks_harp2.png", "lottblocks_harp3.png", "lottblocks_harp4.png", "lottblocks_harp5.png", "lottblocks_harp6.png"},
- drawtype = "nodebox",
- paramtype = "light",
- paramtype2 = "facedir",
- on_punch = function(pos)
- minetest.sound_play("lottblocks_harp", {
- pos=pos,
- max_hear_distance = 12,
- gain = 1,
- })
- end,
- node_box = {
- type = "fixed",
- fixed = {
- {-0.3125, -0.5, -0.0625, 0.125, -0.375, 0.125}, -- NodeBox1
- {-0.1875, -0.375, -0.0625, 0.1875, -0.25, 0.125}, -- NodeBox2
- {-0.0625, -0.25, -0.0625, 0.25, -0.125, 0.125}, -- NodeBox3
- {0.0625, -0.125, -0.0625, 0.3125, 0, 0.125}, -- NodeBox4
- {0.1875, -0.0625, -0.0625, 0.375, 0.125, 0.125}, -- NodeBox5
- {0.3125, 0.0625, -0.0625, 0.4375, 0.25, 0.125}, -- NodeBox6
- {0.4375, 0.25, -0.0625, 0.5, 0.375, 0.125}, -- NodeBox7
- {0.375, 0.375, -0.0625, 0.4375, 0.4375, 0.125}, -- NodeBox8
- {-0.1875, 0.4375, -0.0625, 0.375, 0.5, 0.125}, -- NodeBox9
- {-0.375, -0.375, -0.0625, -0.3125, -0.3125, 0.125}, -- NodeBox10
- {-0.4375, -0.3125, -0.0625, -0.375, 0.25, 0.125}, -- NodeBox11
- {-0.375, 0.25, -0.0625, -0.3125, 0.3125, 0.125}, -- NodeBox12
- {-0.3125, 0.3125, -0.0625, -0.25, 0.375, 0.125}, -- NodeBox13
- {-0.25, 0.375, -0.0625, -0.1875, 0.4375, 0.125}, -- NodeBox14
- {-0.3125, -0.375, 0, -0.25, 0.3125, 0.0625}, -- NodeBox15
- {-0.1875, -0.25, 0, -0.125, 0.4375, 0.0625}, -- NodeBox16
- {-0.0625, -0.125, 0, 0, 0.4375, 0.0625}, -- NodeBox17
- {0.0625, 0, 0, 0.125, 0.4375, 0.0625}, -- NodeBox18
- {0.1875, 0.09375, 0, 0.25, 0.4375, 0.0625}, -- NodeBox19
- {0.3125, 0.25, 0, 0.375, 0.4375, 0.0625}, -- NodeBox20
- }
- },
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.0625, 0.5, 0.5, 0.125}, -- NodeBox1
- }
- },
- groups = {instrument=1, cracky=1}
- })
- minetest.register_craftitem("lottblocks:dwarf_harp_strings", {
- description = "Dwarvern Harp Strings",
- inventory_image = "lottblocks_harp_strings.png",
- })
- minetest.register_craft({
- output = "lottblocks:dwarf_harp_strings",
- recipe = {
- {"farming:string", "lottores:silver_ingot", "farming:string"},
- {"farming:string", "lottores:silver_ingot", "farming:string"},
- {"farming:string", "lottores:silver_ingot", "farming:string"}
- }
- })
- minetest.register_craft({
- output = "lottblocks:dwarf_harp",
- recipe = {
- {"", "default:gold_ingot", ""},
- {"default:gold_ingot", "lottblocks:dwarf_harp_strings", "default:gold_ingot"},
- {"default:gold_ingot", "default:gold_ingot", ""}
- }
- })
- local whistle = {
- {"birch", "D", "lottplants:birchwood"},
- {"mallorn", "Eb", "lottplants:mallornwood"},
- {"wood", "C", "default:wood"},
- {"jungle", "G", "default:junglewood"},
- {"pine", "Bb", "lottplants:pinewood"},
- {"lebethron", "A", "lottplants:lebethronwood"},
- {"alder", "F", "lottplants:alderwood"},
- }
- for _, row in ipairs(whistle) do
- local wood = row[1]
- local note = row[2]
- local craftwood = row[3]
- minetest.register_craftitem("lottblocks:whistle_" .. wood, {
- description = wood:gsub("^%l", string.upper) .. " (Note " .. note .. ") Whistle",
- inventory_image = "lottblocks_" .. wood .. "_whistle.png",
- on_use = function(itemstack, user)
- minetest.sound_play(note, {
- pos = user:getpos(),
- max_hear_distance = 7,
- gain = 1,
- })
- end,
- groups = {instrument=1}
- })
- minetest.register_craft({
- output = "lottblocks:whistle_" .. wood,
- recipe = {
- {craftwood, "", ""},
- {"", craftwood, ""},
- {"", "", "lottores:silver_ingot"}
- }
- })
- end
- --Gong
- minetest.register_node("lottblocks:gong", {
- description = "Gong",
- tiles = {"default_bronze_block.png"},
- drawtype = "nodebox",
- paramtype = "light",
- paramtype2 = "facedir",
- on_punch = function(pos)
- minetest.sound_play("gong", {
- pos=pos,
- max_hear_distance = 48,
- gain = 1,
- })
- end,
- node_box = {
- type = "fixed",
- fixed = {
- {-0.5, 0.4375, -0.0625, 0.5, 0.5, 0.0625}, -- NodeBox1
- {0.4375, -0.5, -0.0625, 0.5, 0.5, 0.0625}, -- NodeBox2
- {-0.5, -0.5, -0.0625, -0.4375, 0.5, 0.0625}, -- NodeBox3
- {-0.1875, -0.1875, -0.0625, 0.1875, 0.1875, 0}, -- NodeBox5
- {-0.375, -0.3125, 0, -0.1875, 0.3125, 0.0625}, -- NodeBox6
- {0.125, -0.3125, 0, 0.3125, 0.3125, 0.0625}, -- NodeBox7
- {-0.3125, 0.125, 0, 0.3125, 0.3125, 0.0625}, -- NodeBox8
- {-0.375, -0.3125, 0, 0.3125, -0.125, 0.0625}, -- NodeBox9
- {-0.3125, 0.25, 0, -0.25, 0.5, 0.0625}, -- NodeBox10
- {0.1875, 0.25, 0, 0.25, 0.5, 0.0625}, -- NodeBox11
- }
- },
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.0625, 0.5, 0.5, 0.125}, -- NodeBox1
- }
- },
- groups = {instrument=1, cracky=1}
- })
- minetest.register_craftitem("lottblocks:bronze_gong", {
- description = "Bronze Gong",
- inventory_image = "lottblocks_gong.png",
- })
- minetest.register_craft({
- output = "lottblocks:bronze_gong",
- recipe = {
- {"", "default:bronze_ingot", ""},
- {"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
- {"", "default:bronze_ingot", ""}
- }
- })
- minetest.register_craft({
- output = "lottblocks:gong",
- recipe = {
- {"default:stick", "default:stick", "default:stick"},
- {"default:stick", "lottblocks:bronze_gong", "default:stick"},
- {"default:stick", "", "default:stick"}
- }
- })
|