Adjusted XP rates for slower leveling

This commit is contained in:
Alex Carroll 2016-04-27 17:32:47 -04:00
parent 4e5ef9435a
commit c3758250e2
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,16 @@
===Simple Experience Mod for MineTest===
by Alex Carroll and Andres Lucca
To check your experience (and level) simply type '/myxp' into the chat.
The following blocks give this amount of experience:
Coal - 3
Copper - 5
Iron - 10
Gold - 15
Diamond - 20
Mese - 30
License: WTFPL (Use it, modify it, redistribute it, do whatever you want with our code.)
See also:

View File

@ -43,7 +43,7 @@ minetest.register_on_dignode(function(pos, oldnode, digger)
amount_of_xp = 10
elseif node_name == "default:stone_with_mese" then
give_xp = true
amount_of_xp = 50
amount_of_xp = 30
end
--add the appropriate amount of xp to the players file