sorcery  transmutation.lua at [ea6e475e44]

File data/transmutation.lua artifact c466f67e6e part of check-in ea6e475e44


-- transmutation is a mechanic whereby a metal can be sacrificed
-- at the enchanter by use of a transmutation wand to get another
-- metal unpredictably, possibly increasing in value, possibly
-- not.

return {
	gold = {
		[-2] = {'brass', 5};
		[-1] = {'silver', 3}; -- one chance in three of silver - undesirable
		[1] = {'lithium', 2};
		[2] = {'cobalt', 3};
		[3] = {'iridium', 50};
		fallback = 1;
	};
}