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