UNPKG

minecraftcommandapi

Version:

An API, which provides functions to generate Minecraft Commands

182 lines (181 loc) 3.68 kB
/** * @name Achievement * @description * Achievements are a way to gradually guide new players into Minecraft and give them challenges to complete. */ export declare enum Achievement { /** * Taking Inventory * Press 'E' to open your inventory */ openInventory = 0, /** * Getting Wood * Attack a tree until a block of wood pops out */ mineWood = 1, /** * Benchmarking * Craft a workbench with four blocks of planks */ buildWorkBench = 2, /** * Time to Mine! * Use planks and sticks to make a pickaxe */ buildPickaxe = 3, /** * Hot Topic * Construct a furnace out of eight cobblestone blocks */ buildFurnace = 4, /** * Acquire Hardware * Smelt an iron ingot */ acquireIron = 5, /** * Time to Farm! * Use planks and sticks to make a hoe */ buildHoe = 6, /** * Bake Bread * Turn wheat into bread */ makeBread = 7, /** * The Lie * Wheat, sugar, milk, and eggs */ bakeCake = 8, /** * Getting an Upgrade * Construct a better pickaxe */ buildBetterPickaxe = 9, /** * Delicious Fish * Catch and cook a fish! */ cookFish = 10, /** * On A Rail * Travel by minecart at least 1 km from where you started */ onARail = 11, /** * Time to Strike! * Use planks and sticks to make a sword */ buildSword = 12, /** * Monster Hunter * Attack and destroy a monster */ killEnemy = 13, /** * Cow Tipper * Harvest some leather */ killCow = 14, /** * When Pigs Fly * Fly a pig off a cliff */ flyPig = 15, /** * Sniper Duel * Kill a skeleton with an arrow from more than 50 meters */ snipeSkeleton = 16, /** * DIAMONDS! * Acquire diamonds with your iron tools */ diamonds = 17, /** * We Need to Go Deeper * Build a portal to the Nether */ portal = 18, /** * Return to Sender * Destroy a Ghast with a fireball */ ghast = 19, /** * Into Fire * Relieve a Blaze of its rod */ blazeRod = 20, /** * Local Brewery * Brew a potion */ potion = 21, /** * The End? * Locate the End */ theEnd = 22, /** * The End. * Defeat the Ender Dragon */ theEnd2 = 23, /** * Enchanter * Use a book, obsidian and diamonds to construct an enchantment table */ enchantments = 24, /** * Overkill * Deal nine hearts of damage in a single hit */ overkill = 25, /** * Librarian * Build some bookshelves to improve your enchantment table */ bookcase = 26, /** * Adventuring Time * Discover all biomes */ exploreAllBiomes = 27, /** * The Beginning? * Spawn the Wither */ spawnWither = 28, /** * The Beginning. * Kill the Wither */ killWither = 29, /** * Beaconator * Create a full beacon */ fullBeacon = 30, /** * Repopulation * Breed two cows with wheat */ breedCow = 31, /** * Diamonds to you! * Throw diamonds at another player */ diamondsToYou = 32, /** * Overpowered * Eat a Notch apple */ overpowered = 33, /** * Every achievement */ all = 34, }