Update 'mods/starnodes/ores.lua'
This commit is contained in:
parent
bf1d8604f8
commit
fde3c41801
|
@ -1,20 +1,20 @@
|
||||||
cores={"green","blue","yellow"}
|
cores={"green","blue","yellow","purple"}
|
||||||
for n,cor in ipairs(cores) do
|
for n,cor in ipairs(cores) do
|
||||||
minetest.register_node("starsnodes:stone_with_adegan_"..cor, {
|
minetest.register_node("starsnodes:stone_with_kyber_"..cor, {
|
||||||
description = "Adegan "..cor.." Crystal in Stone",
|
description = "Kyber Crystal in Stone",
|
||||||
tiles = {"default_stone.png^starsnodes_adegan"..cor..".png"},
|
tiles = {"default_stone.png^starsnodes_kyber"..cor..".png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=18},
|
groups = {cracky=18},
|
||||||
drop = "starsnodes:adegan"..cor,
|
drop = "starsnodes:kyber"..cor,
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
minetest.register_craftitem("starsnodes:adegan"..cor, {
|
minetest.register_craftitem("starsnodes:kyber"..cor, {
|
||||||
description = "Adegan "..cor.." Crystal",
|
description = "Kyber Crystal",
|
||||||
inventory_image = "starsnodes_adegan"..cor.."crystal.png",
|
inventory_image = "starsnodes_kyber"..cor.."crystal.png",
|
||||||
})
|
})
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "scatter",
|
ore_type = "scatter",
|
||||||
ore = "starsnodes:stone_with_adegan_"..cor,
|
ore = "starsnodes:stone_with_kyber_"..cor,
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 5000,
|
clust_scarcity = 5000,
|
||||||
clust_num_ores = 4,
|
clust_num_ores = 4,
|
||||||
|
@ -24,7 +24,7 @@ for n,cor in ipairs(cores) do
|
||||||
})
|
})
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "scatter",
|
ore_type = "scatter",
|
||||||
ore = "starsnodes:stone_with_adegan_"..cor,
|
ore = "starsnodes:stone_with_kyber_"..cor,
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 10000,
|
clust_scarcity = 10000,
|
||||||
clust_num_ores = 3,
|
clust_num_ores = 3,
|
||||||
|
@ -33,7 +33,7 @@ for n,cor in ipairs(cores) do
|
||||||
height_max = -53,
|
height_max = -53,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
minetest.register_craftitem("starsnodes:adeganred", {
|
minetest.register_craftitem("starsnodes:kyberred", {
|
||||||
description = "Adegan Red Crystal",
|
description = "Bleeding Kyber Crystal",
|
||||||
inventory_image = "starsnodes_adeganredcrystal.png",
|
inventory_image = "starsnodes_kyberredcrystal.png",
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue