Baborium added

This commit is contained in:
Joachim Stolberg 2019-05-04 12:04:08 +02:00
parent df1c1937ee
commit 8a54467667
3 changed files with 40 additions and 0 deletions

40
nodes/baborium.lua Normal file
View File

@ -0,0 +1,40 @@
--[[
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",
})
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,
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 B