mirror of
https://github.com/mt-mods/currency.git
synced 2024-12-02 00:43:44 +01:00
adjust stack max for coins
based on the notion that since one US nickel weighs exactly 5 grams, and 1 Minegeld cent equals 1 US cent, thus 1000 5-cent Mg coins would be 5 kg. Still a huge amount to carry :-) but not unreasonable.
This commit is contained in:
parent
63384c516a
commit
695e41990d
@ -5,21 +5,21 @@ local S, NS = dofile(MP.."/intllib.lua")
|
|||||||
minetest.register_craftitem("currency:minegeld_cent_5", {
|
minetest.register_craftitem("currency:minegeld_cent_5", {
|
||||||
description = S("5 Minegeld cent coin"),
|
description = S("5 Minegeld cent coin"),
|
||||||
inventory_image = "minegeld_cent_5.png",
|
inventory_image = "minegeld_cent_5.png",
|
||||||
stack_max = 30000,
|
stack_max = 1000,
|
||||||
groups = {minegeld = 1}
|
groups = {minegeld = 1}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("currency:minegeld_cent_10", {
|
minetest.register_craftitem("currency:minegeld_cent_10", {
|
||||||
description = S("10 Minegeld cent coin"),
|
description = S("10 Minegeld cent coin"),
|
||||||
inventory_image = "minegeld_cent_10.png",
|
inventory_image = "minegeld_cent_10.png",
|
||||||
stack_max = 30000,
|
stack_max = 1000,
|
||||||
groups = {minegeld = 1}
|
groups = {minegeld = 1}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("currency:minegeld_cent_25", {
|
minetest.register_craftitem("currency:minegeld_cent_25", {
|
||||||
description = S("25 Minegeld cent coin"),
|
description = S("25 Minegeld cent coin"),
|
||||||
inventory_image = "minegeld_cent_25.png",
|
inventory_image = "minegeld_cent_25.png",
|
||||||
stack_max = 30000,
|
stack_max = 1000,
|
||||||
groups = {minegeld = 1}
|
groups = {minegeld = 1}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user