1234567891011121314151617181920212223242526272829303132333435 |
- ingots = {}
- local conf = dofile(minetest.get_modpath("ingots").."/conf.lua")
- dofile(minetest.get_modpath("ingots").."/api.lua")
- ingots.register_ingots("default:copper_ingot", "ingot_copper.png", true)
- ingots.register_ingots("default:tin_ingot", "ingot_tin.png", true)
- ingots.register_ingots("default:bronze_ingot", "ingot_bronze.png", true)
- ingots.register_ingots("default:steel_ingot", "ingot_steel.png", true)
- ingots.register_ingots("default:gold_ingot", "ingot_gold.png", true)
- ingots.register_ingots('morelights_vintage:brass_ingot', 'ingot_brass.png', true)
- ingots.register_ingots('epic:titanium_ingot', 'ingot_titanium.png', true)
|