Baborium added
This commit is contained in:
parent
df1c1937ee
commit
8a54467667
40
nodes/baborium.lua
Normal file
40
nodes/baborium.lua
Normal 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,
|
||||||
|
})
|
||||||
|
|
BIN
textures/techage_baborium.png
Normal file
BIN
textures/techage_baborium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 301 B |
BIN
textures/techage_baborium_lump.png
Normal file
BIN
textures/techage_baborium_lump.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 729 B |
Loading…
Reference in New Issue
Block a user