From cc9052ca86c72c518136191240bd8616eacc1907 Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Fri, 28 Jan 2022 10:43:29 +0000 Subject: [PATCH] some "nice" new achievement names --- mods/HUD/mcl_achievements/init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/HUD/mcl_achievements/init.lua b/mods/HUD/mcl_achievements/init.lua index c963773d..1e08a260 100644 --- a/mods/HUD/mcl_achievements/init.lua +++ b/mods/HUD/mcl_achievements/init.lua @@ -69,7 +69,7 @@ awards.register_achievement("mcl:bakeCake", { } }) awards.register_achievement("mcl:buildBetterPickaxe", { - title = S("Getting an Upgrade"), + title = S("Now we have the good stuff"), -- TODO: This achievement should support all non-wood pickaxes description = S("Craft a stone pickaxe using sticks and cobblestone."), icon = "default_tool_stonepick.png", @@ -80,7 +80,7 @@ awards.register_achievement("mcl:buildBetterPickaxe", { } }) awards.register_achievement("mcl:buildSword", { - title = S("Time to Strike!"), + title = S("Kinda sUs!"), description = S("Craft a wooden sword using wooden planks and sticks on a crafting table."), icon = "default_tool_woodsword.png", trigger = { @@ -104,7 +104,7 @@ awards.register_achievement("mcl:bookcase", { -- Item pickup achievements: These are awarded when picking up a certain item. -- The achivements are manually given in the mod mcl_item_entity. awards.register_achievement("mcl:diamonds", { - title = S("DIAMONDS!"), + title = S("Look how rich I am!!!!"), description = S("Pick up a diamond from the floor."), icon = "mcl_core_diamond_ore.png", }) @@ -115,7 +115,7 @@ awards.register_achievement("mcl:blazeRod", { }) awards.register_achievement("mcl:killCow", { - title = S("Cow Tipper"), + title = S("IMPOSTER"), description = S("Pick up leather from the floor.\nHint: Cows and some other animals have a chance to drop leather, when killed."), icon = "mcl_mobitems_leather.png", }) @@ -241,12 +241,12 @@ end) awards.register_achievement("mcl:stoneAge", { - title = S("Stone Age"), + title = S("UGAUGA"), description = S("Mine a stone with new pickaxe."), icon = "default_cobble.png", }) awards.register_achievement("mcl:hotStuff", { - title = S("Hot Stuff"), + title = S("HOTHOTHOTHOTHOTHOT"), description = S("Put lava in a bucket."), icon = "bucket_lava.png", })