Fridge now has both normal and big (2 blocks) models

This commit is contained in:
k 2020-05-03 19:12:47 +02:00
parent 4f6c414f11
commit fc66535402
3 changed files with 29 additions and 5 deletions

View File

@ -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

View File

@ -2,6 +2,7 @@
Cobble Chest=
Dropbox=
Fridge=
Big Fridge=
Secret Chest=
Shared Chest=
Wifi Chest=

View File

@ -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,
})