2017-02-26 19:54:15 +01:00
|
|
|
-- [register] Incranium Ore
|
|
|
|
minetest.register_node("microexpansion:incranium", {
|
2017-02-26 18:13:30 +01:00
|
|
|
description = "Incranium Ore",
|
2017-02-26 19:54:15 +01:00
|
|
|
tiles = { "incranium_ore.png" },
|
2017-02-26 18:13:30 +01:00
|
|
|
is_ground_content = true,
|
2017-02-26 19:54:15 +01:00
|
|
|
drop = "microexpansion:incranium",
|
2017-02-26 18:13:30 +01:00
|
|
|
groups = { cracky=3, stone=1 },
|
|
|
|
})
|
|
|
|
|
2017-02-26 19:54:15 +01:00
|
|
|
-- [ore] Register Incranium Ore
|
2017-02-26 18:13:30 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
2017-02-26 19:54:15 +01:00
|
|
|
ore = "microexpansion:incranium",
|
2017-02-26 18:13:30 +01:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 4*4*4,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -300,
|
|
|
|
y_max = -90,
|
|
|
|
})
|
2017-02-26 18:23:06 +01:00
|
|
|
|
|
|
|
|
2017-02-26 19:54:15 +01:00
|
|
|
-- "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", {
|
2017-02-26 18:23:06 +01:00
|
|
|
description = "Supernatant Ore",
|
2017-02-26 19:54:15 +01:00
|
|
|
tiles = { "supernatet_ore.png" },
|
2017-02-26 18:23:06 +01:00
|
|
|
is_ground_content = true,
|
2017-02-26 19:54:15 +01:00
|
|
|
drop = "microexpansion:supernatet",
|
2017-02-26 18:23:06 +01:00
|
|
|
groups = { cracky=3, stone=1 },
|
|
|
|
})
|
|
|
|
|
2017-02-26 19:54:15 +01:00
|
|
|
-- [ore] Register Supernatet Ore
|
2017-02-26 18:23:06 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
2017-02-26 19:54:15 +01:00
|
|
|
ore = "microexpansion:supernatet_ore",
|
2017-02-26 18:23:06 +01:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 4*4*4,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -300,
|
|
|
|
y_max = -90,
|
|
|
|
})
|