support for moreores added
This commit is contained in:
parent
0296ca5e84
commit
28e3fd4dfe
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 = {
|
||||
|
@ -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,
|
||||
})
|
||||
|
@ -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]
|
||||
|
||||
|
@ -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]
|
||||
|
||||
|
4
mod.conf
4
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!
|
||||
optional_depends = unified_inventory,wielded_light,unifieddyes,moreores
|
||||
description = Techage, go through 4 tech ages in search of wealth and power!
|
||||
|
Loading…
Reference in New Issue
Block a user