diff --git a/homedecor/crafts.lua b/homedecor/crafts.lua index bff41b0..9494dfa 100644 --- a/homedecor/crafts.lua +++ b/homedecor/crafts.lua @@ -2132,7 +2132,12 @@ local color_pairings = { { "grey", "white", "1" }, { "dark_grey", "white", "2" }, { "black", "white", "3" }, - { "black", "dark_grey", "4" } + { "black", "dark_grey", "4" }, + { "red", "white", "red" }, + { "green", "white", "green" }, + { "blue", "white", "blue" }, + { "yellow", "white", "yellow" }, + { "brown", "white", "tan" } } for i in ipairs(color_pairings) do diff --git a/homedecor/misc-bathroom.lua b/homedecor/misc-bathroom.lua index b3c1f4d..4b5737b 100644 --- a/homedecor/misc-bathroom.lua +++ b/homedecor/misc-bathroom.lua @@ -5,6 +5,11 @@ local bathroom_tile_colors = { { "2", "white/dark grey" }, { "3", "white/black" }, { "4", "black/dark grey" }, + { "red", "white/red" }, + { "green", "white/green" }, + { "blue", "white/blue" }, + { "yellow", "white/yellow" }, + { "tan", "white/tan" }, } for i in ipairs(bathroom_tile_colors) do diff --git a/homedecor/textures/homedecor_bathroom_tiles_blue.png b/homedecor/textures/homedecor_bathroom_tiles_blue.png new file mode 100644 index 0000000..bf9847c Binary files /dev/null and b/homedecor/textures/homedecor_bathroom_tiles_blue.png differ diff --git a/homedecor/textures/homedecor_bathroom_tiles_green.png b/homedecor/textures/homedecor_bathroom_tiles_green.png new file mode 100644 index 0000000..bd002d6 Binary files /dev/null and b/homedecor/textures/homedecor_bathroom_tiles_green.png differ diff --git a/homedecor/textures/homedecor_bathroom_tiles_red.png b/homedecor/textures/homedecor_bathroom_tiles_red.png new file mode 100644 index 0000000..4a80960 Binary files /dev/null and b/homedecor/textures/homedecor_bathroom_tiles_red.png differ diff --git a/homedecor/textures/homedecor_bathroom_tiles_tan.png b/homedecor/textures/homedecor_bathroom_tiles_tan.png new file mode 100644 index 0000000..283d5ab Binary files /dev/null and b/homedecor/textures/homedecor_bathroom_tiles_tan.png differ diff --git a/homedecor/textures/homedecor_bathroom_tiles_yellow.png b/homedecor/textures/homedecor_bathroom_tiles_yellow.png new file mode 100644 index 0000000..393d6f4 Binary files /dev/null and b/homedecor/textures/homedecor_bathroom_tiles_yellow.png differ