Convert the modpack into a standalone game for the Minetest engine
Integrated into the game is most of minetest_game as the stable base
This commit is contained in:
committed by
Vanessa Dannenberg
parent
11adf56b75
commit
4394beec6a
87
mods/homedecor_trash_cans/init.lua
Normal file
87
mods/homedecor_trash_cans/init.lua
Normal file
@@ -0,0 +1,87 @@
|
||||
local S = minetest.get_translator("homedecor_trash_cans")
|
||||
|
||||
local tg_cbox = {
|
||||
type = "fixed",
|
||||
fixed = { -0.35, -0.5, -0.35, 0.35, 0.4, 0.35 }
|
||||
}
|
||||
|
||||
local trashcan_green = 0x00006000
|
||||
|
||||
homedecor.register("trash_can_green", {
|
||||
drawtype = "mesh",
|
||||
mesh = "homedecor_trash_can_green.obj",
|
||||
tiles = { { name = "homedecor_generic_plastic.png", color = trashcan_green } },
|
||||
inventory_image = "homedecor_trash_can_green_inv.png",
|
||||
description = S("Green Trash Can"),
|
||||
groups = {snappy=3},
|
||||
selection_box = tg_cbox,
|
||||
collision_box = tg_cbox,
|
||||
on_punch = function(pos, node, puncher, pointed_thing)
|
||||
minetest.set_node(pos, {name = "homedecor:trash_can_green_open", param2 = node.param2})
|
||||
end
|
||||
})
|
||||
|
||||
homedecor.register("trash_can_green_open", {
|
||||
drawtype = "mesh",
|
||||
mesh = "homedecor_trash_can_green_open.obj",
|
||||
tiles = { { name = "homedecor_generic_plastic.png", color = trashcan_green } },
|
||||
groups = {snappy=3, not_in_creative_inventory=1},
|
||||
selection_box = tg_cbox,
|
||||
collision_box = tg_cbox,
|
||||
drop = "homedecor:trash_can_green",
|
||||
on_punch = function(pos, node, puncher, pointed_thing)
|
||||
minetest.set_node(pos, {name = "homedecor:trash_can_green", param2 = node.param2})
|
||||
end,
|
||||
infotext=S("Trash Can"),
|
||||
inventory= {
|
||||
size = 9,
|
||||
formspec = "size[8,9]" .. default.gui_bg .. default.gui_bg_img .. default.gui_slots ..
|
||||
"button[2.5,3.8;3,1;empty;Empty Trash]"..
|
||||
"list[context;main;2.5,0.5;3,3;]"..
|
||||
"list[current_player;main;0,5;8,4;]" ..
|
||||
"listring[]",
|
||||
},
|
||||
on_receive_fields = function(pos, formname, fields, sender)
|
||||
if fields.empty then
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:get_inventory():set_list("main", {})
|
||||
minetest.sound_play("homedecor_trash_all", {to_player=sender:get_player_name(), gain = 1.0})
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
local trash_cbox = {
|
||||
type = "fixed",
|
||||
fixed = { -0.25, -0.5, -0.25, 0.25, 0.125, 0.25 }
|
||||
}
|
||||
|
||||
homedecor.register("trash_can", {
|
||||
drawtype = "mesh",
|
||||
mesh = "homedecor_trash_can.obj",
|
||||
tiles = { "homedecor_trash_can.png" },
|
||||
inventory_image = "homedecor_trash_can_inv.png",
|
||||
description = S("Small Trash Can"),
|
||||
groups = {snappy=3},
|
||||
selection_box = trash_cbox,
|
||||
collision_box = trash_cbox,
|
||||
})
|
||||
|
||||
-- crafting
|
||||
|
||||
|
||||
minetest.register_craft( {
|
||||
output = "homedecor:trash_can 3",
|
||||
recipe = {
|
||||
{ "basic_materials:steel_wire", "", "basic_materials:steel_wire" },
|
||||
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "homedecor:trash_can_green",
|
||||
recipe = {
|
||||
{ "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" },
|
||||
{ "basic_materials:plastic_sheet", "dye:green", "basic_materials:plastic_sheet" },
|
||||
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user