aboutsummaryrefslogtreecommitdiff
path: root/craftitems.lua
blob: 47ad95329b9648566f31920be3d484a6f4252525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
minetest.register_craftitem("currency:minegeld", {
    description = "1 MineGeld Note",
    inventory_image = "minegeld.png",
        stack_max = 30000,
		groups = {minegeld = 1}
})

minetest.register_craftitem("currency:minegeld_5", {
    description = "5 MineGeld Note",
    inventory_image = "minegeld_5.png",
        stack_max = 30000,
		groups = {minegeld = 1}
})

minetest.register_craftitem("currency:minegeld_10", {
    description = "10 MineGeld Note",
    inventory_image = "minegeld_10.png",
        stack_max = 30000,
		groups = {minegeld = 1}
})

minetest.register_craftitem("currency:minegeld_bundle", {
    description = "Bundle of random Minegeld notes",
    inventory_image = "minegeld_bundle.png",
        stack_max = 30000,
})