forked from nalc/homedecor_modpack
		
	Added optional recipes for items that use wool to also use cotton
instead. Choose one or the other in any given recipe (you can't mix the two). No, it isn't a Kosher thing. ;-)
This commit is contained in:
		| @@ -1,6 +1,10 @@ | ||||
| Changelog | ||||
| --------- | ||||
|  | ||||
| 2012-08-01: Added optional recipes for items that use wool to also use cotton | ||||
| instead.  Choose one or the other in any given recipe (you can't mix the two). | ||||
| No, it isn't a Kosher thing. ;-) | ||||
|  | ||||
| 2012-07-28: Noticed I technically had left/right textures swapped on a few  | ||||
| blocks.  The textures were drawn to counteract this, without my realizing I was  | ||||
| doing just that. :-) Fixed.  Also replaced all "tile_images" references with  | ||||
|   | ||||
							
								
								
									
										50
									
								
								crafts.lua
									
									
									
									
									
								
							
							
						
						
									
										50
									
								
								crafts.lua
									
									
									
									
									
								
							| @@ -632,10 +632,8 @@ if ( minetest.get_modpath("mesecons") ) ~= nil then | ||||
| end | ||||
|  | ||||
|  | ||||
| -- ====================================================== | ||||
| -- Recipes that require materials from Jordach's Wool mod | ||||
|  | ||||
| if ( minetest.get_modpath("wool") ) ~= nil then | ||||
| -- =========================================================== | ||||
| -- Recipes that require materials from wool (cotton alternate) | ||||
|  | ||||
| minetest.register_craft( { | ||||
| 	type = 'shapeless', | ||||
| @@ -648,13 +646,25 @@ if ( minetest.get_modpath("wool") ) ~= nil then | ||||
| 	}, | ||||
| }) | ||||
|  | ||||
| -- cotton version: | ||||
|  | ||||
| minetest.register_craft( { | ||||
| 	type = 'shapeless', | ||||
|         output = 'homedecor:rug_small 8', | ||||
|        	recipe = { | ||||
|        		'cotton:red', | ||||
| 		'cotton:yellow', | ||||
| 		'cotton:blue', | ||||
| 		'cotton:black' | ||||
| 	}, | ||||
| }) | ||||
|  | ||||
| minetest.register_craft({ | ||||
|        	type = 'fuel', | ||||
|        	recipe = 'homedecor:rug_small', | ||||
|        	burntime = 30, | ||||
| }) | ||||
|  | ||||
|  | ||||
| minetest.register_craft( { | ||||
| 	type = 'shapeless', | ||||
|         output = 'homedecor:rug_large 2', | ||||
| @@ -670,8 +680,6 @@ if ( minetest.get_modpath("wool") ) ~= nil then | ||||
|        	burntime = 30, | ||||
| }) | ||||
|  | ||||
| end | ||||
|  | ||||
| minetest.register_craft( { | ||||
| 	type = 'shapeless', | ||||
|         output = 'homedecor:shutter_mahogany', | ||||
| @@ -752,11 +760,8 @@ minetest.register_craft({ | ||||
|        	burntime = 30, | ||||
| }) | ||||
|  | ||||
| -- ================================================================ | ||||
| -- Speakers require both Jordache's wool and Jeija's mesecons mods. | ||||
|  | ||||
| if ( minetest.get_modpath("wool") ) ~= nil then | ||||
| 	if ( minetest.get_modpath("mesecons") ) ~= nil then | ||||
| -- ===================================================================== | ||||
| -- Speakers require both Jeija's mesecons mod abnd either wool or cotton | ||||
|  | ||||
| minetest.register_craft( { | ||||
|         output = 'homedecor:speaker', | ||||
| @@ -774,8 +779,25 @@ if ( minetest.get_modpath("wool") ) ~= nil then | ||||
| 		{ 'default:wood', 'mesecons:noteblock', 'default:wood' }, | ||||
| 	}, | ||||
| }) | ||||
| 	end | ||||
| end | ||||
|  | ||||
| -- cotton version | ||||
|  | ||||
| minetest.register_craft( { | ||||
|         output = 'homedecor:speaker', | ||||
|       		recipe = { | ||||
| 		{ 'default:wood', 'cotton:black', 'default:wood' }, | ||||
| 		{ 'default:wood', 'mesecons:noteblock', 'default:wood' }, | ||||
| 		{ 'default:wood', 'cotton:black', 'default:wood' }, | ||||
| 	}, | ||||
| }) | ||||
|  | ||||
| minetest.register_craft( { | ||||
|         output = 'homedecor:speaker_small', | ||||
|       		recipe = { | ||||
| 		{ 'default:wood', 'cotton:black', 'default:wood' }, | ||||
| 		{ 'default:wood', 'mesecons:noteblock', 'default:wood' }, | ||||
| 	}, | ||||
| }) | ||||
|  | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user