diff --git a/mapper.py b/mapper.py index fe912a9..eab8343 100644 --- a/mapper.py +++ b/mapper.py @@ -40,7 +40,23 @@ textures = { "default:tree": ("default_tree_top.png", "default_tree.png"), "default:water_source": ("default_water.png", "default_water.png"), "default:water_flowing": ("default_water.png", "default_water.png"), - "default:wood": ("default_wood.png", "default_wood.png") + "default:wood": ("default_wood.png", "default_wood.png"), + "fire:basic_flame": ("fire_basic_flame.png", "fire_basic_flame.png"), + "wool:white": ("wool_white.png", "wool_white.png"), + "wool:grey": ("wool_grey.png", "wool_grey.png"), + "wool:black": ("wool_black.png", "wool_black.png"), + "wool:red": ("wool_red.png", "wool_red.png"), + "wool:yellow": ("wool_yellow.png", "wool_yellow.png"), + "wool:green": ("wool_green.png", "wool_green.png"), + "wool:cyan": ("wool_cyan.png", "wool_cyan.png"), + "wool:blue": ("wool_blue.png", "wool_blue.png"), + "wool:magenta": ("wool_magenta.png", "wool_magenta.png"), + "wool:orange": ("wool_orange.png", "wool_orange.png"), + "wool:violet": ("wool_violet.png", "wool_violet.png"), + "wool:brown": ("wool_brown.png", "wool_brown.png"), + "wool:pink": ("wool_pink.png", "wool_pink.png"), + "wool:dark_grey": ("wool_dark_grey.png", "wool_dark_grey.png"), + "wool:dark_green": ("wool_dark_green.png", "wool_dark_green.png") } blocks = {} diff --git a/textures/fire_basic_flame.png b/textures/fire_basic_flame.png new file mode 100644 index 0000000..d6b89fb Binary files /dev/null and b/textures/fire_basic_flame.png differ diff --git a/textures/wool_black.png b/textures/wool_black.png new file mode 100644 index 0000000..f22e3bb Binary files /dev/null and b/textures/wool_black.png differ diff --git a/textures/wool_blue.png b/textures/wool_blue.png new file mode 100644 index 0000000..826d397 Binary files /dev/null and b/textures/wool_blue.png differ diff --git a/textures/wool_brown.png b/textures/wool_brown.png new file mode 100644 index 0000000..0dcee4b Binary files /dev/null and b/textures/wool_brown.png differ diff --git a/textures/wool_cyan.png b/textures/wool_cyan.png new file mode 100644 index 0000000..372ef45 Binary files /dev/null and b/textures/wool_cyan.png differ diff --git a/textures/wool_dark_green.png b/textures/wool_dark_green.png new file mode 100644 index 0000000..54d12f6 Binary files /dev/null and b/textures/wool_dark_green.png differ diff --git a/textures/wool_dark_grey.png b/textures/wool_dark_grey.png new file mode 100644 index 0000000..c15bec4 Binary files /dev/null and b/textures/wool_dark_grey.png differ diff --git a/textures/wool_green.png b/textures/wool_green.png new file mode 100644 index 0000000..d70fe2b Binary files /dev/null and b/textures/wool_green.png differ diff --git a/textures/wool_grey.png b/textures/wool_grey.png new file mode 100644 index 0000000..86e647c Binary files /dev/null and b/textures/wool_grey.png differ diff --git a/textures/wool_magenta.png b/textures/wool_magenta.png new file mode 100644 index 0000000..c4da6ae Binary files /dev/null and b/textures/wool_magenta.png differ diff --git a/textures/wool_orange.png b/textures/wool_orange.png new file mode 100644 index 0000000..2a76cf9 Binary files /dev/null and b/textures/wool_orange.png differ diff --git a/textures/wool_pink.png b/textures/wool_pink.png new file mode 100644 index 0000000..6d59544 Binary files /dev/null and b/textures/wool_pink.png differ diff --git a/textures/wool_red.png b/textures/wool_red.png new file mode 100644 index 0000000..ab4dd64 Binary files /dev/null and b/textures/wool_red.png differ diff --git a/textures/wool_violet.png b/textures/wool_violet.png new file mode 100644 index 0000000..653af58 Binary files /dev/null and b/textures/wool_violet.png differ diff --git a/textures/wool_white.png b/textures/wool_white.png new file mode 100644 index 0000000..f3371aa Binary files /dev/null and b/textures/wool_white.png differ diff --git a/textures/wool_yellow.png b/textures/wool_yellow.png new file mode 100644 index 0000000..5c5d72f Binary files /dev/null and b/textures/wool_yellow.png differ