diff --git a/README.md b/README.md index bb8f057..84c74d1 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Textures: CC BY-SA 3.0 ### Dependencies Required: default, doors, bucket, stairs, screwdriver, basic_materials, tubelib2, minecart, lcdlib, safer_lua Recommended: signs_bot, hyperloop, compost, techpack_stairway, autobahn -Optional: unified_inventory, wielded_light, unifieddyes, lua-mashal, lsqlite3 +Optional: unified_inventory, wielded_light, unifieddyes, lua-mashal, lsqlite3, moreores The mods `default`, `doors`, `bucket`, `stairs`, and `screwdriver` are part of Minetest Game. @@ -88,6 +88,6 @@ to 'lsqlite3' and 'lua-marshal', but there is no way back, so: - 2020-05-22 V0.08 * Support for 'lua-marshal' and 'lsqlite3' added - 2020-05-31 V0.09 * TA4 tubes upgraded, manuals updated - 2020-06-04 V0.10 * minor changes and bugfixes -- 2020-06-14 V0.11 * cart commands added for both controllers +- 2020-06-14 V0.11 * cart commands added for both controllers, support for moreores added diff --git a/furnace/recipes.lua b/furnace/recipes.lua index 72bac4b..b951621 100644 --- a/furnace/recipes.lua +++ b/furnace/recipes.lua @@ -25,7 +25,6 @@ techage.furnace.register_recipe({ time = 8, }) - if techage.modified_recipes_enabled then techage.furnace.register_recipe({ output = "default:bronze_ingot 4", @@ -148,3 +147,24 @@ techage.furnace.register_recipe({ }, time = 4, }) + +if minetest.global_exists("moreores") then + + if techage.modified_recipes_enabled then + minetest.clear_craft({output = "moreores:mithril_ingot"}) + minetest.clear_craft({output = "moreores:silver_ingot"}) + end + + techage.furnace.register_recipe({ + output = 'moreores:silver_ingot', + recipe = {'moreores:silver_lump'}, + time = 2, + }) + + techage.furnace.register_recipe({ + output = 'moreores:mithril_ingot', + recipe = {'moreores:mithril_lump'}, + time = 5, + }) + +end diff --git a/iron_age/recipes.lua b/iron_age/recipes.lua index f721204..03c9182 100644 --- a/iron_age/recipes.lua +++ b/iron_age/recipes.lua @@ -142,6 +142,9 @@ if techage.modified_recipes_enabled then minetest.clear_craft({output = "default:steel_ingot"}) minetest.clear_craft({output = "fire:flint_and_steel"}) minetest.clear_craft({output = "bucket:bucket_empty"}) + if minetest.global_exists("moreores") then + minetest.clear_craft({output = "moreores:silver_ingot"}) + end -- add again minetest.register_craft({ @@ -171,6 +174,22 @@ if techage.modified_recipes_enabled then time = 8, }) + if minetest.global_exists("moreores") then + techage.ironage_register_recipe({ + output = "moreores:silver_ingot 1", + recipe = {"moreores:silver_lump"}, + heat = 5, + time = 2, + }) + + techage.ironage_register_recipe({ + output = "moreores:tin_ingot 1", + recipe = {"moreores:tin_lump"}, + heat = 4, + time = 2, + }) + end + minetest.register_craft({ output = "fire:flint_and_steel", recipe = { diff --git a/items/baborium.lua b/items/baborium.lua index e29dec2..55176ea 100644 --- a/items/baborium.lua +++ b/items/baborium.lua @@ -43,9 +43,8 @@ minetest.register_ore({ y_max = -250, }) -minetest.register_craft({ - type = 'cooking', +techage.furnace.register_recipe({ output = 'techage:baborium_ingot', - recipe = 'techage:baborium_lump', - cooktime = 5, + recipe = {'techage:baborium_lump'}, + time = 3, }) diff --git a/manuals/manual_DE.md b/manuals/manual_DE.md index 96187c0..cd50c95 100644 --- a/manuals/manual_DE.md +++ b/manuals/manual_DE.md @@ -65,6 +65,7 @@ Usmium kommt nur als Nuggets vor und kann nur beim Waschen von Kies mit der TA2/ ### Baborium Baborium wird nur im Untertagebau gewonnen. Baborium findet man nur in Stein in einer Höhe zwischen -250 und -340 Meter. +Baborium kann nur im TA3 Industrieofen geschmolzen werden. [baborium|image] diff --git a/manuals/manual_EN.md b/manuals/manual_EN.md index dfa2069..f7848e3 100644 --- a/manuals/manual_EN.md +++ b/manuals/manual_EN.md @@ -65,6 +65,8 @@ Usmium only occurs as nuggets and can only be obtained by washing gravel with th ### Baborium Baborium is only extracted in underground mining. Baborium can only be found in stone at an altitude between -250 and -340 meters. +Baborium can only be melted in the TA3 Industrial Furnace. + [baborium|image] diff --git a/mod.conf b/mod.conf index fc97803..7f77039 100644 --- a/mod.conf +++ b/mod.conf @@ -1,4 +1,4 @@ name = techage depends = default,doors,tubelib2,basic_materials,bucket,stairs,screwdriver,minecart,lcdlib,safer_lua -optional_depends = unified_inventory,wielded_light,unifieddyes -description = Techage, go through 4 tech ages in search of wealth and power! \ No newline at end of file +optional_depends = unified_inventory,wielded_light,unifieddyes,moreores +description = Techage, go through 4 tech ages in search of wealth and power!