sorcery  oils.lua at tip

File data/oils.lua from the latest check-in


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 = { -- speed effects
		color = {150,176,190};
		style = 'sparkle';
		mix = {
			'farming:coffee_beans';
			'sorcery:extract_mint';
			'farming:salt';
		};
	};
	sanguine = { -- healing
		color = {243,66,66};
		style = 'sparkle';
		mix = {
			'sorcery:extract_strawberry';
			'sorcery:blood';
			'farming:beetroot';
		};
	};
	flame = {
		color = {243,57,49};
		style = 'sparkle';
		mix = {
			'sorcery:extract_chili';
			'farming:pepper_red';
			'sorcery:extract_chili';
			'sorcery:liquid_sap_acacia_bottle';
		};
	};
	stone = {
		color = { 68, 68, 68 };
		style = 'sparkle';
		mix = {
			'farming:pepper_ground';
			'farming:parsley';
			'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 = {
			'sorcery:liquid_sap_jungle_bottle';
			'farming:blackberry';
			'farming:soy_sauce';
		};
	};
	luscious = {
		color = {10,255,10};
		mix = {
			'farming:hemp_oil';
			'group:food_strawberry';
			'farming:cocoa_beans';
			'farming:caramel';
		};
	};
	luck = {
		color = {156,54,255};
		style = 'sparkle';
		mix = {
			'sorcery:extract_marram';
			'farming:hemp_leaf';
			'xdecor:honey';
			'farming:salt';
		};
	};
}