sorcery  Artifact [b08a2041a5]

Artifact b08a2041a574318aded2100ea8a9eb54c1d50d60d3e46ae30e23c83c2244b707:


return {
	Force = {
		color = {255,165,85}; flag = 'force';
		apply = function(potion, kind)
			local meta = potion:get_meta()
			meta:set_int('force', meta:get_int('force') + 1)
		end;
		describe = function(potion)
			return 'good', 'empowered', "The strength of this potion's effect has been alchemically amplified"
		end;
		infusion = 'sorcery:grease_thunder';
	};
	Longevity = {
		color = {255,85,216}; flag = 'duration';
		apply = function(potion, kind)
			local meta = potion:get_meta()
			meta:set_int('duration', meta:get_int('duration') + 1)
		end;
		describe = function(potion)
			return 'good', 'prolonged', 'The effects of this potion will last longer than normal'
		end;
		infusion = 'sorcery:grease_pine';
	};
}