text stringlengths 148 3k |
|---|
Minecraft wiki entry for Best_enchantments_guide, associated text: Note: More than 20 Enchantment Protection Factor (EPF) is useless. 1 Level of Protection = 1 EPF, 1 Level of specific type of Protection = 2 EPF. For example, two pieces of armor with Blast Protection IV (EPF 8 each) and a single piece with Protection IV (EPF 4) would give a total EPF of 20 versus explosions. |
Minecraft wiki entry for Development_versions, associated text: "Minecraft Beta - 1.16.210.61 (Xbox One/Windows 10/Android)" β Minecraft Feedback, February 24, 2021. |
Minecraft wiki entry for Piglin, associated text: After a hunt, any nearby piglins pick up the porkchops or cooked porkchops the hoglin dropped but not the leather. Piglin brutes never pick up any porkchops or leather. |
Minecraft wiki entry for Chest_loot, associated text: In Bedrock Edition 1.18.30 (Vanilla Experiments)[upcoming], values represent the number of items expected per chest, averaged over a large number of chests. |
Minecraft wiki entry for Bucket, associated text: Empty buckets can be used to "pick up" a water or lava source block by pressing use item on a block of the relevant type. If the empty bucket is part of a stack and the player's inventory is full, the filled bucket drops in front of the player as an item. |
Minecraft wiki entry for Endermite, associated text: Endermites have a 5% chance to spawn when a player-thrown ender pearl lands. They spawn at the player's position when the pearl lands, not at the pearl's landing site. |
Minecraft wiki entry for Development_versions, associated text: Spread Sculk blocks to wherever a nearby mob dies. The amount it spreads depends on the amount of experience the mob is meant to drop.
Blooms when activated.
Drops only experience when broken without Silk Touch.
Emits light.
Emits soul particles after a mob dies and grows sculk. |
Minecraft wiki entry for Creating_a_challenge_map, associated text: If in multiplayer, a good idea is to have one player could be in the number room, and one could be in the question room. The one in the number room can tell the person in the question room the answer, and then the one in the number room is stuck but he can use the tp command to teleport to the one in the question room and carry on (this will only work if cheats are on). |
Minecraft wiki entry for Development_versions, associated text: Fixed a bug where the Ender Dragon would become invisible when flying towards the portal fountain after dying (MCPE-149119). |
Minecraft wiki entry for Llama, associated text: Llamas spawn at light level 7 or above. They naturally spawn only above grass blocks in savanna plateau / savannaβ[BE only] biomes in herds of 4 llamas and in windswept hills biomes in herds of 4 to 6 llamas. They come in four variants of coat colors: brown, cream, white, gray. Wandering traders always spawn with two leashed trader llamas. |
Minecraft wiki entry for Advancement_guide, associated text: Parent of: Return to Sender | Those Were the Days | Hidden in the Depths | Subspace Bubble | A Terrible Fortress | Who is Cutting Onions? | Oh Shiny | This Boat Has Legs |
Minecraft wiki entry for DeepDive2CHP, associated text: In the real world, at lunch, Harper almost falls out of her seat when Po informs her about Rickyβs coral necklace. Despite that, she, Po, Jodi, Morgan, and Ash all discuss about their plan for exploring the ocean monument after school, but soon the conversation goes back to the coral necklace. Harper asks as to where Ricky got the coral from, and Po says that he bought it from another student, but that the coral looked like it was from the basement lab. Harper heads over to Theo on the far side of the cafeteria to warn him, while also noticing other students wearing coral on rings, headbands, and the like. A student named Giaco points out to Harper that there is a website where people can buy coral jewelry online, much to her dismay. Another student named Anna says that divers are searching for coral instead of pearls due to it becoming a popular trend. Harper tries to explain that what they are doing is damaging the environment, but it goes right over everyoneβs heads. |
Minecraft wiki entry for 3CHP, associated text: Zetta was set up as bait for the illagers. Carl and Rayne were still assembling their traps, and Rift was still busy in setting up his trap. Zetta shouts at the illagers that they had missed an emerald, waving one at them. They charge toward her, but five of them fall for the sand trap, just deep enough so they wouldnβt be able to escape. Zetta then runs toward the pig through, which was empty, except for twenty pressure plates. Zetta carefully steps on them, trying to remember the path that Rift had given her, but she instead jumps over the last few safely. Three illagers fall for this trap as a sandstone wall appears from underneath, however one of them has a crossbow, firing an arrow that sinks into Zettaβs thigh, making her scream out in pain. Just then, Ashtonβs father throws some potatoes at the illagers, causing some of them to charge at the potato field. His mother also gets into the fray, killing one with a garden hoe, making it drop its crossbow and arrows. Ashtonβs mother then fires some arrows at the illagers chasing after his father, killing one with it, and the other two with the garden hoe. More illagers soon appear, so Zetta has a change of plan and decides to head back to the house. Opening the door, Rift immediately pulled her away as three anvils fall from the ceiling to the floor. Zetta points toward the barn, noticing that twenty illagers had gathered there. Rift then orders everyone to come inside the house, in which they do so. Zetta plans to create a diversion, but soon notices that Ashton is still outside with only a shovel to defend himself. Zetta races toward him, ignoring the pain in her thigh, but soon, the air "whipped and cracked" around them. Zetta and Ashton look up at the sky, noticing a pair of purple eyes that had blended in with the stars. The ender dragon had returned, about twice as big as before, and it began to breathe poison on the illagers, making them fade away. Another one was slammed by its snout. A vindicator then breaks Ashtonβs shovel, so the ender dragon decides to plow that particular one deep into the ground. Flying back up, the ender dragon then levels the barn, and flys toward the horizon. Zetta is immediately worried about Sienna Dunes as the dragon appears to head straight for the town hall. |
Minecraft wiki entry for Anvil_file_format, associated text: The 16Γ128Γ16 "Blocks", "Data", "SkyLight" and "BlockLight" tags were moved and repurposed. (see below)
A "Sections" List tag containing Compound tags has been added with up to 16 Compound tags.
Each section has 16Γ16Γ16 "Blocks", "Data", "SkyLight" and "BlockLight" tags.
Each section has a "Y" Byte tag saying which section it is (note that some Y positions can be skipped). 0 is at the bottom of the world and 15 is the topmost section.
Each section also has an optional "Add" tag, which is a DataLayer byte array just like "Data". The "Add" tag is not included in the converter since the old format never had block ids above 255. This extra tag is created whenever a block requires it, so the getTile() method needs to check if the array exists and then combine it with the default block data. In other words, blockId = (add << 8) + baseId.
Each chunk has a 16Γ16 byte array with biome IDs called "Biomes". If this array is missing it is filled when the game starts, as well any -1 values in the array. The converter source provided for developers doesn't include any biome sources, however.
Note that the old format is XZY ((x * 16 + z) * 16 + y) and the new format is YZX ((y * 16 + z) * 16 + x) (see the difference between DataLayer and OldDataLayer).
The new format uses the extension ".mca" instead of ".mcr" (the old format is kept for safety, with the level.dat backed up as "level.dat_mcr").
A new NBT tag type called IntArray was added to the NBT Format (With ID 11) and is used by the "Heightmap" tag. |
Minecraft wiki entry for Redstone_computers, associated text: Redstone
Redstone circuit
Redstone clock
Logic circuit
Memory circuit
Pulse circuit
Transmission circuit
Tutorials/Advanced redstone circuits
Tutorials/Calculator
Tutorials/Printing
Tutorials/Telegraph |
Minecraft wiki entry for Advancement_guide, associated text: When you hit the bullseye from at least 30 blocks away horizontally, you will be rewarded the advancement. |
Minecraft wiki entry for Minecarts, associated text: A detector rail can power 4 adjacent blocks and 2 blocks below it when a minecart, occupied or empty, is on it. This makes it possible to activate powered rails inline without redstone torches or wiring. |
Minecraft wiki entry for Best_enchantments_guide, associated text: Unbreaking is not as necessary on armor as on tools and weapons. Unbreaking III on a piece of armor only makes it last about 43% longer, but for a tool or a weapon, its durability is effectively quadrupled. |
Minecraft wiki entry for Development_versions, associated text: Top face now uses the top texture of cactus, rather than the side texture.
Now no longer contains dirt. |
Minecraft wiki entry for Development_versions, associated text: Improved cloud appearance
Improved sky appearance at different times of day
Sky lighting matches weather during rain and thunder
Improved brightness and volumetrics when teleporting or changing time of day
General brightness improvements
Improved sun and moon intensity
Improvements to the End sky
Sunlight no longer visible when some chunks are not rendered in Nether |
Minecraft wiki entry for Development_versions, associated text: MC-222731 β Captured axolotl constantly tries to leave water.
MC-228802 β Chunks not loading on a server / Cannot invoke cmq.a(int, int, int) because β is null.
MC-228858 β Axolotls despawning though named and on leashes.
MC-229169 β Piglins can no longer hear players breaking protected blocks through walls.
MC-229246 β Piglins and piglin brutes no longer call other piglins after attacking one of them behind walls. |
Minecraft wiki entry for Panorama, associated text: This panorama is exclusively available on Bedrock Edition Previews after Preview 1.18.20.22. And it is the only panorama the player could seen in Previews. |
Minecraft wiki entry for Beehive, associated text: Each time a bee enters a nest or hive covered in pollen, it starts converting it to honey and honeycomb. After it's done, it waits for daylight with no rain (if necessary), then exits to go collect more pollen. When the bee exits, the hive increments its honey level by 1, to a maximum of 5. Once it's full, it changes its appearance to show honey oozing out and, if the block below it isn't a full solid block, starts dripping honey particles. (The dripping honey is decorative; it cannot be collected in a cauldron.) These changes signal that the hive or nest is ready for harvesting. |
Minecraft wiki entry for Water-powered_boat_transportation, associated text: 1. Create the channel steps and make walls around the channel.
2. Place dirt blocks at the bottom of each step on alternating sides.
3. Place a button behind ("downhill") and diagonally up from each dirt block and from each step. Add more wall blocks to accommodate the buttons.
4. Place a water block on the wall block diagonally up ("downhill") from each dirt block. Each wall block that gets a water block is indicated by a torch.
5. Remove the dirt blocks and place a boat at the bottom. Watch it float upward to the top!
This is a steeper hill, with a step depth of 2 blocks for each 1 block increase in elevation. It is constructed exactly the same way. |
Minecraft wiki entry for Development_versions, associated text: Changed the textures of all logs, planks[9] gold and diamond blocks, glowstone, nether bricks, and red sand and sandstone, as well as other blocks.[10]
Minor changes to regular, mossy, cracked, and chiseled stone bricks; and wheat crops.[10] |
Minecraft wiki entry for setblock, associated text: /data β modifies the data tags of a block or entity
/clone β copies blocks from one region to another
/fill β fills a region with a block |
Minecraft wiki entry for Development_versions, associated text: MC-152094 β End city/end ship generation gets cut at chunk borders sometimes.
MC-152636 β Killing a zombie right as it converts into a drowned will drop the loot from zombie while still converting into a drowned. |
Minecraft wiki entry for Villager, associated text: Witches are hostile villager-like mobs that spawn anywhere in the Overworld in light levels of 7 or less, in swamp huts, as part of raids, or when a villager gets struck by lightning. Once a villager becomes a witch it cannot be turned back to a villager. Witches attack by throwing splash potions of harming, slowness, weakness and poison. They also use beneficial potions on themselves, especially healing potions when damaged, fire resistance potions if on fire, and water breathing potions if submerged in water. |
Minecraft wiki entry for Breaking, associated text: No version exists with both netherite tools and this block, but the breaking speed can be inferred from hardness. |
Minecraft wiki entry for GhastMachine2CHP, associated text: Jodi prepares to fight off the figures that resemble villagers. Just then, an arrow zips by behind her, striking one of the figures. Poβs voice then shouts out that Jodi is over there as everyone comes to her aid, fending off and killing the illagers (as Ash calls them). Jodi is proud they they came back, but Morgan is angry about what happened, saying that she couldβve gotten hurt or lost. Jodi asks as to why everyone is here now, wondering if they finished their plans at the exact same time, and Morgan says that they were basically lucky they got here when they did, adding that he himself was worried. Jodi apologizes, but deep down, she feels like Morgan is back to his old self and not wanting to spend time with her. Nonetheless, Harper asks about any clues as to what was going on with the nether portals, and Jodi thinks that the Evoker King uses the Nether as a shortcut to access different areas. Everyone then decides to follow the remaining trail of nether portals. |
Minecraft wiki entry for Tripwire_Hook, associated text: "Experimenting with some new ideas. Perhaps one day we'll see a pair of shears inside every griefers' toolbox." β @Dinnerbone on Twitter, May 28, 2012 |
Minecraft wiki entry for Advancement_guide, associated text: Then, place the target on the ground. Now you need to get a bow and at least one arrow. Shoot on the bullseye (center) of the target from at least 30 blocks away horizontally until you hit the bullseye. Changing the FOV value to 30 may be useful here. |
Minecraft wiki entry for Block_entity, associated text: Block entities store additional information about certain blocks, with the type of information varying by block. In some cases, this information is used to create a more complex model, such as the book on an enchanting table. In other cases, it is used to store contents of an object. Blocks with block entities can be moved by pistons in Bedrock Edition, but not in Java Edition. |
Minecraft wiki entry for Server_list, associated text: Several websites provide a place for server owners to publicly advertise their servers, listing IP addresses and other information about these servers. There were two sites of note (both defunct): the official Classic server list maintained by Mojang Studios and the public server list at the Minecraft Forums. Since Minecraft Forums has shut down their public server list as of June 27th 2018 the only alternative to find Minecraft Servers to play on Java edition is through a public server list found online. There are many popular server lists that mirror how Minecraft Forums system worked when it was live. |
Minecraft wiki entry for Update_LWJGL_(Legacy), associated text: With 2.8.1, on most 64 bit computers, the lwjgl64.dll update will cause a black screen crash. You can revert to the backup version you have saved if needed.
Again on several 64 bit computers, the OpenAL64.dll update can cause a sound glitch that makes bursting sounds. Keep a backup in case you need to rollback.
Version 2.8.5 generally breaks shift-clicking; 2.8.4 and 2.9.0 do not. You can change the url in your browser to access 2.8.4 or 2.9.0 rather than 2.8.5.
LWJGL 2.8.5 has a bug which sends a false signal that the user released all currently pressed keyboard keys when a mouse button is pressed. That means that your building will be significantly slower. Do not update to this version if this bothers you.
This bug seems to be fixed when playing in fullscreen mode (Default F11), or updating to LWJGL 2.9.0. |
Minecraft wiki entry for Development_versions, associated text: MC-13737 β Ridden Horse / Mule / Donkey duplicates when reloading the world.
MC-13774 β Mounting rideable entities (horses/boats/minecarts/pigs) underwater desyncs client/server (ghost mode).
MC-14944 β Weighted pressure plates' names are too long to be renamed.
MC-16413 β Boats toss the player off like horses.
MC-16828 β Horses make the galloping sound + their original walking sound at the same time.
MC-16847 β Horse jump bar becomes stuck if player is kicked off / dismounts while charging a jump.
MC-16887 β Jumping sideways on an unsaddled horse.
MC-17571 β Health overflow isn't removed when health boost ends.
MC-17675 β Sun jitters when time is set to zero and doDaylightCycle is false.
MC-17997 β Horse "Gelding" bug.
MC-18505 β Sitting direction does not fit when riding a horse.
MC-18522 β 3D anaglyth sometimes crashing Minecraft upon toggle in the options menu. |
Minecraft wiki entry for Cocoa_bean_farming, associated text: This design exploits the fact that water will propagate infinitely so long as it flows downhill first, allowing a single water block and single piston to cover any width of wall. This is based on MinecraftMaximizer's design at the bottom of this page, but is considerably more space and material efficient, using a piston rather than a dispenser to release the water. This is because dispenser designs require 2 toggles: 1 to release the water and 1 to stop it; piston designs can work by a single button press. It does require more redstone than Maximizer's, which only uses 1 dust in the dispenser, with the advantage to this design being that it can be triggered from the ground. |
Minecraft wiki entry for float_provider, associated text: type: The type of the block state provider. One of constant, uniform, clamped_normal, or trapezoid.
If type is constant:
value: The constant value to use.
If type is uniform:
value: Gives a number between two bounds.
min_inclusive: The minimum possible value (inclusive).
max_exclusive: The maximum possible value (exclusive).
If type is clamped_normal:
value: The value to use. Calculated by clamp(normal(mean, deviation), min, max)
mean: The mean.
deviation: The deviation.
min: The minimum value to clamp to.
max: The maximum value to clamp to.
If type is trapezoid:
value:
min: The minimum value.
max: The maximum value.
plateau: The range in the middle of the trapezoid distribution that has a uniform distribution. |
Minecraft wiki entry for Ticking_area, associated text: Normally, only the chunks closely surrounding a player are updated by the game. These chunks are said to be in the player's chunk update range. As the player moves through the world, new chunks that come into range are added to the list of updated chunks and older chunks that pass out of range are removed. Only the chunks in the list are updated to reflect the passage of time. This means, for instance, that if a player spends time exploring or in another dimension, crops won't grow and any smelting, or automated farming underway when the player left remains unfinished when the player returns. |
Minecraft wiki entry for Iron_golem_farming, associated text: Villages attempt to spawn iron golems around the village center when the following requirements are met: |
Minecraft wiki entry for Memory, associated text: Design R is a variation of design O, and it adds the ability to reset the output to 0, using the input R. |
Minecraft wiki entry for Development_versions, associated text: beta 1.2.0.31
beta 1.2.0.25
beta 1.2.0.22
beta 1.2.0.18
beta 1.2.0.15
beta 1.2.0.11
beta 1.2.0.9
beta 1.2.0.7
beta 1.2.0.2 |
Minecraft wiki entry for Combat, associated text: Its recommended killing the illager rider first before killing the ravager, as a combination of those two mobs can be dangerous. |
Minecraft wiki entry for Dual_wielding, associated text: In the inventory, there is a slot on the bottom-right side of the player avatar that looks like an outline of a shield. This is called the off-hand |
Minecraft wiki entry for Crowdin, associated text: The list of languages which Minecraft is currently being translated into is displayed on this page. This page also shows languages which are completely translated and which still require translations. |
Minecraft wiki entry for Blue_Dye, associated text: 1 Obtaining
1.1 Crafting
2 Usage
2.1 Crafting ingredient
2.2 Loom ingredient
2.3 Trading
3 Data values
3.1 ID
4 History
5 Issues
6 References |
Minecraft wiki entry for Development_versions, associated text: "Day 9: Typing haters rejoice! A WIP UI driven layer on top of some of the most common slash commands" β @argo_major on Twitter, June 27, 2017 |
Minecraft wiki entry for Development_versions, associated text: MC-791 β Rails are not placed in the direction the player is looking.
MC-1313 β Incorrect sign surface normal causes the text color to not be applied properly.
MC-2140 β Connecting to a server with a space in the name fails.
MC-4240 β Placing fireworks on a side of a block summons it inside that block and makes it stuck under blocks above.
MC-4378 β Iron doors drop when destroyed by hand.
MC-9553 β Wrong rendering order of particles, hitboxes, clouds, transparent blocks, breaking animations and various other transparent textures.
MC-35507 β Block breaking animation renders incorrect at certain angles.
MC-44244 β Lightning causes water, stained glass, entities, and tile entities to disappear.
MC-47941 β TNT and creepers flash white when exploding.
MC-63509 β Banners do not have a breaking animation.
MC-63942 β Transparent block weird rendering when held in hand/worn by an entity such as the player.
MC-68565 β Monsters spawn at daytime at y=256 and don't burn.
MC-88912 β Arrows and trident float when shot at the side of soul sand.
MC-93479 β F3+B hitbox/fishing rod line thickness (width) varies depending on whether F3 is open.
MC-93810 β falling_block becomes invisible if it is near the edge of the world.
MC-97877 β Boat paddle shaded incorrectly.
MC-98656 β Falling blocks do not render correctly when far away from 0,0.
MC-103672 β Steerable ridden entities (boats/pigs/horses) teleport back to their previous position for a short moment on dismount.
MC-107754 β Transparent skin issue when held Map in main hand and off-hand.
MC-125360 β Enchanted tridents do not look enchanted.
MC-136360 β Attached pumpkin and melon stems do not drop seeds when broken.
MC-144588 β The loading screen for reloading resource packs doesn't cover the whole screen if the GUI is hidden.
MC-145879 β Titles are no longer faded when text background opacity is enabled in the accessibility settings.
MC-150242 β The held item tooltip no longer fades correctly.
MC-153216 β Zombie villager overlay turns dark blue/purple when equipped with enchanted armor.
MC-154088 β Some text areas do not support partial transparency.
MC-154779 β Bed breaking texture is not centered properly.
MC-158484 β Game crashes when an illager rides any mob.
MC-158672 β Entering certain chunks causes FPS drops.
MC-165653 β Translucent stairs have z-clipping issue. |
Minecraft wiki entry for Wheat_Seeds, associated text: Wheat seeds can be placed on farmland by right-clicking, where they grow through eight stages. When left alone, wheat seeds planted on farmland grow to become wheat crops, which can be harvested by the player. Planted seeds require a light level of 9 or greater to continue growing. If the light level is 7 or below, the crops un-plant themselves ("pop off"). It is not possible to plant seeds if the light level is too low. |
Minecraft wiki entry for Chorus_Flower, associated text: The growth attempt succeeds if the blocks horizontally adjacent to and above the target block above are all air, and results in the target block becoming a flower block with the same age while the existing flower block turns to chorus plant. |
Minecraft wiki entry for End_Poem, associated text: "Here's the story that convinced me @juliangough was the right guy to write the end game text for Minecraft: https://www.juliangough.com/the-ihole-in-original-apple-fl/" β @notch on Twitter, July 9, 2012 |
Minecraft wiki entry for Village, associated text: Cats spawn naturally inside villages, one for every four beds for a maximum of five.
One wandering trader spawns periodically at a village meeting point.
Two trader llamas spawn periodically at a village meeting point alongside a wandering trader.
In Bedrock Edition, iron golems spawn periodically around the village center if there are at least 10 villagers and 20 beds in a village, for a maximum of two. In Java Edition, they are summoned by a Villager if the villager spawning them has slept. |
Minecraft wiki entry for Graphics_setting, associated text: Leaves are the only block subject to this - other transparent cubes such as spawners are still rendered transparent, likely due to their comparative rarity. |
Minecraft wiki entry for Ryan_Holtz, associated text: "Last screenshot of the year, a bouncy block that wasn't possible before @TheMogMiner's transparency render fix: http://i.imgur.com/kl66PIp.png" β @jeb_ on Twitter, December 20, 2013 |
Minecraft wiki entry for Nether_survival, associated text: An additional light block is needed above the spawner, as shown in the 3D image. If the area around the spawner is to be cleared, another light block is needed below the spawner as well. |
Minecraft wiki entry for Development_versions, associated text: Fixed block placement issues with lighting.[15]
Game performance is now better from before.
Fixed Bottomless pit.
Jack o' Lantern emitting stronger light from the wrong face fixed.
Fixed the witch's texture being weird.
Partially fixed Nether lag by making the server do some of what used to be the client's work and increasing chunk load time slightly.[16]
Fixed some lighting bugs related to upside down slabs and stairs and farmland. |
Minecraft wiki entry for Item_(entity), associated text: Once an item entity's hitbox overlaps with the player's pickup box, it can transfer its items. As many items as can fit in the player inventory, excluding the armor slots and the off-hand slot, are transferred. If any item is transferred, a "plopping" sound is played. If all items are transferred, the items appear to move into the center of the player. The item entity never physically moves, however, which means it can appear to go through lava and blocks in its path. This can happen through blocks that are thinner than a full block, but also through the shared edge of two full blocks. Unlike experience orbs, multiple item entities can be picked up simultaneously. Dropped items have a delay of 10 ticks (half a second) between appearing and being able to be picked up, or 40 ticks (2 seconds) if thrown by a player, dolphin, or fox. |
Minecraft wiki entry for Vex, associated text: If any mob attacks a vex, any vexes in the area become hostile toward it. This also includes Johnny vindicators, who also attack vexes, despite the vindicator being a illager. |
Minecraft wiki entry for Calculator, associated text: Of course, all compilations are made with binary code. This is why this calculator has many different decoders. |
Minecraft wiki entry for Pig_Tales, associated text: The mini site was set up on August 22, 2011 and on August 26th, the Pig Tales conversation was revealed. These Minecraft socks were made by a Swedish company called Happy Socks and were listed on their website here. |
Minecraft wiki entry for Command_blocks_and_functions, associated text: Edit the coordinates inside the brackets to change the direction the player will move
Place pressure plates on top of all the command blocks.
Step on it |
Minecraft wiki entry for Skeleton_Horse, associated text: They can be ridden in water in any depth. Skeleton horses sink in the water and can be ridden along the ocean or river floor. |
Minecraft wiki entry for 1.8, associated text: A pre-release build for Education Edition 1.9.0 was named "beta 1.8.0"; however no full release was designated with this number. |
Minecraft wiki entry for Mining, associated text: With a shaft of 4Γ4 or more, two staircases on opposite sides of the shaft going in the same clockwise direction can be added, allowing horizontal 'satellite shafts' to be added on each flight of stairs on opposite sides if the shaft, allowing for extremely efficient and exhaustive mining, and in shafts of 5Γ5 or more, a staircase can be added on every side of the shaft for an even more productive mine. |
Minecraft wiki entry for Development_versions, associated text: "Unfortunately the seeds have been shuffled again, so worlds will not look like they did in previous snapshots. Hopefully world seeds will be stable after this though, so let the real seed hunt begin!" β @henrikkniberg on Twitter, October 27, 2021 |
Minecraft wiki entry for Server.properties, associated text: When editing server.properties, it is important that the same structure as the original is used, although the order of the lines is arbitrary. The text before the equal sign is the key, which should not be changed. The text after the equal sign is the property's value, which can be edited. Lines that begin with # are comments β altering or removing these lines has no effect on the game. |
Minecraft wiki entry for Jason_Major, associated text: "Good Monday! @argo_major's rabbit improvements (for MC:PE) have now been added back to MC:PC, and will be included in the next snapshot" β @jeb_ on Twitter, November 9, 2015 |
Minecraft wiki entry for Healing, associated text: In Java Edition, spiders on Hard difficulty can spawn with permanent positive status effects, which can include regeneration, making the spider gradually recover health. |
Minecraft wiki entry for Spawner_traps, associated text: In this trap an iron golem is used to kill the monsters for you. To make it, simply make an iron golem in the dungeon and watch it kill for you. However, the iron golem will eventually die (especially if more than 1 mob is spawned), so you'll have to replace it with another, or link it to an iron golem farm. |
Minecraft wiki entry for The_Update_that_Changed_the_World, associated text: Each biome now has a "temperature" value. Biomes with similar temperature values are more likely to generate next to each other.
Biomes can be divided roughly into 4 categories based on how their temperature affects precipitation:
In hot biomes, it never rains.
In warm biomes, it rains at all altitudes.
In cool biomes, it rains at low altitudes and snows at high altitudes.
In snowy biomes, it snows at all altitudes.
Many existing biomes have been updated, and some have received slightly different variants where some key aspect of the generation is different: |
Minecraft wiki entry for Particles, associated text: Particles are rendered as front-facing 2D sprites, meaning they always face the player. They disappear after a short animation, in which they may change sizes and rotate, and cycle between a number of animation sprites. They collide with solid blocks and are slowed by cobwebs, but are unaffected by other entities. |
Minecraft wiki entry for Food, associated text: The following items cannot be eaten on their own. Instead, they are used to craft consumable food items. |
Minecraft wiki entry for Beating_a_challenge_map, associated text: Go slow and steady in these areas. Don't take unnecessary risks. Block off any holes to the Void that you can reach, and be very careful of sand or gravel. |
Minecraft wiki entry for Development_versions, associated text: Curse of Vanishing, Unbreaking III and Mending now appear in the tools as well as the combat tab of the Creative inventory. |
Minecraft wiki entry for End_Stone_Bricks, associated text: 1 Obtaining
1.1 Breaking
1.2 Natural generation
1.3 Crafting
1.4 Stonecutting
2 Usage
2.1 Crafting ingredient
2.2 Stonecutting
2.3 Note Blocks
3 Sounds
4 Data values
4.1 ID
5 Video
6 History
7 Issues |
Minecraft wiki entry for Beach, associated text: 1 Description
2 Variants
2.1 Beach
2.2 Stony Shore
2.3 Snowy Beach
3 Data values
3.1 ID
4 History
5 Gallery
6 See also
7 References |
Minecraft wiki entry for Ore, associated text: Coal, diamond, emerald, their respective deepslate variants, and nether quartz ores drop 1 unit of their corresponding material.
Iron, gold, and their respective deepslate variants drop 1 unit of their raw form.
Copper and deepslate copper ores drop 2-5 raw copper.
Redstone and deepslate redstone ores drop 4β5 redstone dust.
Lapis lazuli and deepslate lapis lazuli ores drop 4β9 lapis lazuli.
Nether gold ore drops 2β6 gold nuggets.
Ancient debris is the exception; it drops itself when mined and must be smelted to obtain netherite scrap. |
Minecraft wiki entry for Soul_(disambiguation), associated text: 1 Minecraft
1.1 Blocks
1.2 Biomes
1.3 Enchanting
2 Minecraft Dungeons
2.1 Resource
2.2 Weapons
2.3 Armor
2.4 Artifacts
2.5 Mobs
2.6 Enchantments
2.7 Locations |
Minecraft wiki entry for Door-based_iron_golem_farming, associated text: 9. Then place down 1 water in each of the 4 villager cups, and 2 water down in between each of the raised triangles to form this pattern: |
Minecraft wiki entry for tickingarea, associated text: Specifies an optional name for a ticking area.
It must be either a single word (no spaces) or a quoted string. |
Minecraft wiki entry for Coral_reef, associated text: 1 Generation
2 Structure
2.1 Variants
3 History
4 Issues
5 Gallery
5.1 Screenshots
5.2 In other media |
Minecraft wiki entry for Spawn_Egg, associated text: A spawn egg is used by pressing use on any surface (top, bottom, or side) with the egg. When used on a top surface, the egg's mob appears with its feet immediately adjacent to the surface, and its ambient sound is played. |
Minecraft wiki entry for Ancient_Debris, associated text: Ancient debris is one of the most valuable resources in Minecraft, due to it being a source of netherite scraps and thus netherite ingots. It is found in Nether most commonly at Y=15, although mining at lower levels is safer due to lower risk of mining into a lava ocean. While strip mining is still a potential and straightforward way of mining for ancient debris, using explosives is a lucrative possibility due to its high blast resistance. Furthermore, beds are commonly used, as they explode when used in Nether and are cheaper than other explosives. It is also possible to use Ghasts or the Wither to mine, however the player should be careful to not die by their explosions and not to break Ancient Debris with blue wither skulls. |
Minecraft wiki entry for Development_versions, associated text: Changed some map colors around again
Reverted the wool colors on maps
Moved dyed blocks such as banners to the new terracotta map color palette |
Minecraft wiki entry for Command_NBT_tags, associated text: Example command: /give @p minecraft:carved_pumpkin{display:{Name:"{\"text\":\"Name here\"}",Lore:["{\"text\":\"Text for lore line\"}"]}} 1 |
Minecraft wiki entry for Adding_beauty_to_constructions, associated text: Appearance wise, many would suggest 4-5 blocks high as a small room, so remember that your house should have varied room ceilings. For example, a living room in a medieval house would usually reach to 5-6 blocks high, while dining halls in a medival castle would reach up 10-12 blocks high, with the rooms reaching a mere 4-5 blocks tall. Your color palette should be used in the roof, as with the rest of your house. This means that for a house made of mainly oak and spruce planks, acacia planks for a ceiling would not fit. |
Minecraft wiki entry for Mountains, associated text: In Bedrock Edition, stony peaks use the same mob spawning chances as meadow for hostile category. As for others: |
Minecraft wiki entry for Walls_and_buttresses, associated text: Picture rail β a thin wooden rail at slightly above head height which provided a way to hang pictures on a plastered wall. You can't drive nails into plaster itself because that is highly likely to break it. Hence the wooden picture rail decided the only height at which you could hang paintings in a room with plastered walls. The picture rail often also gave the upper border for a room's wallpaper. Above the picture rail, wall and ceiling would usually be the same color. |
Minecraft wiki entry for 2010_Indie_of_the_Year_Awards, associated text: The original platform for Minecraft, running on Windows, macOS, and Linux and started through the launcher. The game was initially released for an "early private singleplayer alpha" on May 17, 2009, followed by several development stages (notably Classic, Indev, Infdev, Alpha, Beta) with the game finally being released on November 18, 2011. The Java Edition has seen many significant updates since its official release. |
Minecraft wiki entry for Create_a_Mac_OS_X_startup_daemon, associated text: The final reason that it's better to use sudo, is because every sudo command is logged in your Console, meaning you know what happens, and if you made something incorrect, you can review your log and know what you did to try to repair it. Doing a sudo su - will only show that. However, it's your computer, it's your habits, do whatever you want with it! |
Minecraft wiki entry for Creating_a_resource_pack, associated text: To access the base assets of Minecraft to edit textures, models, or sounds, a file archiver is needed. 7-Zip or WinRAR are suggested. MacOS has a built-in file archiver called "Archive Utility" that can be used, but if an alternative is wanted, The Unarchiver will do. |
Minecraft wiki entry for Breaking, associated text: Any blocks with a breaking time of 0.05 seconds or less can be broken without the 3β10 second (or 6 ticks) delay that occurs between each broken block. See instant breaking above. |
Minecraft wiki entry for PC_Gamer_Demo, associated text: The amount of gunpowder in this chest is supposed to be randomly determined (anywhere from 1 - 88), but the random number generator that determines how much gunpowder is given is seeded with the same number (19) for each new world, thus meaning that it generates the same amount of gunpowder in the same positions each time. It is unknown whether this is a developer oversight, or intentional behavior. |
Minecraft wiki entry for Development_versions, associated text: Shulkers now have a chance to spawn another shulker when hit by a shulker projectile. (MCPE-104826)
When a mob picks up an item, the item can be seen slightly "pulled" towards the mob right as it picks it up.
Blaze fireball will deal knockback on impact.
Acacia trees now grow leaves on every branch below Y=0. (MCPE-151386)
Mobs can no longer spawn on campfires. (MCPE-152770) |
Minecraft wiki entry for TNT_cannons, associated text: The cannon to the right uses dispensers to release TNT into the water. When you press the button, first the long row of dispensers will fire. After a 33-tick delay made the repeaters, leftmost dispenser will dispense the last moment before the TNT detonates, giving the shot a longer range. Note that the leftmost dispenser is higher than the other dispensers, and that the water should be flowing towards the front of the cannon. Dispensers dispense TNT without the characteristic "hop" of ignited TNT, which helps ensure the TNT will land in a much shorter radius than a conventional TNT cannon. |
Minecraft wiki entry for The_Update_that_Changed_the_World, associated text: Note: these track previews have been shortened to 30 seconds on the wiki due to an agreement with the author to allow them on the wiki |
Minecraft wiki entry for Things_not_to_do, associated text: If the player hears a creeper's hiss behind them, they should not attempt to turn around and knock it away as it is completely/nearly impossible to kill a creeper at that point quickly enough to prevent the explosion. Sprinting away to attempt surviving the blast should be the player's highest priority, unless they have a shield, which can block the damage from the creeper explosion, in which case they should turn around and use it. |
Minecraft wiki entry for Blocks, associated text: Note: this section only includes textures that are exclusive to the Texture Update preview resource packs. Unchanged textures from before which were included with the pack, as well as textures that went on to make it into the game officially, are not currently included. |
Minecraft wiki entry for Development_versions, associated text: Beta 1.18.30.26 (Xbox, Windows, Android) or Preview 1.18.30.27 (Xbox, Windows, iOS/iPadOS) is the eighth beta/preview for Bedrock Edition 1.18.30, released on March 16, 2022,[41] which adds the copper horn behind experimental gameplay, and fixes bugs. |
Minecraft wiki entry for Bottle_o%27_Enchanting, associated text: Entity data
Tags common to all entities[show]
Tags common to all projectiles[show]
Item: The item to render as, may be absent.
Tags common to all items[show] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.