VanessaE 4394beec6a Convert the modpack into a standalone game for the Minetest engine
Integrated into the game is most of minetest_game as the stable base
2021-02-24 22:05:32 -05:00

22 lines
604 B
Lua

if streets.extendedBy.awards == true then
awards.register_achievement("award_countryroads",{
title = "Roadbuilder",
description = "You built some quite big roads!",
icon = "novicebuilder.png",
trigger = {
type = "place",
node = "streets:asphalt",
target = 175,
},
})
awards.register_achievement("award_underworld",{
title = "Start your sewers!",
description = "You placed your first manhole! Did you know that you can open it with a right-click?",
icon = "novicebuilder.png",
trigger = {
type = "place",
node = "streets:manhole_adv_closed",
target = 1,
},
})
end