2022-10-26 14:44:48 +03:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
2015-06-29 20:55:56 +03:00
|
|
|
|
2022-10-26 14:44:48 +03:00
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
2015-06-29 20:55:56 +03:00
|
|
|
|
2022-10-26 14:44:48 +03:00
|
|
|
-- mcl_itemframes API
|
|
|
|
dofile(modpath .. "/item_frames_API.lua")
|
2018-05-12 20:21:41 +03:00
|
|
|
|
2022-11-04 11:23:40 +02:00
|
|
|
-- actual api initialization.
|
|
|
|
mcl_itemframes.create_base_definitions()
|
|
|
|
|
|
|
|
-- necessary to maintain compatibility amongst older versions.
|
2022-11-04 12:00:52 +02:00
|
|
|
mcl_itemframes.backwards_compatibility()
|
2015-06-29 20:55:56 +03:00
|
|
|
|
2022-11-05 00:54:06 +02:00
|
|
|
-- Define the standard frames.
|
2022-11-04 11:23:40 +02:00
|
|
|
mcl_itemframes.create_custom_frame("false", "item_frame", false,
|
2022-11-06 23:00:14 +02:00
|
|
|
"mcl_itemframes_item_frame.png", mcl_colors.WHITE, "Can hold an item.",
|
|
|
|
"Item Frame", "")
|
2022-11-04 11:23:40 +02:00
|
|
|
mcl_itemframes.create_custom_frame("false", "glow_item_frame", true,
|
2022-11-06 23:00:14 +02:00
|
|
|
"mcl_itemframes_glow_item_frame.png", mcl_colors.WHITE, "Can hold an item and glows.",
|
|
|
|
"Glowing Item Frame", "")
|
2022-11-04 11:23:40 +02:00
|
|
|
|
|
|
|
-- Register the base frame's recipes.
|
2022-10-26 14:44:48 +03:00
|
|
|
-- was going to make it a specialized function, but minetest refuses to play nice.
|
2017-01-12 04:04:58 +02:00
|
|
|
minetest.register_craft({
|
2022-11-04 12:00:52 +02:00
|
|
|
output = "mcl_itemframes:item_frame",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_core:stick", "mcl_core:stick", "mcl_core:stick" },
|
|
|
|
{ "mcl_core:stick", "mcl_mobitems:leather", "mcl_core:stick" },
|
|
|
|
{ "mcl_core:stick", "mcl_core:stick", "mcl_core:stick" },
|
|
|
|
}
|
2017-01-12 04:04:58 +02:00
|
|
|
})
|
2018-05-12 19:18:17 +03:00
|
|
|
|
2022-10-26 14:44:48 +03:00
|
|
|
minetest.register_craft({
|
2022-11-04 12:00:52 +02:00
|
|
|
type = "shapeless",
|
|
|
|
output = 'mcl_itemframes:glow_item_frame',
|
|
|
|
recipe = { 'mcl_mobitems:glow_ink_sac', 'mcl_itemframes:item_frame' },
|
2018-05-12 19:50:44 +03:00
|
|
|
})
|
2018-05-13 01:57:32 +03:00
|
|
|
|
2022-11-06 23:00:14 +02:00
|
|
|
mcl_itemframes.custom_register_lbm()
|