Ores: Fix code/module
This commit is contained in:
parent
2de5cfe2a2
commit
d58afdee89
|
@ -1,4 +1,4 @@
|
||||||
shared = true
|
shared = true
|
||||||
power = true
|
power = true
|
||||||
storage = true
|
storage = true
|
||||||
oregen = true
|
ores = true
|
||||||
|
|
|
@ -1,46 +1,44 @@
|
||||||
minetest.register_node(microexpansion:incranium", {
|
-- [register] Incranium Ore
|
||||||
|
minetest.register_node("microexpansion:incranium", {
|
||||||
description = "Incranium Ore",
|
description = "Incranium Ore",
|
||||||
tiles = incranium_ore.png" },
|
tiles = { "incranium_ore.png" },
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
drop = microexpansion:incranium",
|
drop = "microexpansion:incranium",
|
||||||
groups = { cracky=3, stone=1 },
|
groups = { cracky=3, stone=1 },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- [ore] Register Incranium Ore
|
||||||
--Register Incranium Ore
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "blob",
|
ore_type = "blob",
|
||||||
ore = microexpansion:incranium",
|
ore = "microexpansion:incranium",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 4*4*4,
|
clust_scarcity = 4*4*4,
|
||||||
clust_num_ores = 4,
|
clust_num_ores = 4,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_min = -300,
|
y_min = -300,
|
||||||
y_max = -90,
|
y_max = -90,
|
||||||
--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", pronounced "Super-nat-et" is Latin for "float", this ore will
|
||||||
--Supernatet ore will be used to craft wings of flight
|
-- float up if there are no blocks above it, so be careful!
|
||||||
minetest.register_node(microexpansion:incranium", {
|
-- Supernatet ore will be used to craft wings of flight
|
||||||
|
minetest.register_node("microexpansion:supernatet", {
|
||||||
description = "Supernatant Ore",
|
description = "Supernatant Ore",
|
||||||
tiles = Supernatet_ore.png" },
|
tiles = { "supernatet_ore.png" },
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
drop = microexpansion:incranium",
|
drop = "microexpansion:supernatet",
|
||||||
groups = { cracky=3, stone=1 },
|
groups = { cracky=3, stone=1 },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- [ore] Register Supernatet Ore
|
||||||
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "blob",
|
ore_type = "blob",
|
||||||
ore = microexpansion:supernatet_ore",
|
ore = "microexpansion:supernatet_ore",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 4*4*4,
|
clust_scarcity = 4*4*4,
|
||||||
clust_num_ores = 4,
|
clust_num_ores = 4,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_min = -300,
|
y_min = -300,
|
||||||
y_max = -90,
|
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