mirror of
https://github.com/mt-mods/currency.git
synced 2024-11-22 12:23:44 +01:00
add 5, 10, 25 cent coins, and 100 Mg note
This commit is contained in:
parent
aa251997f3
commit
03ad637fb1
@ -2,6 +2,27 @@
|
||||
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||||
local S, NS = dofile(MP.."/intllib.lua")
|
||||
|
||||
minetest.register_craftitem("currency:minegeld_cent_5", {
|
||||
description = S("5 Minegeld cent coin"),
|
||||
inventory_image = "minegeld_cent_5.png",
|
||||
stack_max = 30000,
|
||||
groups = {minegeld = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("currency:minegeld_cent_10", {
|
||||
description = S("10 Minegeld cent coin"),
|
||||
inventory_image = "minegeld_cent_10.png",
|
||||
stack_max = 30000,
|
||||
groups = {minegeld = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("currency:minegeld_cent_25", {
|
||||
description = S("25 Minegeld cent coin"),
|
||||
inventory_image = "minegeld_cent_25.png",
|
||||
stack_max = 30000,
|
||||
groups = {minegeld = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("currency:minegeld", {
|
||||
description = S("1 Minegeld Note"),
|
||||
inventory_image = "minegeld.png",
|
||||
@ -30,6 +51,13 @@ minetest.register_craftitem("currency:minegeld_50", {
|
||||
groups = {minegeld = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("currency:minegeld_100", {
|
||||
description = S("100 Minegeld Note"),
|
||||
inventory_image = "minegeld_100.png",
|
||||
stack_max = 30000,
|
||||
groups = {minegeld = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("currency:minegeld_bundle", {
|
||||
description = S("Bundle of random Minegeld notes"),
|
||||
inventory_image = "minegeld_bundle.png",
|
||||
|
BIN
textures/minegeld_100.png
Normal file
BIN
textures/minegeld_100.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
BIN
textures/minegeld_cent_10.png
Normal file
BIN
textures/minegeld_cent_10.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/minegeld_cent_25.png
Normal file
BIN
textures/minegeld_cent_25.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
textures/minegeld_cent_5.png
Normal file
BIN
textures/minegeld_cent_5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
Loading…
Reference in New Issue
Block a user