UNPKG

minecraftcommandapi

Version:

An API, which provides functions to generate Minecraft Commands

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