10 lines
350 B
Lua
10 lines
350 B
Lua
minetest.register_craftitem("illuna:donorcoin", {
|
|
description = "Donor Coin: thanks for your donation, buy some special items with this!",
|
|
inventory_image = "donorcoin.png"
|
|
})
|
|
|
|
minetest.register_craftitem("illuna:noobcoin", {
|
|
description = "Noob Coin: Buy some helpful items for getting started!",
|
|
inventory_image = "noobcoin.png"
|
|
})
|