mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-10-30 23:25:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local dyes = {
 | |
| 	{"white",      "White"},
 | |
| 	{"grey",       "Grey"},
 | |
| 	{"black",      "Black"},
 | |
| 	{"red",        "Red"},
 | |
| 	{"yellow",     "Yellow"},
 | |
| 	{"green",      "Green"},
 | |
| 	{"cyan",       "Cyan"},
 | |
| 	{"blue",       "Blue"},
 | |
| 	{"magenta",    "Magenta"},
 | |
| 	{"orange",     "Orange"},
 | |
| 	{"violet",     "Violet"},
 | |
| 	{"brown",      "Brown"},
 | |
| 	{"pink",       "Pink"},
 | |
| 	{"dark_grey",  "Dark Grey"},
 | |
| 	{"dark_green", "Dark Green"},
 | |
| }
 | |
| 
 | |
| for i = 1, #dyes do
 | |
| 	local name, desc = unpack(dyes[i])
 | |
| 
 | |
| 	minetest.register_node("wool:" .. name, {
 | |
| 		description = desc .. " Wool",
 | |
| 		tiles = {"wool_" .. name .. ".png"},
 | |
| 		is_ground_content = false,
 | |
| 		groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3,
 | |
| 				flammable = 3, wool = 1},
 | |
| 		sounds = default.node_sound_defaults(),
 | |
| 	})
 | |
| 
 | |
| 	minetest.register_craft{
 | |
| 		type = "shapeless",
 | |
| 		output = "wool:" .. name,
 | |
| 		recipe = {"group:dye,color_" .. name, "group:wool"},
 | |
| 	}
 | |
| end
 | |
| 
 | |
| -- Legacy
 | |
| -- Backwards compatibility with jordach's 16-color wool mod
 | |
| minetest.register_alias("wool:dark_blue", "wool:blue")
 | |
| minetest.register_alias("wool:gold", "wool:yellow")
 |