diff --git a/locale/more_chests.it.tr b/locale/more_chests.it.tr index d386333..6d602f3 100644 --- a/locale/more_chests.it.tr +++ b/locale/more_chests.it.tr @@ -2,6 +2,7 @@ Cobble Chest=Baule in ciottoli Dropbox=Baule Donazioni Fridge=Frigorifero +Big Fridge=Frigorifero Grande Secret Chest=Baule Segreto Shared Chest=Baule Condiviso Wifi Chest=Baule WiFi diff --git a/locale/template.txt b/locale/template.txt index 2a4cda4..2988319 100644 --- a/locale/template.txt +++ b/locale/template.txt @@ -2,6 +2,7 @@ Cobble Chest= Dropbox= Fridge= +Big Fridge= Secret Chest= Shared Chest= Wifi Chest= diff --git a/models/fridge.lua b/models/fridge.lua index baf5906..4600d68 100644 --- a/models/fridge.lua +++ b/models/fridge.lua @@ -1,10 +1,33 @@ local gen_def = dofile(minetest.get_modpath("more_chests") .. "/utils/base.lua") local S = minetest.get_translator("more_chests") +-- TODO model open + local fridge = gen_def({ - -- TODO model open description = S("Fridge"), type = "fridge", + size = "small", + tiles = { + side = "fridge_side.png", + front = "fridge_front.png", + }, + recipe = { + {"", "default:steel_ingot", ""}, + {"default:steel_ingot", "default:ice", "default:steel_ingot"}, + {"", "default:steel_ingot", ""} + }, +}) + +minetest.register_node("more_chests:fridge", fridge) +minetest.register_craft({ + output = "more_chests:fridge", + recipe = fridge.recipe, +}) + + +local big_fridge = gen_def({ + description = S("Big Fridge"), + type = "fridge", size = "big", node_box = { {-0.5, -0.5, -0.5, 0.5, 1.5, 0.5}, @@ -20,9 +43,8 @@ local fridge = gen_def({ }, }) - -minetest.register_node("more_chests:fridge", fridge) +minetest.register_node("more_chests:big_fridge", big_fridge) minetest.register_craft({ - output = "more_chests:fridge", - recipe = fridge.recipe, + output = "more_chests:big_fridge", + recipe = big_fridge.recipe, })