Added coin

master
DanDuncombe 2013-11-22 20:06:56 +00:00 committed by Vanessa Ezekowitz
parent 5e5de45f16
commit 4493c22e96
4 changed files with 13 additions and 0 deletions

View File

@ -92,6 +92,12 @@ for i, metal in ipairs(metals.list) do
item1 = "minerals:sylvite",
output = "minerals:flux 4"
})
realtest.register_anvil_recipe({
item1 = "metals:gold_sheet",
output = "money:coin 15",
level = metals.levels[i],
instrument = "chisel"
})
end
--Pig iron --> Wrought iron
realtest.register_anvil_recipe({

1
mods/money/depends.txt Normal file
View File

@ -0,0 +1 @@
metals

6
mods/money/init.lua Normal file
View File

@ -0,0 +1,6 @@
minetest.register_craftitem("money:coin",{
description = "Coin(s)",
tiles = {"coin.png"},
inventory_image = "coin.png",
wield_image = "coin.png",
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB