2015-06-29 19:55:56 +02:00
|
|
|
-- mods/default/craftitems.lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Crafting items
|
|
|
|
--
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:stick", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Stick",
|
|
|
|
inventory_image = "default_stick.png",
|
|
|
|
stack_max = 64,
|
2017-02-07 02:54:17 +01:00
|
|
|
groups = { craftitem=1, stick=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:paper", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Paper",
|
|
|
|
inventory_image = "default_paper.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:coal_lump", {
|
2017-01-04 06:20:13 +01:00
|
|
|
description = "Coal",
|
2017-01-07 23:56:52 +01:00
|
|
|
groups = { coal=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
inventory_image = "default_coal_lump.png",
|
|
|
|
stack_max = 64,
|
2017-02-07 06:07:13 +01:00
|
|
|
groups = { craftitem=1, coal=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:charcoal_lump", {
|
2017-01-04 06:20:13 +01:00
|
|
|
description = "Charcoal",
|
2017-01-07 23:56:52 +01:00
|
|
|
groups = { coal=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
inventory_image = "default_charcoal_lump.png",
|
|
|
|
stack_max = 64,
|
2017-02-07 06:07:13 +01:00
|
|
|
groups = { craftitem=1, coal=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:iron_nugget", {
|
2017-01-04 10:56:38 +01:00
|
|
|
description = "Iron Nugget",
|
|
|
|
inventory_image = "default_iron_nugget.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2017-01-04 10:56:38 +01:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:gold_nugget", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Gold Nugget",
|
|
|
|
inventory_image = "default_gold_nugget.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:diamond", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Diamond",
|
|
|
|
inventory_image = "default_diamond.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:clay_lump", {
|
2017-01-10 03:43:31 +01:00
|
|
|
description = "Clay",
|
2015-06-29 19:55:56 +02:00
|
|
|
inventory_image = "default_clay_lump.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-02-11 21:14:40 +01:00
|
|
|
minetest.register_craftitem("mcl_core:iron_ingot", {
|
2017-01-04 05:29:55 +01:00
|
|
|
description = "Iron Ingot",
|
2015-06-29 19:55:56 +02:00
|
|
|
inventory_image = "default_steel_ingot.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:gold_ingot", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Gold Ingot",
|
|
|
|
inventory_image = "default_gold_ingot.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:emerald", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Emerald",
|
|
|
|
inventory_image = "default_emerald.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-02-01 18:51:26 +01:00
|
|
|
minetest.register_craftitem("mcl_core:brick", {
|
2017-01-04 06:20:13 +01:00
|
|
|
description = "Brick",
|
2015-06-29 19:55:56 +02:00
|
|
|
inventory_image = "default_clay_brick.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:flint", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Flint",
|
|
|
|
inventory_image = "default_flint.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem=1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:sugar", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Sugar",
|
|
|
|
inventory_image = "default_sugar.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem = 1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:bowl",{
|
2017-01-12 00:43:35 +01:00
|
|
|
description = "Bowl",
|
|
|
|
inventory_image = "default_bowl.png",
|
|
|
|
stack_max = 64,
|
2017-01-20 04:54:09 +01:00
|
|
|
groups = { craftitem = 1 },
|
2017-01-12 00:43:35 +01:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:apple", {
|
2017-01-04 22:45:10 +01:00
|
|
|
description = "Apple",
|
|
|
|
wield_image = "default_apple.png",
|
|
|
|
inventory_image = "default_apple.png",
|
|
|
|
stack_max = 64,
|
2017-02-16 17:45:33 +01:00
|
|
|
on_place = minetest.item_eat(4),
|
|
|
|
on_secondary_use = minetest.item_eat(4),
|
2017-01-16 14:29:41 +01:00
|
|
|
groups = { food = 2 },
|
2017-01-04 22:45:10 +01:00
|
|
|
})
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_craftitem("mcl_core:apple_gold", {
|
2017-01-12 06:36:44 +01:00
|
|
|
description = core.colorize("#55FFFF", "Golden Apple"),
|
2017-01-04 22:45:10 +01:00
|
|
|
wield_image = "default_apple_gold.png",
|
|
|
|
inventory_image = "default_apple_gold.png",
|
|
|
|
stack_max = 64,
|
2017-02-16 17:45:33 +01:00
|
|
|
on_place = minetest.item_eat(8),
|
|
|
|
on_secondary_use = minetest.item_eat(8),
|
2017-01-16 14:29:41 +01:00
|
|
|
groups = { food = 2 },
|
2017-01-04 22:45:10 +01:00
|
|
|
})
|