mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
e81c452ab6
- Updated mod using meld to merge properly - Came back the superapples' textures to replace the new buggy ones
48 lines
1.3 KiB
Lua
48 lines
1.3 KiB
Lua
--[[
|
|
Map Tools: item definitions
|
|
|
|
Copyright (c) 2012-2015 Calinou and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
--]]
|
|
|
|
local S = maptools.intllib
|
|
|
|
maptools.creative = maptools.config["hide_from_creative_inventory"]
|
|
|
|
minetest.register_craftitem("maptools:copper_coin", {
|
|
description = S("Copper Coin"),
|
|
inventory_image = "maptools_copper_coin.png",
|
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
|
stack_max = 10000,
|
|
groups = {not_in_creative_inventory = maptools.creative},
|
|
})
|
|
|
|
minetest.register_craftitem("maptools:silver_coin", {
|
|
description = S("Silver Coin"),
|
|
inventory_image = "maptools_silver_coin.png",
|
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
|
stack_max = 10000,
|
|
groups = {not_in_creative_inventory = maptools.creative},
|
|
})
|
|
|
|
minetest.register_craftitem("maptools:gold_coin", {
|
|
description = S("Gold Coin"),
|
|
inventory_image = "maptools_gold_coin.png",
|
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
|
stack_max = 10000,
|
|
groups = {not_in_creative_inventory = maptools.creative},
|
|
})
|
|
|
|
minetest.register_craftitem("maptools:infinitefuel", {
|
|
description = S("Infinite Fuel"),
|
|
inventory_image = "maptools_infinitefuel.png",
|
|
stack_max = 10000,
|
|
groups = {not_in_creative_inventory = maptools.creative},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "fuel",
|
|
recipe = "maptools:infinitefuel",
|
|
burntime = 1000000000,
|
|
})
|