Repair crafts for lonsdaleite, and adding silver sandstone drops.
Minor tweaks
master
TMcSquared 2022-07-27 00:59:31 -05:00
parent 30df39907d
commit ffb145d2a7
3 changed files with 51 additions and 5 deletions

View File

@ -3,12 +3,10 @@
This mod contains some of the rarest ores in real life, but not necesarily in game. This mod contains some of the rarest ores in real life, but not necesarily in game.
It will also contain armor for each of the ores* . It will also contain armor for each of the ores* .
*WIP at the moment. #The contained ores are:
#The currently contained ores are:
- Nevadaite - Nevadaite
- Cobaltominite - Cobaltominite
- Sideronatrite - Sideronatrite
- edoylerite - edoylerite
- trinium - trinium
- and lastly, lonsdaleite one of the hardest to obtain ores. - and lastly, lonsdaleite one of the hardest to obtain ores.

View File

@ -1,3 +1,3 @@
this mod is a addition of many rare ores(i real life, not necessarily in-game) this mod is a addition of many rare ores(in real life, not necessarily in-game)
the ores that are included at this moment are: the ores that are included at this moment are:
sideronatrite, cobaltominite, nevadaite, and edoylerite sideronatrite, cobaltominite, nevadaite, and edoylerite

View File

@ -107,6 +107,39 @@ minetest.register_craft({
{'', 'group:stick', ''}, {'', 'group:stick', ''},
} }
}) })
-- repair crafts for lonsdaleite --
minetest.register_craft({
output = 'exoticores:sword_lonsdaleite',
recipe = {
{ 'exoticores:lonsdaleite_shard','exoticores:sword_lonsdaleite','' },
{ '','','' },
{ '','','' }
}
})
minetest.register_craft({
output = 'exoticores:pick_lonsdaleite',
recipe = {
{ 'exoticores:lonsdaleite_shard','exoticores:pick_lonsdaleite','' },
{ '','','' },
{ '','','' }
}
})
minetest.register_craft({
output = 'exoticores:shovel_nevadaite',
recipe = {
{ 'exoticores:lonsdaleite_shard','exoticores:shovel_lonsdaleite','' },
{ '','','' },
{ '','','' }
}
})
minetest.register_craft({
output = 'exoticores:axe_lonsdaleite',
recipe = {
{ 'exoticores:lonsdaleite_shard','exoticores:axe_lonsdaleite','' },
{ '','','' },
{ '','','' }
}
})
--tools-- --tools--
minetest.register_tool("exoticores:pick_lonsdaleite", { minetest.register_tool("exoticores:pick_lonsdaleite", {
description = "lonsdaleite Pickaxe", description = "lonsdaleite Pickaxe",
@ -253,3 +286,18 @@ minetest.override_item("default:silver_sand", {
} }
}, },
}) })
minetest.override_item("default:silver_sandstone", {
drop = {
max_items = 1,
items = {
{
items = {'exoticores:lonsdaleite_dust', 'default:silver_sandstone'},
rarity = 7,
},
{
items = {'default:silver_sandstone'},
}
}
},
})