starlit  metals.lua at [e926621707]

File mods/starlit-material/metals.lua artifact 3454f586c9 part of check-in e926621707


local lib = starlit.mod.lib
local M = starlit.mod.material

starlit.world.material.metal.meld {
	steel = {
		name = 'steel';
		composition = starlit.type.fab {
			element = {iron = 2.0, carbon = 1.0};
		};
		density = 1.0;
		desc = "steel is a widely used alloy of iron and carbon";
		color = lib.color(.4,.4,.4);
	};
}