Go to file
Joachim Stolberg caed2456e1 Minetest 0.5.0 bugfix 2018-07-04 18:59:46 +02:00
locale v0.02 recipes added,translations improved 2018-06-09 18:08:39 +02:00
sounds first checkin 2018-05-12 20:33:34 +02:00
textures Alloy meridium with tools added 2018-05-28 23:23:39 +02:00
LICENSE.txt first checkin 2018-05-12 20:33:34 +02:00
README.md Minetest 0.5.0 bugfix 2018-07-01 10:00:52 +02:00
charcoalpile.lua Minetest 0.5.0 bugfix 2018-07-04 18:59:46 +02:00
coalburner.lua Minetest 0.5.0 bugfix 2018-07-01 10:00:52 +02:00
depends.txt Alloy meridium with tools added 2018-05-28 23:23:39 +02:00
description.txt almost first checkin 2018-05-29 23:43:02 +02:00
init.lua Alloy meridium with tools added 2018-05-28 23:23:39 +02:00
intllib.lua soweit getestet, funzt alles 2018-05-19 23:33:48 +02:00
intllib.sh v0.02 recipes added,translations improved 2018-06-09 18:08:39 +02:00
lighter.lua some changes on groups attribute (cracky to crumbly) 2018-05-30 22:36:21 +02:00
meltingpod.png almost first checkin 2018-05-29 23:43:02 +02:00
meltingpot.lua v0.02 recipes added,translations improved 2018-06-09 18:08:39 +02:00
meridium.lua Alloy meridium with tools added 2018-05-28 23:23:39 +02:00
mod.conf first checkin 2018-05-12 20:33:34 +02:00
recipes.lua recipe bug fixed 2018-06-25 22:09:11 +02:00
screenshot.png almost first checkin 2018-05-29 23:43:02 +02:00
settingtypes.txt first checkin 2018-05-12 20:33:34 +02:00
textures32.zip soweit getestet, funzt alles 2018-05-19 23:33:48 +02:00
tools.lua Alloy meridium with tools added 2018-05-28 23:23:39 +02:00

README.md

Iron Age V0.03

Melting Pot for ingot/alloy smelting with coal burner and charcoal production.

Browse on: GitHub

Download: GitHub

With this mod new blocks, ingots and alloys can be made.
The mod includes a Melting Pot (to complement the furnace). The pot must be heated with a coal burner.
The charcoal must first be produced with the help of a charcoal burner (charcoal pile).

Iron Age

The Melting Pot inventory has a smelting guide and two construction tabs.

Iron Age

The mod includes per default only a few example recipes but can be extended by means of a recipe registration API.

Obsidian example:

ironage.register_recipe({
	output = "default:obsidian", 
	recipe = {"default:cobble"}, 
	heat = 5,
	time = 4,
})

'output' and 'recipe' are similar to the standard crafting recipes. All ironage recipes are 'shapeless'.
'recipe' is a list with up to four items.
'heat' is the needed burner heat, which corresponds to the burner height/number of charcoal nodes (2..32)
'time' is the smelting time in seconds (2..n)

If the mod 'wielded_light' is installed, recipes for Meridium and Meridium tools are added. Meridium is a glowing metal alloy to produce glowing tools.

If the mod 'unified_inventory' is installed, the recipes are also available via the unified_inventory crafting guide.

Dependencies

default, fire, farming
Optional: intllib, wielded_light, unified_inventory

License

Copyright (C) 2018 Joachim Stolberg
Code: Licensed under the GNU LGPL version 2.1 or later. See LICENSE.txt and http://www.gnu.org/licenses/lgpl-2.1.txt
Textures: CC0

History

  • 2018-05-29 V0.01 * First version
  • 2018-06-09 V0.02 * Further recipes added
  • 2018-07-01 V0.03 * Minetest 0.5.0 bugfixes