mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-22 23:23:52 +01:00
Ores: Added Supernatet Ore
This commit is contained in:
parent
6c912106fb
commit
e8dbb44db4
@ -19,3 +19,28 @@ minetest.register_ore({
|
|||||||
y_max = -90,
|
y_max = -90,
|
||||||
--Oregen is very work in progress, and can & will be changed without prior warning
|
--Oregen is very work in progress, and can & will be changed without prior warning
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
--"Supernatet", pronounced "Super-nat-et" is Latin for "float", this ore will float up if there are no blocks above it, so be careful!
|
||||||
|
--Supernatet ore will be used to craft wings of flight
|
||||||
|
minetest.register_node(microexpansion:incranium", {
|
||||||
|
description = "Supernatant Ore",
|
||||||
|
tiles = Supernatet_ore.png" },
|
||||||
|
is_ground_content = true,
|
||||||
|
drop = microexpansion:incranium",
|
||||||
|
groups = { cracky=3, stone=1 },
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "blob",
|
||||||
|
ore = microexpansion:supernatet_ore",
|
||||||
|
wherein = "default:stone",
|
||||||
|
clust_scarcity = 4*4*4,
|
||||||
|
clust_num_ores = 4,
|
||||||
|
clust_size = 3,
|
||||||
|
y_min = -300,
|
||||||
|
y_max = -90,
|
||||||
|
--Oregen is very work in progress, and can & will be changed without prior warning
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user