Mineclonia/mods/mcl_core/craftitems.lua

175 lines
4.2 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
-- mods/default/craftitems.lua
--
-- Crafting items
--
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:stick", {
2015-06-29 17:55:56 +00:00
description = "Stick",
inventory_image = "default_stick.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:paper", {
2015-06-29 17:55:56 +00:00
description = "Paper",
inventory_image = "default_paper.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:book", {
2015-06-29 17:55:56 +00:00
description = "Book",
inventory_image = "default_book.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:coal_lump", {
description = "Coal",
2017-01-07 22:56:52 +00:00
groups = { coal=1 },
2015-06-29 17:55:56 +00:00
inventory_image = "default_coal_lump.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:charcoal_lump", {
description = "Charcoal",
2017-01-07 22:56:52 +00:00
groups = { coal=1 },
2015-06-29 17:55:56 +00:00
inventory_image = "default_charcoal_lump.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:iron_nugget", {
2017-01-04 09:56:38 +00:00
description = "Iron Nugget",
inventory_image = "default_iron_nugget.png",
stack_max = 64,
groups = { craftitem=1 },
2017-01-04 09:56:38 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:gold_nugget", {
2015-06-29 17:55:56 +00:00
description = "Gold Nugget",
inventory_image = "default_gold_nugget.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:diamond", {
2015-06-29 17:55:56 +00:00
description = "Diamond",
inventory_image = "default_diamond.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:clay_lump", {
2017-01-10 02:43:31 +00:00
description = "Clay",
2015-06-29 17:55:56 +00:00
inventory_image = "default_clay_lump.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:steel_ingot", {
2017-01-04 04:29:55 +00:00
description = "Iron Ingot",
2015-06-29 17:55:56 +00:00
inventory_image = "default_steel_ingot.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:gold_ingot", {
2015-06-29 17:55:56 +00:00
description = "Gold Ingot",
inventory_image = "default_gold_ingot.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:emerald", {
2015-06-29 17:55:56 +00:00
description = "Emerald",
inventory_image = "default_emerald.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:clay_brick", {
description = "Brick",
2015-06-29 17:55:56 +00:00
inventory_image = "default_clay_brick.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:flint", {
2015-06-29 17:55:56 +00:00
description = "Flint",
inventory_image = "default_flint.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:gunpowder", {
2015-06-29 17:55:56 +00:00
description = "Gunpowder",
inventory_image = "default_gunpowder.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:glowstone_dust", {
2015-06-29 17:55:56 +00:00
description = "Glowstone Dust",
inventory_image = "default_glowstone_dust.png",
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:sugar", {
2015-06-29 17:55:56 +00:00
description = "Sugar",
inventory_image = "default_sugar.png",
stack_max = 64,
groups = { craftitem = 1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:bowl",{
2017-01-11 23:43:35 +00:00
description = "Bowl",
inventory_image = "default_bowl.png",
stack_max = 64,
groups = { craftitem = 1 },
2017-01-11 23:43:35 +00:00
})
minetest.register_craftitem("mcl_core:prismarine_crystals", {
2015-06-29 17:55:56 +00:00
description = "Prismarine Crystals",
inventory_image = "default_prismarine_crystals.png",
stack_max = 64,
groups = { craftitem = 1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:prismarine_shard", {
2015-06-29 17:55:56 +00:00
description = "Prismarine Shard",
inventory_image = "default_prismarine_shard.png",
stack_max = 64,
groups = { craftitem = 1 },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:quartz_crystal", {
2017-01-04 07:01:40 +00:00
description = "Nether Quartz",
2015-06-29 17:55:56 +00:00
inventory_image = "default_quartz_crystal.png",
stack_max = 64,
groups = { craftitem = 1 },
2017-01-04 04:29:55 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:apple", {
description = "Apple",
wield_image = "default_apple.png",
inventory_image = "default_apple.png",
stack_max = 64,
on_use = minetest.item_eat(4),
groups = { food = 2 },
})
2017-01-31 22:32:56 +00:00
minetest.register_craftitem("mcl_core:apple_gold", {
2017-01-12 05:36:44 +00:00
description = core.colorize("#55FFFF", "Golden Apple"),
wield_image = "default_apple_gold.png",
inventory_image = "default_apple_gold.png",
stack_max = 64,
on_use = minetest.item_eat(8),
groups = { food = 2 },
})
2017-01-31 22:32:56 +00:00
minetest.register_alias("mcl_core:iron_ingot", "mcl_core:steel_ingot")