mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-05 06:53:45 +01:00
45 lines
1.1 KiB
Lua
45 lines
1.1 KiB
Lua
-- [register] Incranium Ore
|
|
minetest.register_node("microexpansion:incranium", {
|
|
description = "Incranium Ore",
|
|
tiles = { "incranium_ore.png" },
|
|
is_ground_content = true,
|
|
drop = "microexpansion:incranium",
|
|
groups = { cracky=3, stone=1 },
|
|
})
|
|
|
|
-- [ore] Register Incranium Ore
|
|
minetest.register_ore({
|
|
ore_type = "blob",
|
|
ore = "microexpansion:incranium",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 4*4*4,
|
|
clust_num_ores = 4,
|
|
clust_size = 3,
|
|
y_min = -300,
|
|
y_max = -90,
|
|
})
|
|
|
|
|
|
-- "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:supernatet", {
|
|
description = "Supernatant Ore",
|
|
tiles = { "supernatet_ore.png" },
|
|
is_ground_content = true,
|
|
drop = "microexpansion:supernatet",
|
|
groups = { cracky=3, stone=1 },
|
|
})
|
|
|
|
-- [ore] Register Supernatet Ore
|
|
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,
|
|
})
|