diff --git a/README.md b/README.md index 7e509a9..b6fc83e 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,10 @@ 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* . -*WIP at the moment. - -#The currently contained ores are: +#The contained ores are: - Nevadaite - Cobaltominite - Sideronatrite - edoylerite - trinium -- and lastly, lonsdaleite one of the hardest to obtain ores. \ No newline at end of file +- and lastly, lonsdaleite one of the hardest to obtain ores. diff --git a/description.txt b/description.txt index 1b49a0d..45f2472 100644 --- a/description.txt +++ b/description.txt @@ -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: sideronatrite, cobaltominite, nevadaite, and edoylerite diff --git a/lonsdaleite.lua b/lonsdaleite.lua index 68c78de..4c83f46 100644 --- a/lonsdaleite.lua +++ b/lonsdaleite.lua @@ -107,6 +107,39 @@ minetest.register_craft({ {'', '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-- minetest.register_tool("exoticores:pick_lonsdaleite", { 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'}, + } + } + }, +})