forked from VoxeLibre/VoxeLibre
Wax On and Wax Off Advancements
This commit is contained in:
parent
16f878d3dc
commit
fb651a4922
|
@ -406,6 +406,23 @@ awards.register_achievement("mcl:total_beelocation", {
|
|||
group = "Husbandry",
|
||||
})
|
||||
|
||||
-- Triggered in mcl_copper
|
||||
awards.register_achievement("mcl:wax_on", {
|
||||
title = S("Wax On"),
|
||||
description = S("Apply honeycomb to a copper block to protect it from the elements."),
|
||||
icon = "mcl_honey_honeycomb.png",
|
||||
type = "Advancement",
|
||||
group = "Husbandry",
|
||||
})
|
||||
|
||||
awards.register_achievement("mcl:wax_off", {
|
||||
title = S("Wax Off"),
|
||||
description = S("Scrape wax off of a copper block."),
|
||||
icon = "default_tool_stoneaxe.png",
|
||||
type = "Advancement",
|
||||
group = "Husbandry",
|
||||
})
|
||||
|
||||
-- NON-PC ACHIEVEMENTS (XBox, Pocket Edition, etc.)
|
||||
|
||||
if non_pc_achievements then
|
||||
|
|
|
@ -91,3 +91,7 @@ Bee Our Guest=
|
|||
Use a campfire to collect a bottle of honey from a beehive without aggrivating the bees inside.=
|
||||
Total Beelocation=
|
||||
Move a bee nest, with 3 bees inside, using a silk touch enchanted tool.=
|
||||
Wax On=
|
||||
Apply honeycomb to a copper block to protect it from the elements.=
|
||||
Wax Off=
|
||||
Scrape wax off of a copper block.=
|
||||
|
|
Loading…
Reference in New Issue