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_core:darksapling",
|
|
|
|
"mcl_core:apple_gold",
|
|
|
|
"mcl_end:chorus_fruit",
|
|
|
|
"mcl_end:chorus_flower",
|
|
|
|
"mcl_end:chorus_flower_dead",
|
|
|
|
"mcl_fishing:fishing_rod",
|
|
|
|
"mcl_maps:filled_map",
|
|
|
|
"mcl_maps:empty_map",
|
|
|
|
"gemalde:node_1",
|
|
|
|
"mcl_observers:observer",
|
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-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
|
|
|
|
new_description = new_description .. "\n"..core.colorize("#FF0000", "(WIP)")
|
|
|
|
minetest.override_item(wip_items[i], { description = new_description })
|
|
|
|
end
|
2017-03-18 01:18:33 +01:00
|
|
|
|
|
|
|
local experimental_items = {
|
|
|
|
"doc_identifier:identifier_solid",
|
|
|
|
"doc_identifier:identifier_liquid",
|
|
|
|
}
|
|
|
|
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
|
|
|
|
new_description = new_description .. "\n"..core.colorize("#FFFF00", "(Experimental)")
|
|
|
|
minetest.override_item(experimental_items[i], { description = new_description })
|
|
|
|
end
|
|
|
|
|
|
|
|
|