forked from VoxeLibre/VoxeLibre
Serious Dedication Advancement
This commit is contained in:
parent
7f340b7e2a
commit
79c014f356
|
@ -215,6 +215,13 @@ awards.register_achievement("mcl:countryLode", {
|
|||
icon = "lodestone_side4.png",
|
||||
})
|
||||
|
||||
-- Triggered in mcl_smithing_table
|
||||
awards.register_achievement("mcl:seriousDedication", {
|
||||
title = S("Serious Dedication"),
|
||||
description = S("Use a Netherite Ingot to upgrade a hoe, and then completely reevaluate your life choices"),
|
||||
icon = "farming_tool_netheritehoe.png",
|
||||
})
|
||||
|
||||
-- NON-PC ACHIEVEMENTS (XBox, Pocket Edition, etc.)
|
||||
|
||||
if non_pc_achievements then
|
||||
|
|
|
@ -120,6 +120,11 @@ minetest.register_node("mcl_smithing_table:table", {
|
|||
-- ToDo: make epic sound
|
||||
minetest.sound_play("mcl_smithing_table_upgrade", {pos = pos, max_hear_distance = 16})
|
||||
end
|
||||
if listname == "upgraded_item" then
|
||||
if stack:get_name() == "mcl_farming:hoe_netherite" then
|
||||
awards.unlock(player:get_player_name(), "mcl:seriousDedication")
|
||||
end
|
||||
end
|
||||
|
||||
reset_upgraded_item(pos)
|
||||
end,
|
||||
|
@ -128,6 +133,7 @@ minetest.register_node("mcl_smithing_table:table", {
|
|||
_mcl_hardness = 2.5
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_smithing_table:table",
|
||||
recipe = {
|
||||
|
|
Loading…
Reference in New Issue