1
0
mirror of https://github.com/SmallJoker/bitchange.git synced 2025-07-08 03:00:36 +02:00

Donation box, a better saving, serval updates

This commit is contained in:
SmallJoker
2014-02-23 17:33:26 +01:00
parent f846f5624c
commit eec023f449
9 changed files with 115 additions and 7 deletions

View File

@ -9,7 +9,13 @@ minetest.register_node("bitchange:minecoin_in_ground", {
is_ground_content = true,
groups = {cracky=2},
sounds = default.node_sound_stone_defaults(),
drop = 'bitchange:minecoin',
drop = {
max_items = 2,
items = {
{items = {"bitchange:minecoin"}, rarity = 2 },
{items = {"bitchange:minecoin 3"} }
}
},
})
minetest.register_node("bitchange:mineninth_in_ground", {
@ -18,7 +24,14 @@ minetest.register_node("bitchange:mineninth_in_ground", {
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
drop = 'bitchange:coinbase',
drop = {
max_items = 3,
items = {
{items = {"bitchange:coinbase"}, rarity = 5 },
{items = {"bitchange:coinbase 2"}, rarity = 3 },
{items = {"bitchange:coinbase 6"} }
}
},
})
minetest.register_node("bitchange:minecoinblock", {