forked from mtcontrib/awards
Add Pyromaniac and Firefighter awards
This commit is contained in:
parent
fd79fe6521
commit
9264c75f0a
|
@ -9,3 +9,4 @@ beds?
|
||||||
wool?
|
wool?
|
||||||
vessels?
|
vessels?
|
||||||
moreblocks?
|
moreblocks?
|
||||||
|
fire?
|
||||||
|
|
25
init.lua
25
init.lua
|
@ -107,6 +107,31 @@ if minetest.get_modpath("unified_inventory") ~= nil then
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if minetest.get_modpath("fire") ~= nil then
|
||||||
|
awards.register_achievement("awards_pyro", {
|
||||||
|
title = S("Pyromaniac"),
|
||||||
|
description = S("Craft 8 times flint and steel."),
|
||||||
|
icon = "fire_flint_steel.png",
|
||||||
|
trigger = {
|
||||||
|
type = "craft",
|
||||||
|
item = "fire:flint_and_steel",
|
||||||
|
target = 8
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if minetest.setting_getbool("disable_fire") ~= true then
|
||||||
|
awards.register_achievement("awards_figherfighter", {
|
||||||
|
title = S("Firefighter"),
|
||||||
|
description = S("Put out 1000 fires."),
|
||||||
|
icon = "fire_basic_flame.png",
|
||||||
|
trigger = {
|
||||||
|
type = "dig",
|
||||||
|
node = "fire:basic_flame",
|
||||||
|
target = 1000
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
awards.register_achievement("awards_stonebrick", {
|
awards.register_achievement("awards_stonebrick", {
|
||||||
title = S("Outpost"),
|
title = S("Outpost"),
|
||||||
description = S("Craft 200 stone bricks."),
|
description = S("Craft 200 stone bricks."),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user