move workbench/tool cabinet, beer tap and mug, and soda machine to home_workshop_modpack
| @@ -103,111 +103,6 @@ homedecor.register("wine_rack", { | |||||||
| 	sounds = default.node_sound_defaults(), | 	sounds = default.node_sound_defaults(), | ||||||
| }) | }) | ||||||
|  |  | ||||||
| homedecor.register("beer_tap", { |  | ||||||
| 	description = S("Beer tap"), |  | ||||||
| 	mesh = "homedecor_beer_taps.obj", |  | ||||||
| 	tiles = { |  | ||||||
| 		"homedecor_generic_metal_bright.png", |  | ||||||
| 		{ name = "homedecor_generic_metal.png", color = homedecor.color_black } |  | ||||||
| 	}, |  | ||||||
| 	inventory_image = "homedecor_beertap_inv.png", |  | ||||||
| 	groups = { snappy=3 }, |  | ||||||
| 	walkable = false, |  | ||||||
| 	selection_box = { |  | ||||||
| 		type = "fixed", |  | ||||||
| 		fixed = { -0.25, -0.5, -0.4375, 0.25, 0.235, 0 } |  | ||||||
| 	}, |  | ||||||
| 	on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) |  | ||||||
| 		local inv = clicker:get_inventory() |  | ||||||
|  |  | ||||||
| 		local wieldname = itemstack:get_name() |  | ||||||
| 		if wieldname == "vessels:drinking_glass" then |  | ||||||
| 			if inv:room_for_item("main", "homedecor:beer_mug 1") then |  | ||||||
| 				itemstack:take_item() |  | ||||||
| 				clicker:set_wielded_item(itemstack) |  | ||||||
| 				inv:add_item("main", "homedecor:beer_mug 1") |  | ||||||
| 				minetest.chat_send_player(clicker:get_player_name(), |  | ||||||
| 						S("Ahh, a frosty cold beer - look in your inventory for it!")) |  | ||||||
| 			else |  | ||||||
| 				minetest.chat_send_player(clicker:get_player_name(), |  | ||||||
| 						S("No room in your inventory to add a beer mug!")) |  | ||||||
| 			end |  | ||||||
| 		end |  | ||||||
| 	end |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_craft({ |  | ||||||
| 	output = "homedecor:beer_tap", |  | ||||||
| 	recipe = { |  | ||||||
| 		{ "group:stick","default:steel_ingot","group:stick" }, |  | ||||||
| 		{ "homedecor:kitchen_faucet","default:steel_ingot","homedecor:kitchen_faucet" }, |  | ||||||
| 		{ "default:steel_ingot","default:steel_ingot","default:steel_ingot" } |  | ||||||
| 	}, |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| local beer_cbox = { |  | ||||||
| 	type = "fixed", |  | ||||||
| 	fixed = { -5/32, -8/16, -9/32 , 7/32, -2/16, 1/32 } |  | ||||||
| } |  | ||||||
|  |  | ||||||
| homedecor.register("beer_mug", { |  | ||||||
| 	description = S("Beer mug"), |  | ||||||
| 	drawtype = "mesh", |  | ||||||
| 	mesh = "homedecor_beer_mug.obj", |  | ||||||
| 	tiles = { "homedecor_beer_mug.png" }, |  | ||||||
| 	inventory_image = "homedecor_beer_mug_inv.png", |  | ||||||
| 	groups = { snappy=3, oddly_breakable_by_hand=3 }, |  | ||||||
| 	walkable = false, |  | ||||||
| 	sounds = default.node_sound_glass_defaults(), |  | ||||||
| 	selection_box = beer_cbox, |  | ||||||
| 	on_use = function(itemstack, user, pointed_thing) |  | ||||||
| 		if not creative.is_enabled_for(user:get_player_name()) then |  | ||||||
| 			minetest.do_item_eat(2, "vessels:drinking_glass 1", itemstack, user, pointed_thing) |  | ||||||
| 			return itemstack |  | ||||||
| 		end |  | ||||||
| 	end |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| local svm_cbox = { |  | ||||||
| 	type = "fixed", |  | ||||||
| 	fixed = {-0.5, -0.5, -0.5, 0.5, 1.5, 0.5} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| homedecor.register("soda_machine", { |  | ||||||
| 	description = S("Soda vending machine"), |  | ||||||
| 	mesh = "homedecor_soda_machine.obj", |  | ||||||
| 	tiles = {"homedecor_soda_machine.png"}, |  | ||||||
| 	groups = {snappy=3}, |  | ||||||
| 	selection_box = svm_cbox, |  | ||||||
| 	collision_box = svm_cbox, |  | ||||||
| 	expand = { top="placeholder" }, |  | ||||||
| 	sounds = default.node_sound_wood_defaults(), |  | ||||||
| 	on_rotate = minetest.get_modpath("screwdriver") and screwdriver.rotate_simple or nil, |  | ||||||
| 	on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) |  | ||||||
| 		local playername = clicker:get_player_name() |  | ||||||
| 		local wielditem = clicker:get_wielded_item() |  | ||||||
| 		local wieldname = wielditem:get_name() |  | ||||||
| 		local fdir_to_fwd = { {0, -1}, {-1, 0}, {0, 1}, {1, 0} } |  | ||||||
| 		local fdir = node.param2 |  | ||||||
| 		local pos_drop = { x=pos.x+fdir_to_fwd[fdir+1][1], y=pos.y, z=pos.z+fdir_to_fwd[fdir+1][2] } |  | ||||||
| 		if wieldname == "currency:minegeld_cent_25" then |  | ||||||
| 			minetest.spawn_item(pos_drop, "homedecor:soda_can") |  | ||||||
| 			minetest.sound_play("insert_coin", { |  | ||||||
| 				pos=pos, max_hear_distance = 5 |  | ||||||
| 			}) |  | ||||||
| 			if not creative.is_enabled_for(playername) then |  | ||||||
| 				wielditem:take_item() |  | ||||||
| 				clicker:set_wielded_item(wielditem) |  | ||||||
| 				return wielditem |  | ||||||
| 			end |  | ||||||
| 		else |  | ||||||
| 			minetest.chat_send_player(playername, S("Please insert a coin in the machine.")) |  | ||||||
| 		end |  | ||||||
| 	end |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_alias("homedecor:coin", "currency:minegeld_cent_25") |  | ||||||
|  |  | ||||||
| -- coffee! | -- coffee! | ||||||
| -- coffee! | -- coffee! | ||||||
| -- coffee! | -- coffee! | ||||||
| @@ -326,12 +221,6 @@ minetest.register_abm({ | |||||||
|  |  | ||||||
| -- crafting | -- crafting | ||||||
|  |  | ||||||
| minetest.register_craftitem(":homedecor:soda_can", { |  | ||||||
| 	description = S("Soda Can"), |  | ||||||
| 	inventory_image = "homedecor_soda_can.png", |  | ||||||
| 	on_use = minetest.item_eat(2), |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_craft( { | minetest.register_craft( { | ||||||
|         output = "homedecor:bottle_green", |         output = "homedecor:bottle_green", | ||||||
|         recipe = { |         recipe = { | ||||||
| @@ -363,14 +252,6 @@ minetest.register_craft({ | |||||||
| 	}, | 	}, | ||||||
| }) | }) | ||||||
|  |  | ||||||
| minetest.register_craft({ |  | ||||||
| 	output = "homedecor:beer_tap", |  | ||||||
| 	recipe = { |  | ||||||
| 		{ "group:stick","default:steel_ingot","group:stick" }, |  | ||||||
| 		{ "homedecor:kitchen_faucet","default:steel_ingot","homedecor:kitchen_faucet" }, |  | ||||||
| 		{ "default:steel_ingot","default:steel_ingot","default:steel_ingot" } |  | ||||||
| 	}, |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_craft({ | minetest.register_craft({ | ||||||
| 	type = "shapeless", | 	type = "shapeless", | ||||||
| @@ -414,11 +295,3 @@ minetest.register_craft({ | |||||||
| 	}, | 	}, | ||||||
| }) | }) | ||||||
|  |  | ||||||
| minetest.register_craft({ |  | ||||||
| 	output = "homedecor:soda_machine", |  | ||||||
| 	recipe = { |  | ||||||
| 		{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, |  | ||||||
| 		{"default:steel_ingot", "dye:red", "default:steel_ingot"}, |  | ||||||
| 		{"default:steel_ingot", "default:copperblock", "default:steel_ingot"}, |  | ||||||
| 	}, |  | ||||||
| }) |  | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=Ahh ein kühles Bier – sehen Sie in Ihrem Inventar nach! |  | ||||||
| Beer mug=Bierkrug |  | ||||||
| Beer tap=Bierzapfhahn |  | ||||||
| Brown bottle=Braune Flasche | Brown bottle=Braune Flasche | ||||||
| Coffee Maker=Kaffeemaschine | Coffee Maker=Kaffeemaschine | ||||||
| Cutlery set=Besteckset | Cutlery set=Besteckset | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Vier braune Flaschen | |||||||
| Four green bottles=Vier grüne Flaschen | Four green bottles=Vier grüne Flaschen | ||||||
| Four misc brown/green bottles=Vier gemischte braune/grüne Flaschen | Four misc brown/green bottles=Vier gemischte braune/grüne Flaschen | ||||||
| Green bottle=Grüne Flasche | Green bottle=Grüne Flasche | ||||||
| No room in your inventory to add a beer mug!=Kein Platz im Inventar für einen Bierkrug! |  | ||||||
| Please insert a coin in the machine.=Bitte Münze in Automaten einwerfen. |  | ||||||
| Soda Can=Limodose |  | ||||||
| Soda vending machine=Limoautomat |  | ||||||
| Toaster=Toaster | Toaster=Toaster | ||||||
| Wine rack=Weinregal | Wine rack=Weinregal | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=¡Ah, una cerveza fría! La encontrarás en tu inventario. |  | ||||||
| Beer mug=Jarra de cerveza |  | ||||||
| Beer tap=Grifo de cerveza |  | ||||||
| Brown bottle=Botella marrón | Brown bottle=Botella marrón | ||||||
| Coffee Maker=Cafetera | Coffee Maker=Cafetera | ||||||
| Cutlery set=Cubertería | Cutlery set=Cubertería | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Cuatro botellas marrones | |||||||
| Four green bottles=Cuatro botellas verdes | Four green bottles=Cuatro botellas verdes | ||||||
| Four misc brown/green bottles=Cuatro botellas verdes/marrones | Four misc brown/green bottles=Cuatro botellas verdes/marrones | ||||||
| Green bottle=Botella verde | Green bottle=Botella verde | ||||||
| No room in your inventory to add a beer mug!=¡No hay lugar para tomar una jarra de cerveza! |  | ||||||
| Please insert a coin in the machine.=Por favor introduzca una moneda en la máquina. |  | ||||||
| Soda Can=Lata de refresco |  | ||||||
| Soda vending machine=Máquina expendedora de refrescos |  | ||||||
| Toaster=Tostador | Toaster=Tostador | ||||||
| Wine rack=Estantería de vino | Wine rack=Estantería de vino | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=Ahh, une bière bien fraîche - regardez dans votre inventaire ! |  | ||||||
| Beer mug=Pinte de bière |  | ||||||
| Beer tap=Pompe à bière |  | ||||||
| Brown bottle=Bouteille marron | Brown bottle=Bouteille marron | ||||||
| Coffee Maker=Cafetière | Coffee Maker=Cafetière | ||||||
| Cutlery set=Couverts | Cutlery set=Couverts | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Quatre bouteilles marrons | |||||||
| Four green bottles=Quatre bouteilles vertes | Four green bottles=Quatre bouteilles vertes | ||||||
| Four misc brown/green bottles=Quatre bouteilles marrons et vertes | Four misc brown/green bottles=Quatre bouteilles marrons et vertes | ||||||
| Green bottle=Bouteille verte | Green bottle=Bouteille verte | ||||||
| No room in your inventory to add a beer mug!=Pas de place dans votre inventaire pour ajouter une pinte de bière ! |  | ||||||
| Please insert a coin in the machine.=Veuillez insérer une pièce dans la machine. |  | ||||||
| Soda Can=Canette de soda |  | ||||||
| Soda vending machine=Distributeur de boissons |  | ||||||
| Toaster=Grille-pain | Toaster=Grille-pain | ||||||
| Wine rack=Casier à bouteilles | Wine rack=Casier à bouteilles | ||||||
|   | |||||||
| @@ -13,9 +13,5 @@ Four brown bottles= | |||||||
| Four green bottles= | Four green bottles= | ||||||
| Four misc brown/green bottles= | Four misc brown/green bottles= | ||||||
| Green bottle= | Green bottle= | ||||||
| No room in your inventory to add a beer mug!= |  | ||||||
| Please insert a coin in the machine.= |  | ||||||
| Soda Can= |  | ||||||
| Soda vending machine= |  | ||||||
| Toaster= | Toaster= | ||||||
| Wine rack= | Wine rack= | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=Ahh, bir sejuk dingin - cari dalam inventori anda! |  | ||||||
| Beer mug=Kole Bir |  | ||||||
| Beer tap=Paip Bir |  | ||||||
| Brown bottle=Botol Perang | Brown bottle=Botol Perang | ||||||
| Coffee Maker=Alat Pembuat Kopi | Coffee Maker=Alat Pembuat Kopi | ||||||
| Cutlery set=Set Kutleri | Cutlery set=Set Kutleri | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Empat Botol Perang | |||||||
| Four green bottles=Empat Botol Hijau | Four green bottles=Empat Botol Hijau | ||||||
| Four misc brown/green bottles=Empat Botol Pelbagai Warna | Four misc brown/green bottles=Empat Botol Pelbagai Warna | ||||||
| Green bottle=Botol Hijau | Green bottle=Botol Hijau | ||||||
| No room in your inventory to add a beer mug!=Tiada ruang dalam inventori anda untuk menambah kole bir! |  | ||||||
| Please insert a coin in the machine.=Sila masukkan duit syiling ke dalam mesin. |  | ||||||
| Soda Can=Tin Soda |  | ||||||
| Soda vending machine=Mesin Soda Layan Diri |  | ||||||
| Toaster=Pembakar Roti | Toaster=Pembakar Roti | ||||||
| Wine rack=Rak Wain | Wine rack=Rak Wain | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=Ahh, uma cerveja bem gelada - procure por ela em seu inventário! |  | ||||||
| Beer mug=Caneca de cerveja |  | ||||||
| Beer tap=Torneira de cerveja |  | ||||||
| Brown bottle=Garrafa marrom | Brown bottle=Garrafa marrom | ||||||
| Coffee Maker=Cafeteira | Coffee Maker=Cafeteira | ||||||
| Cutlery set=Conjunto de Talheres | Cutlery set=Conjunto de Talheres | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Quatro garrafas marrons | |||||||
| Four green bottles=Quatro garrafas verdes | Four green bottles=Quatro garrafas verdes | ||||||
| Four misc brown/green bottles=Quatro garrafas mescladas verde/marrom | Four misc brown/green bottles=Quatro garrafas mescladas verde/marrom | ||||||
| Green bottle=Garrafa verde | Green bottle=Garrafa verde | ||||||
| No room in your inventory to add a beer mug!=Sem espaço no inventário para colocar uma caneca de cerveja |  | ||||||
| Please insert a coin in the machine.=Por favor insira uma moeda na máquina. |  | ||||||
| Soda Can=Lata de Refrigerante |  | ||||||
| Soda vending machine=Máquina de refrigerante |  | ||||||
| Toaster=Torradeira | Toaster=Torradeira | ||||||
| Wine rack=Prateleira de Vinho | Wine rack=Prateleira de Vinho | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=Ahh, uma cerveja bem gelada - procure por ela em seu inventário! |  | ||||||
| Beer mug=Caneca de cerveja |  | ||||||
| Beer tap=Torneira de cerveja |  | ||||||
| Brown bottle=Garrafa marrom | Brown bottle=Garrafa marrom | ||||||
| Coffee Maker=Cafeteira | Coffee Maker=Cafeteira | ||||||
| Cutlery set=Conjunto de Talheres | Cutlery set=Conjunto de Talheres | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Quatro garrafas marrons | |||||||
| Four green bottles=Quatro garrafas verdes | Four green bottles=Quatro garrafas verdes | ||||||
| Four misc brown/green bottles=Quatro garrafas mescladas verde/marrom | Four misc brown/green bottles=Quatro garrafas mescladas verde/marrom | ||||||
| Green bottle=Garrafa verde | Green bottle=Garrafa verde | ||||||
| No room in your inventory to add a beer mug!=Sem espaço no inventário para colocar uma caneca de cerveja |  | ||||||
| Please insert a coin in the machine.=Por favor insira uma moeda na máquina. |  | ||||||
| Soda Can=Lata de Refrigerante |  | ||||||
| Soda vending machine=Máquina de refrigerante |  | ||||||
| Toaster=Torradeira | Toaster=Torradeira | ||||||
| Wine rack=Prateleira de Vinho | Wine rack=Prateleira de Vinho | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=О, холодное пиво! Ищи его в инвентаре! |  | ||||||
| Beer mug=Пивная кружка |  | ||||||
| Beer tap=Пивной кран |  | ||||||
| Brown bottle=Коричневая бутылка | Brown bottle=Коричневая бутылка | ||||||
| Coffee Maker=Кофеварка | Coffee Maker=Кофеварка | ||||||
| Cutlery set=Набор столовых приборов | Cutlery set=Набор столовых приборов | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=Четыре коричневых бутылки | |||||||
| Four green bottles=Четыре зелёных бутылки | Four green bottles=Четыре зелёных бутылки | ||||||
| Four misc brown/green bottles=Четыре разные коричневые/зелёные  | Four misc brown/green bottles=Четыре разные коричневые/зелёные  | ||||||
| Green bottle=Зелёная бутылка | Green bottle=Зелёная бутылка | ||||||
| No room in your inventory to add a beer mug!=В инвентаре нет места для пивной кружки! |  | ||||||
| Please insert a coin in the machine.=Вставьте монету в автомат. |  | ||||||
| Soda Can=Банка газировки |  | ||||||
| Soda vending machine=Автомат с газировкой |  | ||||||
| Toaster=Тостер | Toaster=Тостер | ||||||
| Wine rack=Винный шкаф | Wine rack=Винный шкаф | ||||||
|   | |||||||
| @@ -1,11 +1,7 @@ | |||||||
| # textdomain: homedecor_gastronomy | # textdomain: homedecor_gastronomy | ||||||
|  |  | ||||||
|  |  | ||||||
| ### init.lua ### | ### init.lua ### | ||||||
|  |  | ||||||
| Ahh, a frosty cold beer - look in your inventory for it!=啊,一杯冰凉的啤酒-看看你的库存吧! |  | ||||||
| Beer mug=啤酒杯 |  | ||||||
| Beer tap=啤酒龙头 |  | ||||||
| Brown bottle=棕色瓶子 | Brown bottle=棕色瓶子 | ||||||
| Coffee Maker=咖啡机 | Coffee Maker=咖啡机 | ||||||
| Cutlery set=餐具套装 | Cutlery set=餐具套装 | ||||||
| @@ -13,9 +9,5 @@ Four brown bottles=四个棕色瓶子 | |||||||
| Four green bottles=四个绿色瓶子 | Four green bottles=四个绿色瓶子 | ||||||
| Four misc brown/green bottles=四个其他棕色/绿色瓶子 | Four misc brown/green bottles=四个其他棕色/绿色瓶子 | ||||||
| Green bottle=绿瓶 | Green bottle=绿瓶 | ||||||
| No room in your inventory to add a beer mug!=你的库存里没有地方放啤酒杯! |  | ||||||
| Please insert a coin in the machine.=请在机器里放一枚硬币。 |  | ||||||
| Soda Can=易拉罐 |  | ||||||
| Soda vending machine=汽水自动售货机 |  | ||||||
| Toaster=烤面包机 | Toaster=烤面包机 | ||||||
| Wine rack=酒架 | Wine rack=酒架 | ||||||
|   | |||||||
| @@ -13,9 +13,5 @@ Four brown bottles= | |||||||
| Four green bottles= | Four green bottles= | ||||||
| Four misc brown/green bottles= | Four misc brown/green bottles= | ||||||
| Green bottle= | Green bottle= | ||||||
| No room in your inventory to add a beer mug!= |  | ||||||
| Please insert a coin in the machine.= |  | ||||||
| Soda Can= |  | ||||||
| Soda vending machine= |  | ||||||
| Toaster= | Toaster= | ||||||
| Wine rack= | Wine rack= | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| name = homedecor_gastronomy | name = homedecor_gastronomy | ||||||
| description = Homedecor mod: gastronomy | description = Homedecor mod: gastronomy | ||||||
| depends = homedecor_common, default, basic_materials, dye, creative | depends = homedecor_common, default, basic_materials, dye, creative | ||||||
| optional_depends = currency, bucket, screwdriver | optional_depends = bucket, screwdriver | ||||||
|   | |||||||
| @@ -1,418 +0,0 @@ | |||||||
| v -0.201 -0.271 -0.101 |  | ||||||
| v 0.027 -0.5 0.014 |  | ||||||
| v 0.078 -0.5 -0.007 |  | ||||||
| v -0.214 -0.263 -0.113 |  | ||||||
| v 0.117 -0.5 -0.046 |  | ||||||
| v 0.138 -0.5 -0.097 |  | ||||||
| v -0.202 -0.214 -0.137 |  | ||||||
| v 0.138 -0.5 -0.152 |  | ||||||
| v 0.117 -0.5 -0.202 |  | ||||||
| v -0.191 -0.231 -0.149 |  | ||||||
| v 0.078 -0.5 -0.241 |  | ||||||
| v 0.027 -0.5 -0.262 |  | ||||||
| v -0.18 -0.247 -0.137 |  | ||||||
| v -0.027 -0.5 -0.262 |  | ||||||
| v -0.078 -0.5 -0.241 |  | ||||||
| v -0.18 -0.247 -0.113 |  | ||||||
| v -0.117 -0.5 -0.202 |  | ||||||
| v -0.138 -0.5 -0.152 |  | ||||||
| v -0.191 -0.231 -0.101 |  | ||||||
| v -0.138 -0.5 -0.097 |  | ||||||
| v -0.117 -0.5 -0.046 |  | ||||||
| v -0.202 -0.214 -0.113 |  | ||||||
| v -0.078 -0.5 -0.007 |  | ||||||
| v -0.027 -0.5 0.014 |  | ||||||
| v -0.183 -0.176 -0.137 |  | ||||||
| v 0.024 -0.167 -0.003 |  | ||||||
| v 0.069 -0.167 -0.022 |  | ||||||
| v -0.175 -0.198 -0.149 |  | ||||||
| v 0.103 -0.167 -0.056 |  | ||||||
| v 0.121 -0.167 -0.1 |  | ||||||
| v -0.167 -0.221 -0.137 |  | ||||||
| v 0.121 -0.167 -0.148 |  | ||||||
| v 0.103 -0.167 -0.193 |  | ||||||
| v -0.167 -0.221 -0.113 |  | ||||||
| v 0.069 -0.167 -0.227 |  | ||||||
| v 0.024 -0.167 -0.245 |  | ||||||
| v -0.175 -0.198 -0.101 |  | ||||||
| v -0.024 -0.167 -0.245 |  | ||||||
| v -0.069 -0.167 -0.227 |  | ||||||
| v -0.183 -0.176 -0.113 |  | ||||||
| v -0.103 -0.167 -0.193 |  | ||||||
| v -0.121 -0.167 -0.148 |  | ||||||
| v -0.16 -0.151 -0.137 |  | ||||||
| v -0.121 -0.167 -0.1 |  | ||||||
| v -0.103 -0.167 -0.056 |  | ||||||
| v -0.156 -0.178 -0.149 |  | ||||||
| v -0.069 -0.167 -0.022 |  | ||||||
| v -0.024 -0.167 -0.003 |  | ||||||
| v -0.151 -0.204 -0.137 |  | ||||||
| v 0.027 -0.125 0.014 |  | ||||||
| v 0.078 -0.125 -0.007 |  | ||||||
| v -0.151 -0.204 -0.113 |  | ||||||
| v 0.117 -0.125 -0.046 |  | ||||||
| v 0.138 -0.125 -0.097 |  | ||||||
| v -0.156 -0.178 -0.101 |  | ||||||
| v 0.138 -0.125 -0.152 |  | ||||||
| v 0.117 -0.125 -0.202 |  | ||||||
| v -0.16 -0.151 -0.113 |  | ||||||
| v 0.078 -0.125 -0.241 |  | ||||||
| v 0.027 -0.125 -0.262 |  | ||||||
| v -0.134 -0.143 -0.137 |  | ||||||
| v -0.027 -0.125 -0.262 |  | ||||||
| v -0.078 -0.125 -0.241 |  | ||||||
| v -0.134 -0.171 -0.149 |  | ||||||
| v -0.117 -0.125 -0.202 |  | ||||||
| v -0.138 -0.125 -0.152 |  | ||||||
| v -0.134 -0.198 -0.137 |  | ||||||
| v -0.138 -0.125 -0.097 |  | ||||||
| v -0.117 -0.125 -0.046 |  | ||||||
| v -0.134 -0.198 -0.113 |  | ||||||
| v -0.078 -0.125 -0.007 |  | ||||||
| v -0.027 -0.125 0.014 |  | ||||||
| v -0.134 -0.171 -0.101 |  | ||||||
| v 0.024 -0.125 -0.003 |  | ||||||
| v 0.069 -0.125 -0.022 |  | ||||||
| v -0.134 -0.143 -0.113 |  | ||||||
| v 0.103 -0.125 -0.056 |  | ||||||
| v 0.121 -0.125 -0.1 |  | ||||||
| v -0.134 -0.49 -0.137 |  | ||||||
| v 0.121 -0.125 -0.148 |  | ||||||
| v 0.103 -0.125 -0.193 |  | ||||||
| v -0.134 -0.462 -0.149 |  | ||||||
| v 0.069 -0.125 -0.227 |  | ||||||
| v 0.024 -0.125 -0.245 |  | ||||||
| v -0.134 -0.434 -0.137 |  | ||||||
| v -0.024 -0.125 -0.245 |  | ||||||
| v -0.069 -0.125 -0.227 |  | ||||||
| v -0.134 -0.434 -0.113 |  | ||||||
| v -0.103 -0.125 -0.193 |  | ||||||
| v -0.121 -0.125 -0.148 |  | ||||||
| v -0.134 -0.462 -0.101 |  | ||||||
| v -0.121 -0.125 -0.1 |  | ||||||
| v -0.103 -0.125 -0.056 |  | ||||||
| v -0.134 -0.49 -0.113 |  | ||||||
| v -0.069 -0.125 -0.022 |  | ||||||
| v -0.024 -0.125 -0.003 |  | ||||||
| v -0.188 -0.28 -0.113 |  | ||||||
| v -0.188 -0.28 -0.137 |  | ||||||
| v -0.201 -0.271 -0.149 |  | ||||||
| v -0.214 -0.263 -0.137 |  | ||||||
| v -0.218 -0.316 -0.113 |  | ||||||
| v -0.204 -0.316 -0.101 |  | ||||||
| v -0.191 -0.316 -0.113 |  | ||||||
| v -0.191 -0.316 -0.137 |  | ||||||
| v -0.204 -0.316 -0.149 |  | ||||||
| v -0.218 -0.316 -0.137 |  | ||||||
| v -0.214 -0.37 -0.113 |  | ||||||
| v -0.201 -0.361 -0.101 |  | ||||||
| v -0.188 -0.353 -0.113 |  | ||||||
| v -0.188 -0.353 -0.137 |  | ||||||
| v -0.201 -0.361 -0.149 |  | ||||||
| v -0.214 -0.37 -0.137 |  | ||||||
| v -0.202 -0.419 -0.113 |  | ||||||
| v -0.191 -0.402 -0.101 |  | ||||||
| v -0.18 -0.386 -0.113 |  | ||||||
| v -0.18 -0.386 -0.137 |  | ||||||
| v -0.191 -0.402 -0.149 |  | ||||||
| v -0.202 -0.419 -0.137 |  | ||||||
| v -0.183 -0.457 -0.113 |  | ||||||
| v -0.175 -0.434 -0.101 |  | ||||||
| v -0.167 -0.412 -0.113 |  | ||||||
| v -0.167 -0.412 -0.137 |  | ||||||
| v -0.175 -0.434 -0.149 |  | ||||||
| v -0.183 -0.457 -0.137 |  | ||||||
| v -0.16 -0.482 -0.113 |  | ||||||
| v -0.156 -0.455 -0.101 |  | ||||||
| v -0.151 -0.429 -0.113 |  | ||||||
| v -0.151 -0.429 -0.137 |  | ||||||
| v -0.156 -0.455 -0.149 |  | ||||||
| v -0.16 -0.482 -0.137 |  | ||||||
| vt 0.156 0.219 |  | ||||||
| vt 0.156 0.188 |  | ||||||
| vt 0.219 0.188 |  | ||||||
| vt 0.219 0.219 |  | ||||||
| vt 0.466 0.406 |  | ||||||
| vt 0.537 0.406 |  | ||||||
| vt 0.603 0.433 |  | ||||||
| vt 0.654 0.484 |  | ||||||
| vt 0.681 0.55 |  | ||||||
| vt 0.681 0.621 |  | ||||||
| vt 0.654 0.687 |  | ||||||
| vt 0.603 0.738 |  | ||||||
| vt 0.537 0.765 |  | ||||||
| vt 0.466 0.765 |  | ||||||
| vt 0.4 0.738 |  | ||||||
| vt 0.349 0.687 |  | ||||||
| vt 0.322 0.621 |  | ||||||
| vt 0.322 0.55 |  | ||||||
| vt 0.349 0.484 |  | ||||||
| vt 0.4 0.433 |  | ||||||
| vt 0.625 0.906 |  | ||||||
| vt 0.688 0.906 |  | ||||||
| vt 0.688 0.938 |  | ||||||
| vt 0.625 0.938 |  | ||||||
| vt 0.938 0.906 |  | ||||||
| vt 1 0.906 |  | ||||||
| vt 1 0.938 |  | ||||||
| vt 0.938 0.938 |  | ||||||
| vt 0.25 0.906 |  | ||||||
| vt 0.313 0.906 |  | ||||||
| vt 0.313 0.938 |  | ||||||
| vt 0.25 0.938 |  | ||||||
| vt 0.563 0.906 |  | ||||||
| vt 0.563 0.938 |  | ||||||
| vt 0.875 0.906 |  | ||||||
| vt 0.875 0.938 |  | ||||||
| vt 0.188 0.906 |  | ||||||
| vt 0.188 0.938 |  | ||||||
| vt 0.813 0.906 |  | ||||||
| vt 0.813 0.938 |  | ||||||
| vt 0.438 0.906 |  | ||||||
| vt 0.5 0.906 |  | ||||||
| vt 0.5 0.938 |  | ||||||
| vt 0.438 0.938 |  | ||||||
| vt 0.125 0.906 |  | ||||||
| vt 0.125 0.938 |  | ||||||
| vt 0.75 0.906 |  | ||||||
| vt 0.75 0.938 |  | ||||||
| vt 0.375 0.906 |  | ||||||
| vt 0.375 0.938 |  | ||||||
| vt 0.063 0.906 |  | ||||||
| vt 0.063 0.938 |  | ||||||
| vt 0 0.906 |  | ||||||
| vt 0 0.938 |  | ||||||
| vt 0.281 0.313 |  | ||||||
| vt 0.281 0.281 |  | ||||||
| vt 0.344 0.281 |  | ||||||
| vt 0.344 0.313 |  | ||||||
| vt 0.094 0.219 |  | ||||||
| vt 0.156 0.25 |  | ||||||
| vt 0.094 0.25 |  | ||||||
| vt 0.375 1 |  | ||||||
| vt 0.313 1 |  | ||||||
| vt 0.281 0.25 |  | ||||||
| vt 0.344 0.25 |  | ||||||
| vt 0.156 0.313 |  | ||||||
| vt 0.156 0.281 |  | ||||||
| vt 0.219 0.281 |  | ||||||
| vt 0.219 0.313 |  | ||||||
| vt 0.531 0.188 |  | ||||||
| vt 0.594 0.188 |  | ||||||
| vt 0.594 0.219 |  | ||||||
| vt 0.531 0.219 |  | ||||||
| vt 0.656 0.188 |  | ||||||
| vt 0.656 0.219 |  | ||||||
| vt 0.094 0.188 |  | ||||||
| vt 0.219 0.25 |  | ||||||
| vt 0.125 0.406 |  | ||||||
| vt 0.188 0.406 |  | ||||||
| vt 0.688 1 |  | ||||||
| vt 0.625 1 |  | ||||||
| vt 0.938 0.406 |  | ||||||
| vt 1 0.406 |  | ||||||
| vt 0.063 1 |  | ||||||
| vt 0.125 1 |  | ||||||
| vt 0.375 0.406 |  | ||||||
| vt 0.438 0.406 |  | ||||||
| vt 0.688 0.406 |  | ||||||
| vt 0.75 0.406 |  | ||||||
| vt 0.938 1 |  | ||||||
| vt 0.875 1 |  | ||||||
| vt 0.25 0.406 |  | ||||||
| vt 0.188 1 |  | ||||||
| vt 0.094 0.344 |  | ||||||
| vt 0.094 0.313 |  | ||||||
| vt 0.156 0.344 |  | ||||||
| vt 0.5 0.406 |  | ||||||
| vt 0.813 0.406 |  | ||||||
| vt 0.438 1 |  | ||||||
| vt 0.219 0.156 |  | ||||||
| vt 0.281 0.156 |  | ||||||
| vt 0.281 0.188 |  | ||||||
| vt 0.75 1 |  | ||||||
| vt 0.031 0.25 |  | ||||||
| vt 0.031 0.219 |  | ||||||
| vt 0.563 0.406 |  | ||||||
| vt 0 0.406 |  | ||||||
| vt 0.063 0.406 |  | ||||||
| vt 1 1 |  | ||||||
| vt 0.344 0.188 |  | ||||||
| vt 0.344 0.156 |  | ||||||
| vt 0.406 0.156 |  | ||||||
| vt 0.406 0.188 |  | ||||||
| vt 0.313 0.406 |  | ||||||
| vt 0.625 0.406 |  | ||||||
| vt 0.25 1 |  | ||||||
| vt 0.406 0.344 |  | ||||||
| vt 0.406 0.313 |  | ||||||
| vt 0.469 0.313 |  | ||||||
| vt 0.469 0.344 |  | ||||||
| vt 0.875 0.406 |  | ||||||
| vt 0.469 0.156 |  | ||||||
| vt 0.469 0.188 |  | ||||||
| vt 0.5 1 |  | ||||||
| vt 0.813 1 |  | ||||||
| vt 0.406 0.281 |  | ||||||
| vt 0.406 0.25 |  | ||||||
| vt 0.563 1 |  | ||||||
| vt 0 1 |  | ||||||
| vt 0.219 0.344 |  | ||||||
| vt 0.531 0.313 |  | ||||||
| vt 0.531 0.281 |  | ||||||
| vt 0.594 0.281 |  | ||||||
| vt 0.594 0.313 |  | ||||||
| vt 0.469 0.281 |  | ||||||
| vt 0.469 0.25 |  | ||||||
| vt 0.531 0.25 |  | ||||||
| vt 0.281 0.344 |  | ||||||
| vt 0.594 0.25 |  | ||||||
| vt 0.281 0.219 |  | ||||||
| vt 0.344 0.219 |  | ||||||
| vt 0.031 0.156 |  | ||||||
| vt 0.094 0.156 |  | ||||||
| vt 0.031 0.188 |  | ||||||
| vt 0.813 0.373 |  | ||||||
| vt 0.756 0.35 |  | ||||||
| vt 0.713 0.306 |  | ||||||
| vt 0.689 0.249 |  | ||||||
| vt 0.689 0.188 |  | ||||||
| vt 0.713 0.131 |  | ||||||
| vt 0.756 0.088 |  | ||||||
| vt 0.813 0.064 |  | ||||||
| vt 0.874 0.064 |  | ||||||
| vt 0.931 0.088 |  | ||||||
| vt 0.975 0.131 |  | ||||||
| vt 0.998 0.188 |  | ||||||
| vt 0.998 0.249 |  | ||||||
| vt 0.975 0.306 |  | ||||||
| vt 0.931 0.35 |  | ||||||
| vt 0.874 0.373 |  | ||||||
| vt 0.156 0.156 |  | ||||||
| vt 0.656 0.25 |  | ||||||
| vt 0.031 0.313 |  | ||||||
| vt 0.031 0.281 |  | ||||||
| vt 0.094 0.281 |  | ||||||
| vt 0.656 0.281 |  | ||||||
| vt 0.656 0.313 |  | ||||||
| vt 0.406 0.219 |  | ||||||
| vt 0.469 0.219 |  | ||||||
| vt 0.031 0.344 |  | ||||||
| vt 0.656 0.344 |  | ||||||
| vt 0.594 0.344 |  | ||||||
| vt 0.531 0.344 |  | ||||||
| vt 0.531 0.156 |  | ||||||
| vt 0.594 0.156 |  | ||||||
| vt 0.344 0.344 |  | ||||||
| vt 0.656 0.156 |  | ||||||
| s 1 |  | ||||||
| f 120/1 121/2 115/3 114/4 |  | ||||||
| f 2/5 24/6 23/7 21/8 20/9 18/10 17/11 15/12 14/13 12/14 11/15 9/16 8/17 6/18 5/19 3/20 |  | ||||||
| f 51/21 53/22 77/23 75/24 |  | ||||||
| f 59/25 60/26 84/27 83/28 |  | ||||||
| f 66/29 68/30 92/31 90/32 |  | ||||||
| f 50/33 51/21 75/24 74/34 |  | ||||||
| f 57/35 59/25 83/28 81/36 |  | ||||||
| f 65/37 66/29 90/32 89/38 |  | ||||||
| f 56/39 57/35 81/36 80/40 |  | ||||||
| f 71/41 72/42 96/43 95/44 |  | ||||||
| f 63/45 65/37 89/38 87/46 |  | ||||||
| f 54/47 56/39 80/40 78/48 |  | ||||||
| f 69/49 71/41 95/44 93/50 |  | ||||||
| f 62/51 63/45 87/46 86/52 |  | ||||||
| f 53/22 54/47 78/48 77/23 |  | ||||||
| f 60/53 62/51 86/52 84/54 |  | ||||||
| f 111/55 112/56 106/57 105/58 |  | ||||||
| f 72/42 50/33 74/34 96/43 |  | ||||||
| f 126/59 120/1 119/60 125/61 |  | ||||||
| f 45/62 44/63 92/31 93/50 |  | ||||||
| f 106/57 112/56 107/64 101/65 |  | ||||||
| f 123/66 124/67 118/68 117/69 |  | ||||||
| f 34/70 52/71 55/72 37/73 |  | ||||||
| f 55/72 52/71 70/74 73/75 |  | ||||||
| f 126/59 127/76 121/2 120/1 |  | ||||||
| f 112/56 118/68 113/77 107/64 |  | ||||||
| f 15/78 17/79 65/37 63/45 |  | ||||||
| f 29/80 27/81 75/24 77/23 |  | ||||||
| f 11/82 12/83 60/26 59/25 |  | ||||||
| f 38/84 86/52 87/46 39/85 |  | ||||||
| f 21/86 23/87 71/41 69/49 |  | ||||||
| f 5/88 6/89 54/47 53/22 |  | ||||||
| f 35/90 33/91 81/36 83/28 |  | ||||||
| f 17/79 18/92 66/29 65/37 |  | ||||||
| f 41/93 39/85 87/46 89/38 |  | ||||||
| f 128/94 129/95 123/66 122/96 |  | ||||||
| f 23/87 24/97 72/42 71/41 |  | ||||||
| f 6/89 8/98 56/39 54/47 |  | ||||||
| f 47/99 45/62 93/50 95/44 |  | ||||||
| f 115/3 116/100 110/101 109/102 |  | ||||||
| f 30/103 29/80 77/23 78/48 |  | ||||||
| f 94/104 91/105 126/59 125/61 |  | ||||||
| f 24/97 2/106 50/33 72/42 |  | ||||||
| f 12/107 14/108 62/51 60/53 |  | ||||||
| f 36/109 35/90 83/28 84/27 |  | ||||||
| f 103/110 104/111 98/112 97/113 |  | ||||||
| f 18/92 20/114 68/30 66/29 |  | ||||||
| f 2/106 3/115 51/21 50/33 |  | ||||||
| f 42/116 41/93 89/38 90/32 |  | ||||||
| f 98/117 99/118 10/119 13/120 |  | ||||||
| f 8/98 9/121 57/35 56/39 |  | ||||||
| f 97/113 98/112 13/122 16/123 |  | ||||||
| f 48/124 47/99 95/44 96/43 |  | ||||||
| f 32/125 30/103 78/48 80/40 |  | ||||||
| f 100/126 106/57 101/65 4/127 |  | ||||||
| f 14/108 15/78 63/45 62/51 |  | ||||||
| f 118/68 112/56 111/55 117/69 |  | ||||||
| f 26/128 48/124 96/43 74/34 |  | ||||||
| f 38/84 36/129 84/54 86/52 |  | ||||||
| f 20/114 21/86 69/49 68/30 |  | ||||||
| f 122/96 123/66 117/69 116/130 |  | ||||||
| f 3/115 5/88 53/22 51/21 |  | ||||||
| f 44/63 42/116 90/32 92/31 |  | ||||||
| f 27/81 26/128 74/34 75/24 |  | ||||||
| f 28/131 25/132 43/133 46/134 |  | ||||||
| f 9/121 11/82 59/25 57/35 |  | ||||||
| f 33/91 32/125 80/40 81/36 |  | ||||||
| f 25/132 7/135 22/136 40/137 |  | ||||||
| f 116/130 117/69 111/55 110/138 |  | ||||||
| f 40/137 37/73 55/72 58/139 |  | ||||||
| f 107/64 108/140 102/141 101/65 |  | ||||||
| f 105/58 106/57 100/126 99/118 |  | ||||||
| f 43/133 25/132 40/137 58/139 |  | ||||||
| f 85/142 128/143 127/76 88/144 |  | ||||||
| f 26/145 27/146 29/147 30/148 32/149 33/150 35/151 36/152 38/153 39/154 41/155 42/156 44/157 45/158 47/159 48/160 |  | ||||||
| f 68/30 69/49 93/50 92/31 |  | ||||||
| f 127/76 128/143 122/161 121/2 |  | ||||||
| f 55/72 73/75 76/162 58/139 |  | ||||||
| f 99/118 100/126 7/135 10/119 |  | ||||||
| f 82/163 79/164 130/165 129/95 |  | ||||||
| f 119/60 120/1 114/4 113/77 |  | ||||||
| f 118/68 124/67 119/60 113/77 |  | ||||||
| f 43/133 61/166 64/167 46/134 |  | ||||||
| f 10/119 7/135 25/132 28/131 |  | ||||||
| f 130/165 124/67 123/66 129/95 |  | ||||||
| f 4/127 1/168 19/169 22/136 |  | ||||||
| f 124/67 130/165 125/61 119/60 |  | ||||||
| f 61/166 43/133 58/139 76/162 |  | ||||||
| f 110/101 104/111 103/110 109/102 |  | ||||||
| f 108/140 109/102 103/110 102/141 |  | ||||||
| f 88/144 127/76 126/59 91/105 |  | ||||||
| f 97/113 16/123 19/169 1/168 |  | ||||||
| f 82/163 129/95 128/94 85/170 |  | ||||||
| f 19/169 16/123 34/70 37/73 |  | ||||||
| f 19/169 37/73 40/137 22/136 |  | ||||||
| f 46/134 64/167 67/171 49/172 |  | ||||||
| f 114/4 108/140 107/64 113/77 |  | ||||||
| f 115/3 109/102 108/140 114/4 |  | ||||||
| f 101/65 102/141 1/168 4/127 |  | ||||||
| f 10/119 28/131 31/173 13/120 |  | ||||||
| f 16/123 13/122 31/174 34/70 |  | ||||||
| f 102/141 103/110 97/113 1/168 |  | ||||||
| f 31/174 49/175 52/71 34/70 |  | ||||||
| f 111/55 105/58 104/176 110/138 |  | ||||||
| f 7/135 100/126 4/127 22/136 |  | ||||||
| f 122/161 116/100 115/3 121/2 |  | ||||||
| f 105/58 99/118 98/117 104/176 |  | ||||||
| f 31/173 28/131 46/134 49/172 |  | ||||||
| f 130/165 79/164 94/104 125/61 |  | ||||||
| f 52/71 49/175 67/177 70/74 |  | ||||||
| @@ -1,29 +0,0 @@ | |||||||
| v 0.5 -0.5 -0.5 |  | ||||||
| v 0.5 -0.5 0.5 |  | ||||||
| v -0.5 -0.5 0.5 |  | ||||||
| v -0.5 -0.5 -0.5 |  | ||||||
| v 0.5 1.5 -0.5 |  | ||||||
| v 0.5 1.5 0.5 |  | ||||||
| v -0.5 1.5 0.5 |  | ||||||
| v -0.5 1.5 -0.5 |  | ||||||
| vt 0.25 0.25 |  | ||||||
| vt 0 0.25 |  | ||||||
| vt 0 0 |  | ||||||
| vt 0.25 0 |  | ||||||
| vt 0.25 0.75 |  | ||||||
| vt 0.25 1 |  | ||||||
| vt 0 1 |  | ||||||
| vt 0 0.75 |  | ||||||
| vt 1 0.25 |  | ||||||
| vt 1 0.75 |  | ||||||
| vt 0.75 0.75 |  | ||||||
| vt 0.75 0.25 |  | ||||||
| vt 0.5 0.75 |  | ||||||
| vt 0.5 0.25 |  | ||||||
| s off |  | ||||||
| f 1/1 2/2 3/3 4/4 |  | ||||||
| f 5/5 8/6 7/7 6/8 |  | ||||||
| f 1/1 5/5 6/8 2/2 |  | ||||||
| f 2/9 6/10 7/11 3/12 |  | ||||||
| f 3/12 7/11 8/13 4/14 |  | ||||||
| f 5/5 1/1 4/14 8/13 |  | ||||||
| Before Width: | Height: | Size: 1.2 KiB | 
| Before Width: | Height: | Size: 4.8 KiB | 
| Before Width: | Height: | Size: 3.3 KiB | 
| Before Width: | Height: | Size: 155 B | 
| Before Width: | Height: | Size: 1.3 KiB | 
| @@ -373,30 +373,6 @@ homedecor.register("skateboard", { | |||||||
| 	on_place = minetest.rotate_node | 	on_place = minetest.rotate_node | ||||||
| }) | }) | ||||||
|  |  | ||||||
| homedecor.register("tool_cabinet", { |  | ||||||
| 	description = S("Metal tool cabinet and work table"), |  | ||||||
| 	mesh = "homedecor_tool_cabinet.obj", |  | ||||||
| 	tiles = { |  | ||||||
| 		{ name = "homedecor_generic_metal.png", color = 0xffd00000 }, |  | ||||||
| 		"homedecor_tool_cabinet_drawers.png", |  | ||||||
| 		{ name = "homedecor_generic_metal.png", color = 0xff006000 }, |  | ||||||
| 		{ name = "homedecor_generic_metal.png", color = homedecor.color_med_grey }, |  | ||||||
| 		"homedecor_generic_metal_bright.png", |  | ||||||
| 		"homedecor_tool_cabinet_misc.png", |  | ||||||
| 	}, |  | ||||||
| 	inventory_image = "homedecor_tool_cabinet_inv.png", |  | ||||||
| 	on_rotate = minetest.get_modpath("screwdriver") and screwdriver.rotate_simple or nil, |  | ||||||
| 	groups = { snappy=3 }, |  | ||||||
| 	selection_box = homedecor.nodebox.slab_y(2), |  | ||||||
| 	expand = { top="placeholder" }, |  | ||||||
| 	inventory = { |  | ||||||
| 		size=24, |  | ||||||
| 	} |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_alias("homedecor:tool_cabinet_bottom", "homedecor:tool_cabinet") |  | ||||||
| minetest.register_alias("homedecor:tool_cabinet_top", "air") |  | ||||||
|  |  | ||||||
| homedecor_misc.banister_materials = { | homedecor_misc.banister_materials = { | ||||||
| 	{ | 	{ | ||||||
| 		"wood", | 		"wood", | ||||||
| @@ -938,15 +914,6 @@ minetest.register_craft({ | |||||||
| 	}, | 	}, | ||||||
| }) | }) | ||||||
|  |  | ||||||
| minetest.register_craft({ |  | ||||||
| 	output = "homedecor:tool_cabinet", |  | ||||||
| 	recipe = { |  | ||||||
| 		{ "basic_materials:motor", "default:axe_steel", "default:pick_steel" }, |  | ||||||
| 		{ "default:steel_ingot", "homedecor:drawer_small", "default:steel_ingot" }, |  | ||||||
| 		{ "default:steel_ingot", "homedecor:drawer_small", "default:steel_ingot" } |  | ||||||
| 	}, |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| minetest.register_craft({ | minetest.register_craft({ | ||||||
| 	output = "homedecor:spiral_staircase", | 	output = "homedecor:spiral_staircase", | ||||||
| 	recipe = { | 	recipe = { | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Japanische Tatami | |||||||
| Japanese wall=Japanische Wand | Japanese wall=Japanische Wand | ||||||
| Japanese wall (bottom)=Japanische Wand (unten) | Japanese wall (bottom)=Japanische Wand (unten) | ||||||
| Japanese wall (top)=Japanische Wand (oben) | Japanese wall (top)=Japanische Wand (oben) | ||||||
| Metal tool cabinet and work table=Metallwerkzeugschrank und Arbeitstisch |  | ||||||
| Piano=Klavier | Piano=Klavier | ||||||
| Pool Table=Billardtisch | Pool Table=Billardtisch | ||||||
| Potted flower (@1)=Eingetopfte Blume (@1) | Potted flower (@1)=Eingetopfte Blume (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Tatami | |||||||
| Japanese wall=Pared japonesa | Japanese wall=Pared japonesa | ||||||
| Japanese wall (bottom)=Pared japonesa (parte más baja) | Japanese wall (bottom)=Pared japonesa (parte más baja) | ||||||
| Japanese wall (top)=Pared japonesa (parte más alta) | Japanese wall (top)=Pared japonesa (parte más alta) | ||||||
| Metal tool cabinet and work table=Mesa de trabajo y gabinete en hierro |  | ||||||
| Piano=Piano | Piano=Piano | ||||||
| Pool Table=Mesa de pool | Pool Table=Mesa de pool | ||||||
| Potted flower (@1)=Flor en maceta (@1) | Potted flower (@1)=Flor en maceta (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Tatami | |||||||
| Japanese wall=Mur japonais | Japanese wall=Mur japonais | ||||||
| Japanese wall (bottom)=Mur japonais (bas) | Japanese wall (bottom)=Mur japonais (bas) | ||||||
| Japanese wall (top)=Mur japonais (haut) | Japanese wall (top)=Mur japonais (haut) | ||||||
| Metal tool cabinet and work table=Établi pour le travail du métal |  | ||||||
| Piano=Piano | Piano=Piano | ||||||
| Pool Table=Billard | Pool Table=Billard | ||||||
| Potted flower (@1)=Fleur en pot (@1) | Potted flower (@1)=Fleur en pot (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami= | |||||||
| Japanese wall= | Japanese wall= | ||||||
| Japanese wall (bottom)= | Japanese wall (bottom)= | ||||||
| Japanese wall (top)= | Japanese wall (top)= | ||||||
| Metal tool cabinet and work table= |  | ||||||
| Piano= | Piano= | ||||||
| Pool Table=Tavolo | Pool Table=Tavolo | ||||||
| Potted flower (@1)= | Potted flower (@1)= | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Tatami Jepun | |||||||
| Japanese wall=Dinding Jepun | Japanese wall=Dinding Jepun | ||||||
| Japanese wall (bottom)=Dinding Jepun (Bawah) | Japanese wall (bottom)=Dinding Jepun (Bawah) | ||||||
| Japanese wall (top)=Dinding Jepun (Atas) | Japanese wall (top)=Dinding Jepun (Atas) | ||||||
| Metal tool cabinet and work table=Kabinet Alatan Logam dan Meja Kerja |  | ||||||
| Piano=Piano | Piano=Piano | ||||||
| Pool Table=Meja Pool | Pool Table=Meja Pool | ||||||
| Potted flower (@1)=Pasu Berbunga (@1) | Potted flower (@1)=Pasu Berbunga (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Tatami Japonês | |||||||
| Japanese wall=Divisória japonesa | Japanese wall=Divisória japonesa | ||||||
| Japanese wall (bottom)=Divisória japonesa (inferior) | Japanese wall (bottom)=Divisória japonesa (inferior) | ||||||
| Japanese wall (top)=Divisória japonesa (superior) | Japanese wall (top)=Divisória japonesa (superior) | ||||||
| Metal tool cabinet and work table=Gabinete de ferramentas metálicas e mesa de trabalho |  | ||||||
| Piano=Piano | Piano=Piano | ||||||
| Pool Table=Mesa de Sinuca | Pool Table=Mesa de Sinuca | ||||||
| Potted flower (@1)=Vaso de Flor (@1) | Potted flower (@1)=Vaso de Flor (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Tatami Japonês | |||||||
| Japanese wall=Divisória japonesa | Japanese wall=Divisória japonesa | ||||||
| Japanese wall (bottom)=Divisória japonesa (inferior) | Japanese wall (bottom)=Divisória japonesa (inferior) | ||||||
| Japanese wall (top)=Divisória japonesa (superior) | Japanese wall (top)=Divisória japonesa (superior) | ||||||
| Metal tool cabinet and work table=Gabinete de ferramentas metálicas e mesa de trabalho |  | ||||||
| Piano=Piano | Piano=Piano | ||||||
| Pool Table=Mesa de Sinuca | Pool Table=Mesa de Sinuca | ||||||
| Potted flower (@1)=Vaso de Flor (@1) | Potted flower (@1)=Vaso de Flor (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=Японский татами | |||||||
| Japanese wall=Японская стена | Japanese wall=Японская стена | ||||||
| Japanese wall (bottom)=Японская стена (низ) | Japanese wall (bottom)=Японская стена (низ) | ||||||
| Japanese wall (top)=Японская стена (верх) | Japanese wall (top)=Японская стена (верх) | ||||||
| Metal tool cabinet and work table=Шкаф с металлическим инструментом и рабочий стол |  | ||||||
| Piano=Пианино | Piano=Пианино | ||||||
| Pool Table=Бильярдный стол | Pool Table=Бильярдный стол | ||||||
| Potted flower (@1)=Цветок в горшке (@1) | Potted flower (@1)=Цветок в горшке (@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami=日本榻榻米 | |||||||
| Japanese wall=日本墙 | Japanese wall=日本墙 | ||||||
| Japanese wall (bottom)=日本墙(下) | Japanese wall (bottom)=日本墙(下) | ||||||
| Japanese wall (top)=日本墙(上) | Japanese wall (top)=日本墙(上) | ||||||
| Metal tool cabinet and work table=金属工具柜及工作台 |  | ||||||
| Piano=钢琴 | Piano=钢琴 | ||||||
| Pool Table=台球桌 | Pool Table=台球桌 | ||||||
| Potted flower (@1)=盆花(@1) | Potted flower (@1)=盆花(@1) | ||||||
|   | |||||||
| @@ -20,7 +20,6 @@ Japanese tatami= | |||||||
| Japanese wall= | Japanese wall= | ||||||
| Japanese wall (bottom)= | Japanese wall (bottom)= | ||||||
| Japanese wall (top)= | Japanese wall (top)= | ||||||
| Metal tool cabinet and work table= |  | ||||||
| Piano= | Piano= | ||||||
| Pool Table= | Pool Table= | ||||||
| Potted flower (@1)= | Potted flower (@1)= | ||||||
|   | |||||||
| Before Width: | Height: | Size: 365 B | 
| Before Width: | Height: | Size: 4.1 KiB | 
| Before Width: | Height: | Size: 1.3 KiB |