commit 9801d5e27420e83e71ee2fa81b01153eda3c2187 Author: DonBatman Date: Mon Aug 24 20:14:35 2015 -0700 First upload diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..2717bef --- /dev/null +++ b/depends.txt @@ -0,0 +1,2 @@ +default +dye diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..924e566 --- /dev/null +++ b/init.lua @@ -0,0 +1,14 @@ +mycorners = {} +--dofile(minetest.get_modpath("mycorners_light").."/cornertool.lua") +dofile(minetest.get_modpath("mycorners_light").."/nodes.lua") +dofile(minetest.get_modpath("mycorners_light").."/machine.lua") +dofile(minetest.get_modpath("mycorners_light").."/register.lua") +--dofile(minetest.get_modpath("mycorners").."/corners.lua") + + + + + + + + diff --git a/machine.lua b/machine.lua new file mode 100644 index 0000000..945f0ca --- /dev/null +++ b/machine.lua @@ -0,0 +1,330 @@ +local material = {} +local matr = {} +local matr2 = {} +local shape = {} +local shape2 = {} +local make_ok = 0 +local anzahl = {} +local anzahlz = {} + +local dye_colors = { + {"dye:black","black"}, + {"dye:blue","blue"}, + {"dye:brown","brown"}, +-- {"dye:cyan","cyan"}, +-- {"dye:dark_green","dark_green"}, +-- {"dye:dark_grey","dark_grey"}, + {"dye:green","green"}, +-- {"dye:grey","grey"}, +-- {"dye:magenta","magenta"}, +-- {"dye:orange","orange"}, +-- {"dye:pink","pink"}, + {"dye:red","red"}, +-- {"dye:violet","violet"}, + {"dye:white","white"}, +-- {"dye:yellow","yellow"}, + } +local nodes_of_corners = { + {"default:clay","default_clay"}, + {"default:coalblock","default_coal_block"}, + {"default:cobble","default_cobble"}, + {"default:desert_stone","default_desert_stone"}, + {"default:junglewood","default_junglewood"}, + {"default:pine_wood","default_pine_wood"}, + {"default:acacia_wood","default_acacia_wood"}, + {"default:sandstone","default_sandstone"}, + {"default:stone","default_stone"}, + {"default:wood","default_wood"}, + } +local corner_items = { + {"_wood_black"}, + {"_wood_blue"}, + {"_wood_brown"}, +-- {"_wood_cyan"}, +-- {"_wood_dark_green"}, +-- {"_wood_dark_grey"}, + {"_wood_green"}, +-- {"_wood_grey"}, +-- {"_wood_magenta"}, +-- {"_wood_orange"}, +-- {"_wood_pink"}, + {"_wood_red"}, +-- {"_wood_violet"}, + {"_wood_white"}, +-- {"_wood_yellow"}, + + {"_stone_black"}, + {"_stone_blue"}, + {"_stone_brown"}, +-- {"_stone_cyan"}, +-- {"_stone_dark_green"}, +-- {"_stone_dark_grey"}, + {"_stone_green"}, +-- {"_stone_grey"}, +-- {"_stone_magenta"}, +-- {"_stone_orange"}, +-- {"_stone_pink"}, + {"_stone_red"}, +-- {"_stone_violet"}, + {"_stone_white"}, +-- {"_stone_yellow"}, + + {"_stonebrick_black"}, + {"_stonebrick_blue"}, + {"_stonebrick_brown"}, +-- {"_stonebrick_cyan"}, +-- {"_stonebrick_dark_green"}, +-- {"_stonebrick_dark_grey"}, + {"_stonebrick_green"}, +-- {"_stonebrick_grey"}, +-- {"_stonebrick_magenta"}, +-- {"_stonebrick_orange"}, +-- {"_stonebrick_pink"}, + {"_stonebrick_red"}, +-- {"_stonebrick_violet"}, + {"_stonebrick_white"}, +-- {"_stonebrick_yellow"}, + } + + +minetest.register_node("mycorners_light:machine_corner", { + description = "Corner Machine", + tiles = { + "mycorners_machine_top.png", + "mycorners_machine_bottom.png", + "mycorners_machine_sider.png", + "mycorners_machine_sidel.png", + "mycorners_machine_back.png", + "mycorners_machine_front.png" + }, + drawtype = "nodebox", + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky=2}, + node_box = { + type = "fixed", + fixed = { + {0.3125, -0.5, -0.5, 0.5, -0.1875, -0.3125}, + {0.3125, -0.5, 0.3125, 0.5, -0.1875, 0.5}, + {-0.5, -0.5, 0.3125, -0.3125, -0.1875, 0.5}, + {-0.5, -0.5, -0.5, -0.3125, -0.1875, -0.3125}, + {-0.5, -0.1875, -0.5, 0.5, -0.0625, 0.5}, + {-0.0625, -0.0625, -0.25, 0, 0.0625, -0.1875}, + {-0.1875, -0.4375, -0.3125, 0.125, -0.1875, -0.125}, + {-0.125, -0.4375, -0.375, 0.0625, -0.1875, -0.0625}, + {-0.25, -0.0625, -0.1875, 0.1875, 0.125, 0.0625}, + {-0.4375, -0.0625, 0.125, 0.4375, 0.0625, 0.25}, + {-0.4375, -0.0625, -0, 0.4375, 0.1875, 0.125}, + {-0.1875, -0.25, -0.375, 0.125, -0.1875, -0.0625}, + } + }, + + after_place_node = function(pos, placer) + local meta = minetest.env:get_meta(pos); + meta:set_string("owner", (placer:get_player_name() or "")); + meta:set_string("infotext", "Corner Machine (owned by " .. (placer:get_player_name() or "") .. ")"); + end, + +can_dig = function(pos,player) + local meta = minetest.env:get_meta(pos); + local inv = meta:get_inventory() + if not inv:is_empty("matblock") then + return false + elseif not inv:is_empty("dye") then + return false + elseif not inv:is_empty("res") then + return false + end + return true +end, + +on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + meta:set_string("formspec", "invsize[10,11;]".. + "background[-0.15,-0.25;10.40,11.75;mycorners_background.png]".. + "label[0,0;Corner Machine]".. + "label[1.5,0.5;Material:]".. + "list[current_name;matblock;1.5,1;1,1;]".. + "label[3,0.5;Dye:]".. + "list[current_name;dye;3,1;1,1;]".. + "button[4.5,1;1,1;make;Make]".. + "label[6,0.5;Output:]".. + "list[current_name;res;6,1;1,1;]".. + "label[1,2;Material can only be wood, stone or stone brick]".. +-- "label[7.5,0.5;dye colors]".. + "label[7.5,1;dye colors supported]".. + "label[8,1.5;black]".. + "label[8,2;blue]".. + "label[8,2.5;brown]".. + "label[8,3;green]".. + "label[8,3.5;red]".. + "label[8,4;white]".. + + "label[1.5,3;Material]".. + "list[current_name;mat;1.5,3.5;1,1; ]".. + "list[current_name;corner1;1.5,4.5;1,1; ]".. + "list[current_name;corner2;2.5,3.5;1,1; ]".. + "button[4.5,3.5;1,1;make2;Make]".. + "label[6,3;Output:]".. + "list[current_name;res2;6,3.5;1,1;]".. + "label[1,5.5;Add a block to the top left and corner items in the other 2]".. + + "list[current_player;main;1,7;8,4;]") + meta:set_string("infotext", "Corner Machine") + local inv = meta:get_inventory() + inv:set_size("matblock", 1) + inv:set_size("dye", 1) + inv:set_size("res", 1) + inv:set_size("mat", 1) + inv:set_size("corner1", 1) + inv:set_size("corner2", 1) + inv:set_size("res2", 1) +end, + +on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + +if fields["make"] +then + + make_ok = 0 + anzahl = 4 + shape = "mycorners_light:corner_" + if inv:is_empty("matblock") or + inv:is_empty("dye") then + return + end + + + local ingotstack1 = inv:get_stack("matblock", 1) + local ingotstack2 = inv:get_stack("dye", 1) + local resstack = inv:get_stack("res", 1) +---------------------------------------------------------------------------------- +--register nodes +---------------------------------------------------------------------------------- + + for i in ipairs (dye_colors) do + local dyecol = dye_colors[i][1] + local color = dye_colors[i][2] + + if ingotstack1:get_name()=="default:wood" and + ingotstack2:get_name()==dyecol then + material = "wood_"..color + make_ok = 1 + end + + if ingotstack1:get_name()=="default:stone" and + ingotstack2:get_name()==dyecol then + material = "stone_"..color + make_ok = 1 + end + + if ingotstack1:get_name()=="default:stonebrick" and + ingotstack2:get_name()==dyecol then + material = "stonebrick_"..color + make_ok = 1 + end + end + +---------------------------------------------------------------------- + if make_ok == 1 then + local give = {} + for i = 0, anzahl-1 do + give[i+1]=inv:add_item("res",shape..material) + end + ingotstack1:take_item() + inv:set_stack("matblock",1,ingotstack1) + ingotstack2:take_item() + inv:set_stack("dye",1,ingotstack2) + end +end +------------------------------------------------------------------------ +------------------------------------------------------------------------ +if fields["make2"] +then + + make_ok = 0 + anzahlz = 1 + shape2 = "mycorners_light:cornerblock_" + if inv:is_empty("mat") or + inv:is_empty("corner1") or + inv:is_empty("corner2") then + return + end + + + local ingotstack4 = inv:get_stack("mat", 1) + local ingotstack5 = inv:get_stack("corner1", 1) + local ingotstack6 = inv:get_stack("corner2", 1) + local resstack2 = inv:get_stack("res2", 1) + +---------------------------------------------------------------------------------- +--register nodes +---------------------------------------------------------------------------------- + + for i in ipairs (nodes_of_corners) do + local nodeitem = nodes_of_corners[i][1] + local nodedesc = nodes_of_corners[i][2] + + for i in ipairs (corner_items) do + local ctype = corner_items[i][1] + + + if ingotstack4:get_name()== nodeitem and + ingotstack5:get_name()=="mycorners_light:corner"..ctype and + ingotstack6:get_name()=="mycorners_light:corner"..ctype then + matr = nodedesc..ctype + make_ok = 1 + end + end + end + + + +---------------------------------------------------------------------- +---------------------------------------------------------------------- + + if make_ok == 1 then + local give = {} + for i = 0, anzahlz-1 do + give[i+1]=inv:add_item("res2",shape2..matr) + end + ingotstack4:take_item() + inv:set_stack("mat",1,ingotstack4) + ingotstack5:take_item() + inv:set_stack("corner1",1,ingotstack5) + ingotstack6:take_item() + inv:set_stack("corner2",1,ingotstack6) + end + +end + +end + +}) + + +--Craft + +minetest.register_craft({ + output = 'mycorners_light:machine_corner', + recipe = { + {'', 'default:steel_ingot', 'default:wood'}, + {'default:steelblock', 'default:steelblock', ''}, + {'default:steelblock', "default:steelblock", ''}, + }, +}) + + + + + + + + + + + + + diff --git a/nodes.lua b/nodes.lua new file mode 100644 index 0000000..3d7c5f8 --- /dev/null +++ b/nodes.lua @@ -0,0 +1,94 @@ +function mycorners.register_all(material, descr, image) + +local cornerblock = { + +{"wood_black", "corners_wood_black.png", "Black Wood"}, +{"wood_blue", "corners_wood_blue.png", "Blue Wood"}, +{"wood_brown", "corners_wood_brown.png", "Brown Wood"}, +--{"wood_cyan", "corners_wood_cyan.png", "Cyan Wood"}, +--{"wood_dark_green", "corners_wood_dark_green.png", "Dark Green Wood"}, +--{"wood_dark_grey", "corners_wood_dark_grey.png", "Dark Grey Wood"}, +{"wood_green", "corners_wood_green.png", "Green Wood"}, +--{"wood_grey", "corners_wood_grey.png", "Grey Wood"}, +--{"wood_magenta", "corners_wood_magenta.png", "Magenta Wood"}, +--{"wood_orange", "corners_wood_orange.png", "Orange Wood"}, +--{"wood_pink", "corners_wood_pink.png", "Pink Wood"}, +{"wood_red", "corners_wood_red.png", "Red Wood"}, +--{"wood_violet", "corners_wood_violet.png", "Violet Wood"}, +{"wood_white", "corners_wood_white.png", "White Wood"}, +--{"wood_yellow", "corners_wood_yellow.png", "Yellow Wood"}, +{"stone_black", "corners_stone_black.png", "Black Stone"}, +{"stone_blue", "corners_stone_blue.png", "Blue Brick"}, +{"stone_brown", "corners_stone_brown.png", "Brown Stone"}, +--{"stone_cyan", "corners_stone_cyan.png", "Cyan Stone"}, +--{"stone_dark_green", "corners_stone_dark_green.png", "Dark Green Stone"}, +--{"stone_dark_grey", "corners_stone_dark_grey.png", "Dark Grey Stone"}, +{"stone_green", "corners_stone_green.png", "Green Stone"}, +--{"stone_grey", "corners_stone_grey.png", "Grey Stone"}, +--{"stone_magenta", "corners_stone_magenta.png", "Magenta Stone"}, +--{"stone_orange", "corners_stone_orange.png", "Orange Stone"}, +--{"stone_pink", "corners_stone_pink.png", "Pink Stone"}, +{"stone_red", "corners_stone_red.png", "Red Stone"}, +--{"stone_violet", "corners_stone_violet.png", "Violet Stone"}, +{"stone_white", "corners_stone_white.png", "White Stone"}, +--{"stone_yellow", "corners_stone_yellow.png", "Yellow Stone"}, +{"stonebrick_black", "corners_stonebrick_black.png", "Black Stone Brick"}, +{"stonebrick_blue", "corners_stonebrick_blue.png", "Blue Stone Brick"}, +{"stonebrick_brown", "corners_stonebrick_brown.png", "Brown Stone Brick"}, +--{"stonebrick_cyan", "corners_stonebrick_cyan.png", "Cyan Stone Brick"}, +--{"stonebrick_dark_green", "corners_stonebrick_dark_green.png", "Dark Green Stone Brick"}, +--{"stonebrick_dark_grey", "corners_stonebrick_dark_grey.png", "Dark Grey Stone Brick"}, +{"stonebrick_green", "corners_stonebrick_green.png", "Green Stone Brick"}, +--{"stonebrick_grey", "corners_stonebrick_grey.png", "Grey Stone Brick"}, +--{"stonebrick_magenta", "corners_stonebrick_magenta.png", "Magenta Stone Brick"}, +--{"stonebrick_orange", "corners_stonebrick_orange.png", "Orange Stone Brick"}, +--{"stonebrick_pink", "corners_stonebrick_pink.png", "Pink Stone Brick"}, +{"stonebrick_red", "corners_stonebrick_red.png", "Red Stone Brick"}, +--{"stonebrick_violet", "corners_stonebrick_violet.png", "Violet Stone Brick"}, +{"stonebrick_white", "corners_stonebrick_white.png", "White Stone Brick"}, +--{"stonebrick_yellow", "corners_stonebrick_yellow.png", "Yellow Stone Brick"}, + +} +for i in ipairs(cornerblock) do + local mat = cornerblock[i][1] + local img = cornerblock[i][2] + local desc = cornerblock[i][3] + + +--Makes the craft item corner +minetest.register_craftitem("mycorners_light:corner_"..mat, { + description = desc.." Corner", + inventory_image = img, + groups = {not_in_creative_inventory=1}, + +}) + +local other_images = { + {"top","bottom"}, + } +for i in ipairs (other_images) do + local top = other_images[i][1] + local bottom = other_images[i][2] + +minetest.register_node("mycorners_light:cornerblock_"..material.."_"..mat, { + description = descr.."_Corner"..desc, + drawtype = "normal", + paramtype = "light", + tiles = { + image.."^corners_"..mat.."_"..top..".png", + image.."^corners_"..mat.."_"..bottom..".png", + image, + image.."^"..img.."^[transformFX", + image, + image.."^"..img, + }, + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky = 2, not_in_creative_inventory=1}, + +}) +end +end +end + + diff --git a/register.lua b/register.lua new file mode 100644 index 0000000..b51df13 --- /dev/null +++ b/register.lua @@ -0,0 +1,108 @@ + +mycorners.register_all(--material, description, image, groups, craft item + "default_acacia_wood", + "Acacia Wood", + "default_acacia_wood.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:acacia_wood", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_clay", + "Clay", + "default_clay.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:clay", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_cobble", + "Cobble", + "default_cobble.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:cobble", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_stone", + "Stone", + "default_stone.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:stone", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_desert_stone", + "Desert Stone", + "default_desert_stone.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:desert_stone", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, item + "default_wood", + "Wood", + "default_wood.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:wood", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_pine_wood", + "Pine Wood", + "default_pine_wood.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:pine_wood", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_desert_cobble", + "Desert Cobble", + "default_desert_cobble.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:desert_cobble", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_junglewood", + "Jungle Wood", + "default_junglewood.png", + "{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}", + "default:junglewood", + "normal" + ) + +mycorners.register_all(--material, description, image, groups, craft item + "default_sandstone", + "Sandstone", + "default_sandstone.png", + "{cracky = 1, oddly_breakable_by_hand = 1, not_in_creative_inventory=1}", + "default:sandstone", + "normal" + ) + + + + + + + + + + + + + + + + + + diff --git a/textures/corners_stone_black.png b/textures/corners_stone_black.png new file mode 100644 index 0000000..4d3c61f Binary files /dev/null and b/textures/corners_stone_black.png differ diff --git a/textures/corners_stone_black_bottom.png b/textures/corners_stone_black_bottom.png new file mode 100644 index 0000000..66ea0a4 Binary files /dev/null and b/textures/corners_stone_black_bottom.png differ diff --git a/textures/corners_stone_black_top.png b/textures/corners_stone_black_top.png new file mode 100644 index 0000000..4df1d06 Binary files /dev/null and b/textures/corners_stone_black_top.png differ diff --git a/textures/corners_stone_blue.png b/textures/corners_stone_blue.png new file mode 100644 index 0000000..5d0d69e Binary files /dev/null and b/textures/corners_stone_blue.png differ diff --git a/textures/corners_stone_blue_bottom.png b/textures/corners_stone_blue_bottom.png new file mode 100644 index 0000000..d19223e Binary files /dev/null and b/textures/corners_stone_blue_bottom.png differ diff --git a/textures/corners_stone_blue_top.png b/textures/corners_stone_blue_top.png new file mode 100644 index 0000000..2c96a5b Binary files /dev/null and b/textures/corners_stone_blue_top.png differ diff --git a/textures/corners_stone_brown.png b/textures/corners_stone_brown.png new file mode 100644 index 0000000..afe11fe Binary files /dev/null and b/textures/corners_stone_brown.png differ diff --git a/textures/corners_stone_brown_bottom.png b/textures/corners_stone_brown_bottom.png new file mode 100644 index 0000000..49782bb Binary files /dev/null and b/textures/corners_stone_brown_bottom.png differ diff --git a/textures/corners_stone_brown_top.png b/textures/corners_stone_brown_top.png new file mode 100644 index 0000000..75962db Binary files /dev/null and b/textures/corners_stone_brown_top.png differ diff --git a/textures/corners_stone_cyan.png b/textures/corners_stone_cyan.png new file mode 100644 index 0000000..484971b Binary files /dev/null and b/textures/corners_stone_cyan.png differ diff --git a/textures/corners_stone_cyan_bottom.png b/textures/corners_stone_cyan_bottom.png new file mode 100644 index 0000000..9fa2006 Binary files /dev/null and b/textures/corners_stone_cyan_bottom.png differ diff --git a/textures/corners_stone_cyan_top.png b/textures/corners_stone_cyan_top.png new file mode 100644 index 0000000..20b3897 Binary files /dev/null and b/textures/corners_stone_cyan_top.png differ diff --git a/textures/corners_stone_dark_green.png b/textures/corners_stone_dark_green.png new file mode 100644 index 0000000..b98afd9 Binary files /dev/null and b/textures/corners_stone_dark_green.png differ diff --git a/textures/corners_stone_dark_green_bottom.png b/textures/corners_stone_dark_green_bottom.png new file mode 100644 index 0000000..8e1b792 Binary files /dev/null and b/textures/corners_stone_dark_green_bottom.png differ diff --git a/textures/corners_stone_dark_green_top.png b/textures/corners_stone_dark_green_top.png new file mode 100644 index 0000000..5aafaa0 Binary files /dev/null and b/textures/corners_stone_dark_green_top.png differ diff --git a/textures/corners_stone_dark_grey.png b/textures/corners_stone_dark_grey.png new file mode 100644 index 0000000..7f8dbc5 Binary files /dev/null and b/textures/corners_stone_dark_grey.png differ diff --git a/textures/corners_stone_dark_grey_bottom.png b/textures/corners_stone_dark_grey_bottom.png new file mode 100644 index 0000000..bf433c7 Binary files /dev/null and b/textures/corners_stone_dark_grey_bottom.png differ diff --git a/textures/corners_stone_dark_grey_top.png b/textures/corners_stone_dark_grey_top.png new file mode 100644 index 0000000..9ee3fdf Binary files /dev/null and b/textures/corners_stone_dark_grey_top.png differ diff --git a/textures/corners_stone_green.png b/textures/corners_stone_green.png new file mode 100644 index 0000000..7c4174d Binary files /dev/null and b/textures/corners_stone_green.png differ diff --git a/textures/corners_stone_green_bottom.png b/textures/corners_stone_green_bottom.png new file mode 100644 index 0000000..9253978 Binary files /dev/null and b/textures/corners_stone_green_bottom.png differ diff --git a/textures/corners_stone_green_top.png b/textures/corners_stone_green_top.png new file mode 100644 index 0000000..1ea4f84 Binary files /dev/null and b/textures/corners_stone_green_top.png differ diff --git a/textures/corners_stone_grey.png b/textures/corners_stone_grey.png new file mode 100644 index 0000000..7eba118 Binary files /dev/null and b/textures/corners_stone_grey.png differ diff --git a/textures/corners_stone_grey_bottom.png b/textures/corners_stone_grey_bottom.png new file mode 100644 index 0000000..572012c Binary files /dev/null and b/textures/corners_stone_grey_bottom.png differ diff --git a/textures/corners_stone_grey_top.png b/textures/corners_stone_grey_top.png new file mode 100644 index 0000000..8af0577 Binary files /dev/null and b/textures/corners_stone_grey_top.png differ diff --git a/textures/corners_stone_magenta.png b/textures/corners_stone_magenta.png new file mode 100644 index 0000000..b2003a3 Binary files /dev/null and b/textures/corners_stone_magenta.png differ diff --git a/textures/corners_stone_magenta_bottom.png b/textures/corners_stone_magenta_bottom.png new file mode 100644 index 0000000..0dec2da Binary files /dev/null and b/textures/corners_stone_magenta_bottom.png differ diff --git a/textures/corners_stone_magenta_top.png b/textures/corners_stone_magenta_top.png new file mode 100644 index 0000000..659a363 Binary files /dev/null and b/textures/corners_stone_magenta_top.png differ diff --git a/textures/corners_stone_orange.png b/textures/corners_stone_orange.png new file mode 100644 index 0000000..176cdc3 Binary files /dev/null and b/textures/corners_stone_orange.png differ diff --git a/textures/corners_stone_orange_bottom.png b/textures/corners_stone_orange_bottom.png new file mode 100644 index 0000000..36cf6e5 Binary files /dev/null and b/textures/corners_stone_orange_bottom.png differ diff --git a/textures/corners_stone_orange_top.png b/textures/corners_stone_orange_top.png new file mode 100644 index 0000000..9989e5a Binary files /dev/null and b/textures/corners_stone_orange_top.png differ diff --git a/textures/corners_stone_pink.png b/textures/corners_stone_pink.png new file mode 100644 index 0000000..2f66fd9 Binary files /dev/null and b/textures/corners_stone_pink.png differ diff --git a/textures/corners_stone_pink_bottom.png b/textures/corners_stone_pink_bottom.png new file mode 100644 index 0000000..b6d607a Binary files /dev/null and b/textures/corners_stone_pink_bottom.png differ diff --git a/textures/corners_stone_pink_top.png b/textures/corners_stone_pink_top.png new file mode 100644 index 0000000..bb5cd8f Binary files /dev/null and b/textures/corners_stone_pink_top.png differ diff --git a/textures/corners_stone_red.png b/textures/corners_stone_red.png new file mode 100644 index 0000000..a30f3e8 Binary files /dev/null and b/textures/corners_stone_red.png differ diff --git a/textures/corners_stone_red_bottom.png b/textures/corners_stone_red_bottom.png new file mode 100644 index 0000000..31cbcf2 Binary files /dev/null and b/textures/corners_stone_red_bottom.png differ diff --git a/textures/corners_stone_red_top.png b/textures/corners_stone_red_top.png new file mode 100644 index 0000000..256cfcf Binary files /dev/null and b/textures/corners_stone_red_top.png differ diff --git a/textures/corners_stone_violet.png b/textures/corners_stone_violet.png new file mode 100644 index 0000000..a662e14 Binary files /dev/null and b/textures/corners_stone_violet.png differ diff --git a/textures/corners_stone_violet_bottom.png b/textures/corners_stone_violet_bottom.png new file mode 100644 index 0000000..bf2df4f Binary files /dev/null and b/textures/corners_stone_violet_bottom.png differ diff --git a/textures/corners_stone_violet_top.png b/textures/corners_stone_violet_top.png new file mode 100644 index 0000000..340ec98 Binary files /dev/null and b/textures/corners_stone_violet_top.png differ diff --git a/textures/corners_stone_white.png b/textures/corners_stone_white.png new file mode 100644 index 0000000..c469f96 Binary files /dev/null and b/textures/corners_stone_white.png differ diff --git a/textures/corners_stone_white_bottom.png b/textures/corners_stone_white_bottom.png new file mode 100644 index 0000000..3a6f147 Binary files /dev/null and b/textures/corners_stone_white_bottom.png differ diff --git a/textures/corners_stone_white_top.png b/textures/corners_stone_white_top.png new file mode 100644 index 0000000..fa80099 Binary files /dev/null and b/textures/corners_stone_white_top.png differ diff --git a/textures/corners_stone_yellow.png b/textures/corners_stone_yellow.png new file mode 100644 index 0000000..d416f9e Binary files /dev/null and b/textures/corners_stone_yellow.png differ diff --git a/textures/corners_stone_yellow_bottom.png b/textures/corners_stone_yellow_bottom.png new file mode 100644 index 0000000..0fbebd2 Binary files /dev/null and b/textures/corners_stone_yellow_bottom.png differ diff --git a/textures/corners_stone_yellow_top.png b/textures/corners_stone_yellow_top.png new file mode 100644 index 0000000..830e0c2 Binary files /dev/null and b/textures/corners_stone_yellow_top.png differ diff --git a/textures/corners_stonebrick_black.png b/textures/corners_stonebrick_black.png new file mode 100644 index 0000000..688bdf7 Binary files /dev/null and b/textures/corners_stonebrick_black.png differ diff --git a/textures/corners_stonebrick_black_bottom.png b/textures/corners_stonebrick_black_bottom.png new file mode 100644 index 0000000..4cfac92 Binary files /dev/null and b/textures/corners_stonebrick_black_bottom.png differ diff --git a/textures/corners_stonebrick_black_top.png b/textures/corners_stonebrick_black_top.png new file mode 100644 index 0000000..53b37a0 Binary files /dev/null and b/textures/corners_stonebrick_black_top.png differ diff --git a/textures/corners_stonebrick_blue.png b/textures/corners_stonebrick_blue.png new file mode 100644 index 0000000..20ed07a Binary files /dev/null and b/textures/corners_stonebrick_blue.png differ diff --git a/textures/corners_stonebrick_blue_bottom.png b/textures/corners_stonebrick_blue_bottom.png new file mode 100644 index 0000000..598a2cf Binary files /dev/null and b/textures/corners_stonebrick_blue_bottom.png differ diff --git a/textures/corners_stonebrick_blue_top.png b/textures/corners_stonebrick_blue_top.png new file mode 100644 index 0000000..273ad28 Binary files /dev/null and b/textures/corners_stonebrick_blue_top.png differ diff --git a/textures/corners_stonebrick_brown.png b/textures/corners_stonebrick_brown.png new file mode 100644 index 0000000..b370a1a Binary files /dev/null and b/textures/corners_stonebrick_brown.png differ diff --git a/textures/corners_stonebrick_brown_bottom.png b/textures/corners_stonebrick_brown_bottom.png new file mode 100644 index 0000000..dbdfcf9 Binary files /dev/null and b/textures/corners_stonebrick_brown_bottom.png differ diff --git a/textures/corners_stonebrick_brown_top.png b/textures/corners_stonebrick_brown_top.png new file mode 100644 index 0000000..2039585 Binary files /dev/null and b/textures/corners_stonebrick_brown_top.png differ diff --git a/textures/corners_stonebrick_cyan.png b/textures/corners_stonebrick_cyan.png new file mode 100644 index 0000000..04b41ca Binary files /dev/null and b/textures/corners_stonebrick_cyan.png differ diff --git a/textures/corners_stonebrick_cyan_bottom.png b/textures/corners_stonebrick_cyan_bottom.png new file mode 100644 index 0000000..a52261f Binary files /dev/null and b/textures/corners_stonebrick_cyan_bottom.png differ diff --git a/textures/corners_stonebrick_cyan_top.png b/textures/corners_stonebrick_cyan_top.png new file mode 100644 index 0000000..b68bfaf Binary files /dev/null and b/textures/corners_stonebrick_cyan_top.png differ diff --git a/textures/corners_stonebrick_dark_green.png b/textures/corners_stonebrick_dark_green.png new file mode 100644 index 0000000..541b10c Binary files /dev/null and b/textures/corners_stonebrick_dark_green.png differ diff --git a/textures/corners_stonebrick_dark_green_bottom.png b/textures/corners_stonebrick_dark_green_bottom.png new file mode 100644 index 0000000..d4ef83f Binary files /dev/null and b/textures/corners_stonebrick_dark_green_bottom.png differ diff --git a/textures/corners_stonebrick_dark_green_top.png b/textures/corners_stonebrick_dark_green_top.png new file mode 100644 index 0000000..074fe06 Binary files /dev/null and b/textures/corners_stonebrick_dark_green_top.png differ diff --git a/textures/corners_stonebrick_dark_grey.png b/textures/corners_stonebrick_dark_grey.png new file mode 100644 index 0000000..bf30825 Binary files /dev/null and b/textures/corners_stonebrick_dark_grey.png differ diff --git a/textures/corners_stonebrick_dark_grey_bottom.png b/textures/corners_stonebrick_dark_grey_bottom.png new file mode 100644 index 0000000..3bf476a Binary files /dev/null and b/textures/corners_stonebrick_dark_grey_bottom.png differ diff --git a/textures/corners_stonebrick_dark_grey_top.png b/textures/corners_stonebrick_dark_grey_top.png new file mode 100644 index 0000000..967df9c Binary files /dev/null and b/textures/corners_stonebrick_dark_grey_top.png differ diff --git a/textures/corners_stonebrick_green.png b/textures/corners_stonebrick_green.png new file mode 100644 index 0000000..f06cb84 Binary files /dev/null and b/textures/corners_stonebrick_green.png differ diff --git a/textures/corners_stonebrick_green_bottom.png b/textures/corners_stonebrick_green_bottom.png new file mode 100644 index 0000000..6daa33e Binary files /dev/null and b/textures/corners_stonebrick_green_bottom.png differ diff --git a/textures/corners_stonebrick_green_top.png b/textures/corners_stonebrick_green_top.png new file mode 100644 index 0000000..96acf39 Binary files /dev/null and b/textures/corners_stonebrick_green_top.png differ diff --git a/textures/corners_stonebrick_grey.png b/textures/corners_stonebrick_grey.png new file mode 100644 index 0000000..8e536e4 Binary files /dev/null and b/textures/corners_stonebrick_grey.png differ diff --git a/textures/corners_stonebrick_grey_bottom.png b/textures/corners_stonebrick_grey_bottom.png new file mode 100644 index 0000000..5857035 Binary files /dev/null and b/textures/corners_stonebrick_grey_bottom.png differ diff --git a/textures/corners_stonebrick_grey_top.png b/textures/corners_stonebrick_grey_top.png new file mode 100644 index 0000000..d539283 Binary files /dev/null and b/textures/corners_stonebrick_grey_top.png differ diff --git a/textures/corners_stonebrick_magenta.png b/textures/corners_stonebrick_magenta.png new file mode 100644 index 0000000..6657126 Binary files /dev/null and b/textures/corners_stonebrick_magenta.png differ diff --git a/textures/corners_stonebrick_magenta_bottom.png b/textures/corners_stonebrick_magenta_bottom.png new file mode 100644 index 0000000..b3b3f53 Binary files /dev/null and b/textures/corners_stonebrick_magenta_bottom.png differ diff --git a/textures/corners_stonebrick_magenta_top.png b/textures/corners_stonebrick_magenta_top.png new file mode 100644 index 0000000..7fcac0d Binary files /dev/null and b/textures/corners_stonebrick_magenta_top.png differ diff --git a/textures/corners_stonebrick_orange.png b/textures/corners_stonebrick_orange.png new file mode 100644 index 0000000..7df4b24 Binary files /dev/null and b/textures/corners_stonebrick_orange.png differ diff --git a/textures/corners_stonebrick_orange_bottom.png b/textures/corners_stonebrick_orange_bottom.png new file mode 100644 index 0000000..2391386 Binary files /dev/null and b/textures/corners_stonebrick_orange_bottom.png differ diff --git a/textures/corners_stonebrick_orange_top.png b/textures/corners_stonebrick_orange_top.png new file mode 100644 index 0000000..e00293f Binary files /dev/null and b/textures/corners_stonebrick_orange_top.png differ diff --git a/textures/corners_stonebrick_pink.png b/textures/corners_stonebrick_pink.png new file mode 100644 index 0000000..dd52359 Binary files /dev/null and b/textures/corners_stonebrick_pink.png differ diff --git a/textures/corners_stonebrick_pink_bottom.png b/textures/corners_stonebrick_pink_bottom.png new file mode 100644 index 0000000..a9825dc Binary files /dev/null and b/textures/corners_stonebrick_pink_bottom.png differ diff --git a/textures/corners_stonebrick_pink_top.png b/textures/corners_stonebrick_pink_top.png new file mode 100644 index 0000000..2bf3bcd Binary files /dev/null and b/textures/corners_stonebrick_pink_top.png differ diff --git a/textures/corners_stonebrick_red.png b/textures/corners_stonebrick_red.png new file mode 100644 index 0000000..f71b471 Binary files /dev/null and b/textures/corners_stonebrick_red.png differ diff --git a/textures/corners_stonebrick_red_bottom.png b/textures/corners_stonebrick_red_bottom.png new file mode 100644 index 0000000..d4e3c6e Binary files /dev/null and b/textures/corners_stonebrick_red_bottom.png differ diff --git a/textures/corners_stonebrick_red_top.png b/textures/corners_stonebrick_red_top.png new file mode 100644 index 0000000..6960431 Binary files /dev/null and b/textures/corners_stonebrick_red_top.png differ diff --git a/textures/corners_stonebrick_violet.png b/textures/corners_stonebrick_violet.png new file mode 100644 index 0000000..5cb405f Binary files /dev/null and b/textures/corners_stonebrick_violet.png differ diff --git a/textures/corners_stonebrick_violet_bottom.png b/textures/corners_stonebrick_violet_bottom.png new file mode 100644 index 0000000..d0ffcad Binary files /dev/null and b/textures/corners_stonebrick_violet_bottom.png differ diff --git a/textures/corners_stonebrick_violet_top.png b/textures/corners_stonebrick_violet_top.png new file mode 100644 index 0000000..fd3b27a Binary files /dev/null and b/textures/corners_stonebrick_violet_top.png differ diff --git a/textures/corners_stonebrick_white.png b/textures/corners_stonebrick_white.png new file mode 100644 index 0000000..9394a95 Binary files /dev/null and b/textures/corners_stonebrick_white.png differ diff --git a/textures/corners_stonebrick_white_bottom.png b/textures/corners_stonebrick_white_bottom.png new file mode 100644 index 0000000..000590d Binary files /dev/null and b/textures/corners_stonebrick_white_bottom.png differ diff --git a/textures/corners_stonebrick_white_top.png b/textures/corners_stonebrick_white_top.png new file mode 100644 index 0000000..a9cbc1c Binary files /dev/null and b/textures/corners_stonebrick_white_top.png differ diff --git a/textures/corners_stonebrick_yellow.png b/textures/corners_stonebrick_yellow.png new file mode 100644 index 0000000..472bd2d Binary files /dev/null and b/textures/corners_stonebrick_yellow.png differ diff --git a/textures/corners_stonebrick_yellow_bottom.png b/textures/corners_stonebrick_yellow_bottom.png new file mode 100644 index 0000000..4a97018 Binary files /dev/null and b/textures/corners_stonebrick_yellow_bottom.png differ diff --git a/textures/corners_stonebrick_yellow_top.png b/textures/corners_stonebrick_yellow_top.png new file mode 100644 index 0000000..8acc4ea Binary files /dev/null and b/textures/corners_stonebrick_yellow_top.png differ diff --git a/textures/corners_wood_black.png b/textures/corners_wood_black.png new file mode 100644 index 0000000..3ead3bd Binary files /dev/null and b/textures/corners_wood_black.png differ diff --git a/textures/corners_wood_black_bottom.png b/textures/corners_wood_black_bottom.png new file mode 100644 index 0000000..4445c46 Binary files /dev/null and b/textures/corners_wood_black_bottom.png differ diff --git a/textures/corners_wood_black_top.png b/textures/corners_wood_black_top.png new file mode 100644 index 0000000..f2756e1 Binary files /dev/null and b/textures/corners_wood_black_top.png differ diff --git a/textures/corners_wood_blue.png b/textures/corners_wood_blue.png new file mode 100644 index 0000000..6fd43be Binary files /dev/null and b/textures/corners_wood_blue.png differ diff --git a/textures/corners_wood_blue_bottom.png b/textures/corners_wood_blue_bottom.png new file mode 100644 index 0000000..d80919c Binary files /dev/null and b/textures/corners_wood_blue_bottom.png differ diff --git a/textures/corners_wood_blue_top.png b/textures/corners_wood_blue_top.png new file mode 100644 index 0000000..e336278 Binary files /dev/null and b/textures/corners_wood_blue_top.png differ diff --git a/textures/corners_wood_brown.png b/textures/corners_wood_brown.png new file mode 100644 index 0000000..cd2b92f Binary files /dev/null and b/textures/corners_wood_brown.png differ diff --git a/textures/corners_wood_brown_bottom.png b/textures/corners_wood_brown_bottom.png new file mode 100644 index 0000000..cbf660c Binary files /dev/null and b/textures/corners_wood_brown_bottom.png differ diff --git a/textures/corners_wood_brown_top.png b/textures/corners_wood_brown_top.png new file mode 100644 index 0000000..502d165 Binary files /dev/null and b/textures/corners_wood_brown_top.png differ diff --git a/textures/corners_wood_cyan.png b/textures/corners_wood_cyan.png new file mode 100644 index 0000000..3f0c82f Binary files /dev/null and b/textures/corners_wood_cyan.png differ diff --git a/textures/corners_wood_cyan_bottom.png b/textures/corners_wood_cyan_bottom.png new file mode 100644 index 0000000..5de44d9 Binary files /dev/null and b/textures/corners_wood_cyan_bottom.png differ diff --git a/textures/corners_wood_cyan_top.png b/textures/corners_wood_cyan_top.png new file mode 100644 index 0000000..9adb1ab Binary files /dev/null and b/textures/corners_wood_cyan_top.png differ diff --git a/textures/corners_wood_dark_green.png b/textures/corners_wood_dark_green.png new file mode 100644 index 0000000..6c8e439 Binary files /dev/null and b/textures/corners_wood_dark_green.png differ diff --git a/textures/corners_wood_dark_green_bottom.png b/textures/corners_wood_dark_green_bottom.png new file mode 100644 index 0000000..45c0a20 Binary files /dev/null and b/textures/corners_wood_dark_green_bottom.png differ diff --git a/textures/corners_wood_dark_green_top.png b/textures/corners_wood_dark_green_top.png new file mode 100644 index 0000000..a57e1f3 Binary files /dev/null and b/textures/corners_wood_dark_green_top.png differ diff --git a/textures/corners_wood_dark_grey.png b/textures/corners_wood_dark_grey.png new file mode 100644 index 0000000..e739bac Binary files /dev/null and b/textures/corners_wood_dark_grey.png differ diff --git a/textures/corners_wood_dark_grey_bottom.png b/textures/corners_wood_dark_grey_bottom.png new file mode 100644 index 0000000..31fdd63 Binary files /dev/null and b/textures/corners_wood_dark_grey_bottom.png differ diff --git a/textures/corners_wood_dark_grey_top.png b/textures/corners_wood_dark_grey_top.png new file mode 100644 index 0000000..1b2fd81 Binary files /dev/null and b/textures/corners_wood_dark_grey_top.png differ diff --git a/textures/corners_wood_green.png b/textures/corners_wood_green.png new file mode 100644 index 0000000..5a18423 Binary files /dev/null and b/textures/corners_wood_green.png differ diff --git a/textures/corners_wood_green_bottom.png b/textures/corners_wood_green_bottom.png new file mode 100644 index 0000000..b23d244 Binary files /dev/null and b/textures/corners_wood_green_bottom.png differ diff --git a/textures/corners_wood_green_top.png b/textures/corners_wood_green_top.png new file mode 100644 index 0000000..1279793 Binary files /dev/null and b/textures/corners_wood_green_top.png differ diff --git a/textures/corners_wood_grey.png b/textures/corners_wood_grey.png new file mode 100644 index 0000000..beb0057 Binary files /dev/null and b/textures/corners_wood_grey.png differ diff --git a/textures/corners_wood_grey_bottom.png b/textures/corners_wood_grey_bottom.png new file mode 100644 index 0000000..fcfd40b Binary files /dev/null and b/textures/corners_wood_grey_bottom.png differ diff --git a/textures/corners_wood_grey_top.png b/textures/corners_wood_grey_top.png new file mode 100644 index 0000000..6e0408b Binary files /dev/null and b/textures/corners_wood_grey_top.png differ diff --git a/textures/corners_wood_magenta.png b/textures/corners_wood_magenta.png new file mode 100644 index 0000000..e578ff7 Binary files /dev/null and b/textures/corners_wood_magenta.png differ diff --git a/textures/corners_wood_magenta_bottom.png b/textures/corners_wood_magenta_bottom.png new file mode 100644 index 0000000..918969a Binary files /dev/null and b/textures/corners_wood_magenta_bottom.png differ diff --git a/textures/corners_wood_magenta_top.png b/textures/corners_wood_magenta_top.png new file mode 100644 index 0000000..1f92e54 Binary files /dev/null and b/textures/corners_wood_magenta_top.png differ diff --git a/textures/corners_wood_orange.png b/textures/corners_wood_orange.png new file mode 100644 index 0000000..9cfa967 Binary files /dev/null and b/textures/corners_wood_orange.png differ diff --git a/textures/corners_wood_orange_bottom.png b/textures/corners_wood_orange_bottom.png new file mode 100644 index 0000000..431439e Binary files /dev/null and b/textures/corners_wood_orange_bottom.png differ diff --git a/textures/corners_wood_orange_top.png b/textures/corners_wood_orange_top.png new file mode 100644 index 0000000..d220ca9 Binary files /dev/null and b/textures/corners_wood_orange_top.png differ diff --git a/textures/corners_wood_pink.png b/textures/corners_wood_pink.png new file mode 100644 index 0000000..0bf7cdc Binary files /dev/null and b/textures/corners_wood_pink.png differ diff --git a/textures/corners_wood_pink_bottom.png b/textures/corners_wood_pink_bottom.png new file mode 100644 index 0000000..f1ffedd Binary files /dev/null and b/textures/corners_wood_pink_bottom.png differ diff --git a/textures/corners_wood_pink_top.png b/textures/corners_wood_pink_top.png new file mode 100644 index 0000000..2e1c89e Binary files /dev/null and b/textures/corners_wood_pink_top.png differ diff --git a/textures/corners_wood_red.png b/textures/corners_wood_red.png new file mode 100644 index 0000000..76b64b9 Binary files /dev/null and b/textures/corners_wood_red.png differ diff --git a/textures/corners_wood_red_bottom.png b/textures/corners_wood_red_bottom.png new file mode 100644 index 0000000..aa368b3 Binary files /dev/null and b/textures/corners_wood_red_bottom.png differ diff --git a/textures/corners_wood_red_top.png b/textures/corners_wood_red_top.png new file mode 100644 index 0000000..7ea16cf Binary files /dev/null and b/textures/corners_wood_red_top.png differ diff --git a/textures/corners_wood_violet.png b/textures/corners_wood_violet.png new file mode 100644 index 0000000..edd3176 Binary files /dev/null and b/textures/corners_wood_violet.png differ diff --git a/textures/corners_wood_violet_bottom.png b/textures/corners_wood_violet_bottom.png new file mode 100644 index 0000000..1e782bf Binary files /dev/null and b/textures/corners_wood_violet_bottom.png differ diff --git a/textures/corners_wood_violet_top.png b/textures/corners_wood_violet_top.png new file mode 100644 index 0000000..753325b Binary files /dev/null and b/textures/corners_wood_violet_top.png differ diff --git a/textures/corners_wood_white.png b/textures/corners_wood_white.png new file mode 100644 index 0000000..ee1d8f3 Binary files /dev/null and b/textures/corners_wood_white.png differ diff --git a/textures/corners_wood_white_bottom.png b/textures/corners_wood_white_bottom.png new file mode 100644 index 0000000..79da7de Binary files /dev/null and b/textures/corners_wood_white_bottom.png differ diff --git a/textures/corners_wood_white_top.png b/textures/corners_wood_white_top.png new file mode 100644 index 0000000..d0ff8a4 Binary files /dev/null and b/textures/corners_wood_white_top.png differ diff --git a/textures/corners_wood_yellow.png b/textures/corners_wood_yellow.png new file mode 100644 index 0000000..6381b7e Binary files /dev/null and b/textures/corners_wood_yellow.png differ diff --git a/textures/corners_wood_yellow_bottom.png b/textures/corners_wood_yellow_bottom.png new file mode 100644 index 0000000..52a9c87 Binary files /dev/null and b/textures/corners_wood_yellow_bottom.png differ diff --git a/textures/corners_wood_yellow_top.png b/textures/corners_wood_yellow_top.png new file mode 100644 index 0000000..114d83b Binary files /dev/null and b/textures/corners_wood_yellow_top.png differ diff --git a/textures/mycorners_background.png b/textures/mycorners_background.png new file mode 100644 index 0000000..55e2411 Binary files /dev/null and b/textures/mycorners_background.png differ diff --git a/textures/mycorners_machine_back.png b/textures/mycorners_machine_back.png new file mode 100644 index 0000000..4b39b55 Binary files /dev/null and b/textures/mycorners_machine_back.png differ diff --git a/textures/mycorners_machine_bottom.png b/textures/mycorners_machine_bottom.png new file mode 100644 index 0000000..5c96853 Binary files /dev/null and b/textures/mycorners_machine_bottom.png differ diff --git a/textures/mycorners_machine_front.png b/textures/mycorners_machine_front.png new file mode 100644 index 0000000..3a27758 Binary files /dev/null and b/textures/mycorners_machine_front.png differ diff --git a/textures/mycorners_machine_side.png b/textures/mycorners_machine_side.png new file mode 100644 index 0000000..d4c6ad8 Binary files /dev/null and b/textures/mycorners_machine_side.png differ diff --git a/textures/mycorners_machine_sideb.png b/textures/mycorners_machine_sideb.png new file mode 100644 index 0000000..bdce876 Binary files /dev/null and b/textures/mycorners_machine_sideb.png differ diff --git a/textures/mycorners_machine_sidel.png b/textures/mycorners_machine_sidel.png new file mode 100644 index 0000000..8ea365f Binary files /dev/null and b/textures/mycorners_machine_sidel.png differ diff --git a/textures/mycorners_machine_sidel2.png b/textures/mycorners_machine_sidel2.png new file mode 100644 index 0000000..2815b23 Binary files /dev/null and b/textures/mycorners_machine_sidel2.png differ diff --git a/textures/mycorners_machine_sider.png b/textures/mycorners_machine_sider.png new file mode 100644 index 0000000..3982ce7 Binary files /dev/null and b/textures/mycorners_machine_sider.png differ diff --git a/textures/mycorners_machine_sider2.png b/textures/mycorners_machine_sider2.png new file mode 100644 index 0000000..0c46b7a Binary files /dev/null and b/textures/mycorners_machine_sider2.png differ diff --git a/textures/mycorners_machine_top.png b/textures/mycorners_machine_top.png new file mode 100644 index 0000000..c8a418a Binary files /dev/null and b/textures/mycorners_machine_top.png differ diff --git a/textures/mycorners_machine_top2.png b/textures/mycorners_machine_top2.png new file mode 100644 index 0000000..ed303e8 Binary files /dev/null and b/textures/mycorners_machine_top2.png differ