2017-02-22 01:46:13 +01:00
|
|
|
local wip_items = {
|
|
|
|
"mcl_anvils:anvil",
|
|
|
|
"mcl_anvils:anvil_damage_1",
|
|
|
|
"mcl_anvils:anvil_damage_2",
|
|
|
|
"mcl_end:chorus_fruit",
|
|
|
|
"mcl_end:chorus_flower",
|
|
|
|
"mcl_end:chorus_flower_dead",
|
|
|
|
"mcl_fishing:fishing_rod",
|
|
|
|
"mcl_maps:empty_map",
|
|
|
|
"gemalde:node_1",
|
2018-01-10 18:27:47 +01:00
|
|
|
"mcl_observers:observer_off",
|
|
|
|
"mcl_observers:observer_on",
|
2017-03-16 02:13:35 +01:00
|
|
|
"mcl_chests:trapped_chest",
|
2017-07-06 14:29:29 +02:00
|
|
|
"mobs_mc:totem",
|
2017-07-27 04:04:12 +02:00
|
|
|
"mcl_paintings:painting",
|
2017-08-28 02:08:41 +02:00
|
|
|
"mcl_comparators:comparator_off_comp",
|
2017-08-28 14:19:46 +02:00
|
|
|
"mcl_minecarts:hopper_minecart",
|
|
|
|
"mcl_minecarts:command_block_minecart",
|
|
|
|
"mcl_minecarts:chest_minecart",
|
|
|
|
"mcl_minecarts:furnace_minecart",
|
|
|
|
"mcl_minecarts:tnt_minecart",
|
2017-08-29 00:13:18 +02:00
|
|
|
"mcl_minecarts:activator_rail",
|
2018-01-09 14:32:58 +01:00
|
|
|
"mobs_mc:enderdragon",
|
|
|
|
"mobs_mc:wither",
|
|
|
|
"mobs_mc:villager",
|
|
|
|
"mobs_mc:parrot",
|
|
|
|
"mobs_mc:witch",
|
2017-02-22 01:46:13 +01:00
|
|
|
}
|
2017-11-27 12:17:26 +01:00
|
|
|
local experimental_items = {
|
|
|
|
}
|
2017-02-22 01:46:13 +01:00
|
|
|
|
|
|
|
for i=1,#wip_items do
|
|
|
|
local def = minetest.registered_items[wip_items[i]]
|
|
|
|
if not def then
|
|
|
|
minetest.log("error", "[mcl_wip] Unknown item: "..wip_items[i])
|
|
|
|
break
|
|
|
|
end
|
|
|
|
local new_description = def.description
|
2017-11-20 07:52:24 +01:00
|
|
|
local new_groups = table.copy(def.groups)
|
2017-02-22 01:46:13 +01:00
|
|
|
new_description = new_description .. "\n"..core.colorize("#FF0000", "(WIP)")
|
2017-11-20 07:52:24 +01:00
|
|
|
new_groups.not_in_craft_guide = 1
|
|
|
|
minetest.override_item(wip_items[i], { description = new_description, groups = new_groups })
|
2017-02-22 01:46:13 +01:00
|
|
|
end
|
2017-03-18 01:18:33 +01:00
|
|
|
|
|
|
|
for i=1,#experimental_items do
|
|
|
|
local def = minetest.registered_items[experimental_items[i]]
|
|
|
|
if not def then
|
|
|
|
minetest.log("error", "[mcl_wip] Unknown item: "..experimental_items[i])
|
|
|
|
break
|
|
|
|
end
|
|
|
|
local new_description = def.description
|
2017-11-27 12:17:26 +01:00
|
|
|
new_description = new_description .. "\n"..core.colorize("#FFFF00", "(Temporary)")
|
2017-03-18 01:18:33 +01:00
|
|
|
minetest.override_item(experimental_items[i], { description = new_description })
|
|
|
|
end
|
|
|
|
|
|
|
|
|