sorcery  oils.lua at [83426a2748]

File data/oils.lua artifact fb12becfb1 part of check-in 83426a2748


return {
	mystic = {
		color = {255,16,173};
		style = 'sparkle';
		-- recipes are described by two fields, the 'core', which consists of items which are included in the output, and 'mix', items with are incidental to the output. items listed in mix can leave leftovers in the crafting grid; core items will never leave leftovers (as it is assumed that they are being reused). the mortar and pestle is always implied. if core is empty, a bowl is automatically added to the recipe.
		core = {};
		mix = {
			'farming:sugar';
			'group:food_blueberries';
			'farming:raspberries';
			'sorcery:extract_wheat';
			'xdecor:honey';
		};
	};
	berry = {
		color = {151,67,183};
		core = {};
		mix = {
			'group:food_raspberries';
			'group:food_raspberries';
			'group:food_raspberries';
			'sorcery:extract_blueberry';
		};
	};
	mushroom = {
		color = {153,0,0};
		mix = {
			'sorcery:extract_barley';
			'group:mushroom';
			'group:mushroom';
		};
	};
	purifying = {
		color = {255,243,141};
		style = 'sparkle'
	};
	wind = {
		color = {150,176,190};
		style = 'sparkle';
		mix = {
			'sorcery:extract_barley';
			'sorcery:extract_rye';
			'farming:rice';
			'farming:rice';
			'default:papyrus';
			'farming:salt';
		};
	};
	sanguine = {
		color = {243,66,66};
		style = 'sparkle';
		mix = {
			'flowers:mushroom_red';
			'sorcery:extract_raspberry';
			'sorcery:blood';
			'farming:beetroot';
		};
	};
	flame = {
		color = {243,57,49};
		style = 'sparkle';
		mix = {
			'sorcery:extract_chili';
			'farming:beetroot';
			'sorcery:extract_chili';
		};
	};
	stone = {
		color = { 68, 68, 68 };
		style = 'sparkle';
		mix = {
			'farming:grapes';
			'farming:grapes';
			'farming:grapes';
			'sorcery:extract_cocoa';
			'sorcery:extract_cocoa';
			'sorcery:extract_oat';
		};
	};
	dawn = {
		color = {255,255,255};
		mix = {
			'xdecor:honey';
			'xdecor:honey';
			'xdecor:honey';
			'sorcery:extract_raspberry';
			'sorcery:extract_raspberry';
			'sorcery:extract_onion';
		};
	};
	bleak = {
		color = {155,78,56};
		mix = {
			'farming:salt';
			'sorcery:extract_raspberry';
			'sorcery:extract_raspberry';
			'sorcery:extract_onion';
			'farming:peas';
			'farming:peas';
			'farming:peas';
		};
	};
	luscious = {
		color = {10,255,10};
		mix = {
			'sorcery:extract_marram';
			'sorcery:extract_grape';
			'farming:cocoa_beans';
			'farming:sugar';
			'farming:sugar';
		};
	};
}