summaryrefslogtreecommitdiff
path: root/init.lua
blob: eb3dc45e84dbad583a07c7e4dc2d57dc923d6889 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
--	AWARDS
--	   by Rubenwardy, CC-BY-SA
-------------------------------------------------------
-- this is the init file for the award mod
-------------------------------------------------------

dofile(minetest.get_modpath("awards").."/api.lua")

-- Found some Mese!
awards.register_achievement("award_mesefind",{
	title = "First Mese Find",
	description = "Found some Mese!",
})

awards.register_onDig(function(player,data)
	if not data['count']['default'] or not data['count']['default']['mese'] then
		return
	end

	if data['count']['default']['mese'] > 0 then
		return "award_mesefind"
	end
end)


-- First Wood Placed!
awards.register_achievement("award_woodplace",{
	title = "Foundations",
	description = "First Wood Placed!",
})

awards.register_onPlace(function(player,data)
	if not data['place']['default'] or not data['place']['default']['mese'] then
		return
	end

	if data['place']['default']['wood'] > 0 then
		return "award_woodplace"
	end
end)