2016-05-21 21:48:20 +08:00
|
|
|
_dye_colors = {
|
|
|
|
'black', 'blue', 'brown', 'cyan', 'dark_green', 'dark_grey',
|
|
|
|
'green', 'grey', 'magenta', 'orange', 'pink', 'red', 'violet',
|
|
|
|
'white', 'yellow',
|
|
|
|
}
|
|
|
|
|
|
|
|
_dye_color_map = {
|
2016-06-10 12:01:08 +08:00
|
|
|
name: 'color_' +
|
|
|
|
name.replace('grey', 'gray').replace('pink', 'light_red')
|
2016-05-21 21:48:20 +08:00
|
|
|
for name in _dye_colors
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
textures = {
|
|
|
|
'dye_' + name: (color, 'dye', 'dye')
|
|
|
|
for name, color in _dye_color_map.items()
|
|
|
|
}
|