Add Voluntary Exile Advancement

This commit is contained in:
PrairieWind 2022-11-04 13:55:56 -06:00 committed by cora
parent ae90cbe3ef
commit 160d7ca6fa
1 changed files with 12 additions and 2 deletions

View File

@ -531,9 +531,19 @@ awards.register_achievement("mcl:obsidian", {
})
awards.register_achievement("mcl:hero_of_the_village", {
title = S("Hero of the village"),
title = S("Hero of the Village"),
description = S("Successfully defend a village from a raid"),
icon = "mcl_raids_hero_of_the_village_icon.png",
type = "Advancement",
group = "Overworld",
group = "Adventure",
secret = true,
})
awards.register_achievement("mcl:voluntary_exile", {
title = S("Voluntary Exile"),
description = S("Kill a raid captain. Maybe consider staying away from the local villages for the time being..."),
icon = "mcl_potions_effect_bad_omen.png",
type = "Advancement",
group = "Adventure",
secret = true,
})