2017-02-27 02:52:36 +01:00
|
|
|
-- ores/init.lua
|
|
|
|
|
|
|
|
local me = microexpansion
|
|
|
|
|
2017-02-26 19:54:15 +01:00
|
|
|
-- [register] Incranium Ore
|
2017-02-27 02:52:36 +01:00
|
|
|
me.register_node("incranium", {
|
2017-07-25 19:47:25 +02:00
|
|
|
description = "Incranium Ore",
|
|
|
|
tiles = { "incranium" },
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = { cracky=3, stone=1 },
|
|
|
|
type = "ore",
|
|
|
|
oredef = {
|
|
|
|
{
|
|
|
|
ore_type = "blob",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 4*4*4,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_min = -300,
|
|
|
|
y_max = -90,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
disabled = true,
|
2017-02-26 18:13:30 +01:00
|
|
|
})
|
|
|
|
|
2023-10-20 18:31:56 +02:00
|
|
|
me.register_item("quartz_crystal", {
|
|
|
|
description = "Quartz Crystal",
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
me.register_node("quartz", {
|
|
|
|
description = "Quartz Ore",
|
|
|
|
tiles = { "default_stone.png^microexpansion_ore_quartz.png" },
|
2017-07-25 19:47:25 +02:00
|
|
|
is_ground_content = true,
|
|
|
|
type = "ore",
|
|
|
|
groups = { cracky=3, stone=1 },
|
2023-10-20 18:31:56 +02:00
|
|
|
drop = "microexpansion:quartz_crystal",
|
2017-07-25 19:47:25 +02:00
|
|
|
oredef = {
|
|
|
|
ore_type = "blob",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 4*4*4,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
2023-10-20 18:31:56 +02:00
|
|
|
y_min = -3000,
|
|
|
|
y_max = -50,
|
|
|
|
}
|
2017-02-26 18:23:06 +01:00
|
|
|
})
|