2019-05-04 13:04:08 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
TechAge
|
|
|
|
=======
|
|
|
|
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
|
|
|
|
LGPLv2.1+
|
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
Gravel Sieve basis functions
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
minetest.register_node("techage:stone_with_baborium", {
|
|
|
|
description = "Baborium Ore",
|
|
|
|
tiles = {"default_stone.png^techage_baborium.png"},
|
|
|
|
groups = {cracky = 2},
|
|
|
|
drop = 'techage:baborium_lump',
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("techage:baborium_lump", {
|
|
|
|
description = "Baborium Lump",
|
|
|
|
inventory_image = "techage_baborium_lump.png",
|
|
|
|
})
|
|
|
|
|
2019-05-14 00:36:42 +03:00
|
|
|
minetest.register_craftitem("techage:baborium_ingot", {
|
|
|
|
description = "Baborium Ingot",
|
|
|
|
inventory_image = "techage_baborium_ingot.png",
|
|
|
|
})
|
|
|
|
|
2019-05-04 13:04:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "techage:stone_with_baborium",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8 * 8 * 8,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -340,
|
|
|
|
y_max = -260,
|
|
|
|
})
|
|
|
|
|