text stringlengths 148 3k |
|---|
Minecraft wiki entry for Wither_cage, associated text: A simple & cheap wither cage with a boat as the Head Lock, cobblestone walls as Ground Lock and enchantment tables that tricks the wither into thinking it can shoot through it. (Outdated) |
Minecraft wiki entry for Memory, associated text: Design A demonstrates that a TFF can be made solely with redstone dust and torches, but it sprawls over 9×7×3 blocks. Design B is slightly unreliable for very long pulses; while the input is on, the piston will toggle every time the block below the piston arm is updated. |
Minecraft wiki entry for Configured_structure_feature, associated text: The root tag
type: The type of structure feature. Must be one of the types listed below.
biomes: The biome tag that this structure is allowed to spawn in.
adapt_noise: Optional. If true, terrain noise is adjusted so all pieces will generate on solid ground. Used for nether fossils, pillager outposts, strongholds, and villages. Defaults to false.
spawn_overrides:[needs testing] Overrides the mobs that can spawn in this structure. Used for things like blaze and wither skeleton spawning in nether fortresses. Required, but can be an empty compound.
config:
Configuration properties of this structure feature type, specified below. |
Minecraft wiki entry for 0.4_releases, associated text: This guide is a simplified overview of all the changes in the Bedrock Edition 0.4.x releases, which assumes at least some familiarity with Bedrock Edition 0.3.x releases. |
Minecraft wiki entry for Eye_of_Ender, associated text: A super-easy stronghold triangulation tool
JSFiddle Eye of Ender triangulator - can guess the location of other 2 strongholds in the first ring
Minecraft Stronghold Locator Eye of Ender throw plotting visualizer - zoomable to show all possible stronghold rings
Python Eye of Ender throw plotting tool
HTML Eye of Ender throw plotting visualizer (not updated after 1.9 stronghold placement changes)
Chunk Base Stronghold Finder (seed-based)
Amidst - File-based world visualizer
Find strongholds by analyzing stronghold.dat file |
Minecraft wiki entry for Rail, associated text: A rail cannot be attached to the side or bottom of any block, but attempting to make such an attachment may cause the rail to attach to the top of a block under the destination space. For example, if a fence is on the ground, attempting to attach a rail to the side of the fence causes the rail to be attached to the top of the ground next to the fence instead. |
Minecraft wiki entry for Daylight_Detector, associated text: A daylight detector is 0.375 blocks high (3/8ths of a block). Daylight detectors can be moved by pistons.[Bedrock Edition only] Water and lava flows around daylight detectors without affecting them. |
Minecraft wiki entry for Development_versions, associated text: ⇧ Shift+clicking into a chest with no empty slots results in a slightly glitched "Saving Chunks" screen. |
Minecraft wiki entry for JSON_format, associated text: conditions:
block: The block that was placed. Accepts block IDs.
item: The item that was used to place the block before the item was consumed.
Tags common to all items[show]
location: The location of the block that was placed.
Tags common to all locations[show]
state: The block states of the block.
<state_name>: A single block state, with the key name being the state name and the value being the required value of that state.
player: The player that would get the advancement. May also be a list of predicates that must pass in order for the trigger to activate.
All possible conditions for entities[show] |
Minecraft wiki entry for Development_versions, associated text: These snapshots were only released as clients; no corresponding server was released. However, these snapshots share their protocol version number with snapshots 13w09c through 13w11a, meaning that 13w12~ can connect to servers running any of those snapshots. |
Minecraft wiki entry for Element_Constructor, associated text: The element constructor is a block used in chemistry. It allows the construction of elements by adjusting the number of protons, electrons and neutrons. |
Minecraft wiki entry for Spawner, associated text: In Bedrock Edition, they have a hitbox slightly smaller than a full block, and therefore, one can walk on the edge of a supporting full block directly below the spawner. |
Minecraft wiki entry for Mob_farm, associated text: Farms floating high in the sky can achieve the best spawn rates during the day and night and you are far away from caves, as they represent the only viable spawn ground. However, building one in survival is rather dangerous, and due to their height they stop working completely when you descend underground to mine resources. To produce loot, you must stay at the height of the farm. |
Minecraft wiki entry for Gold_Ingot, associated text: Zombified piglins have a 2.5% (1⁄40) chance of dropping a gold ingot if killed by a player or tamed wolf. The chance is increased by 1% per level of Looting, for a maximum of 5.5% with Looting III. |
Minecraft wiki entry for Development_versions, associated text: 1.14.3 - Combat Test
Combat Test 2
Combat Test 3
Combat Test 4
Combat Test 5
Combat Test 6
Combat Test 7c
Combat Test 7
Combat Test 7b
Combat Test 8b
Combat Test 8
Combat Test 8c |
Minecraft wiki entry for Entity, associated text: Entities are lit according to the light level of the block their position is in. For example, if a minecart runs over a non-straight track directly into a solid block, it turns black because solid blocks always have a light level of 0; arrows are also sometimes seen to turn black, especially if fired shallowly into the ceiling. |
Minecraft wiki entry for Schematic_file_format, associated text: This article is about the unofficial format used by many community programs. For the similar format used by structure blocks, see Structure block file format. |
Minecraft wiki entry for Piston_uses, associated text: A redstone operated "Sticky Piston Draw Bridge" that can be used to cross a lava pit, it also acts as a moat as it can expand and contract to reveal or hide a secret path. |
Minecraft wiki entry for Village_%26_Pillage, associated text: 1.92, 1.93, 1.94, and 1.95 fixed several bugs; the latter was the final update for the PlayStation 4 Edition. |
Code example for Mineflayer API: const mineflayer = require('mineflayer')
if (process.argv.length < 4 || process.argv.length > 6) {
console.log('Usage : node bee.js <host> <port> [<name>] [<password>]')
process.exit(1)
}
const bot = mineflayer.createBot({
host: process.argv[2],
port: parseInt(process.argv[3]),
username: process.argv[4] ? process.argv[4] : 'bee',
password: process.argv[5],
verbose: true
})
// /gamemode creative bee
async function loop (n) {
for (let i = 0; i <= n; i++) {
const { position } = bot.entity
await bot.creative.flyTo(position.offset(Math.sin(i) * 2, 0.5, Math.cos(i) * 2))
}
bot.chat('My flight was amazing !')
}
bot.on('chat', async (username, message) => {
if (username === bot.username) return
switch (message) {
case 'loaded':
await bot.waitForChunksToLoad()
bot.chat('Ready!')
break
case 'fly':
bot.creative.startFlying()
loop(10)
break
}
})
|
Minecraft wiki entry for ModJam, associated text: Fimbulwinter (by javisel, MotorGorilla1, cipher_zero_x)
Ice Sculptures (by hnOsmium0001)
Polarizing Biomes (by bl4ckscor3)
Snow Under Trees (by bl4ckscor3)
Snow Variants (by Trikzon)
Snow! Real Magic! (by Snownee_)
Snowmancy (by bl4ckscor3)
Spruce Willis the Xmas Tree (by ProxyNeko, Coda1552, and jriwanek)
Thicker Snow on Grass (by tfarecnim)
Winter Ambiance (by Willbl3pic)
Winter Decorations (by Willbl3pic) |
Minecraft wiki entry for TNT_cannons, associated text: Here is a video covering some general types of TNT cannons and is a good introduction to them. https://www.youtube.com/watch?v=dtgMokm-8IQ |
Minecraft wiki entry for Hoe, associated text: Like other diamond tools, a diamond hoe can be upgraded to a netherite hoe, although the only benefit is the increased durability (plus getting an advancement in Java Edition). The hoe's performance as a gardening tool or a weapon is unchanged by the upgrade. |
Minecraft wiki entry for Resource_Pack, associated text: This article is about the current system to customize assets. For other uses, see Texture Pack (disambiguation). |
Minecraft wiki entry for Mushroom_farming, associated text: In the nether, nylium is a good choice for growing huge mushrooms on. Note that you can spread nylium to adjacent netherrack blocks by using bone meal on the netherrack. |
Minecraft wiki entry for Spring, associated text: A spring is a single unit of liquid that generates within the world, flowing out into spaces level with or lower than the source. There are three main categories of fluid springs. |
Minecraft wiki entry for Villager, associated text: A villager, either adult or baby, does not ordinarily drop any items or experience when killed. However, when a player holds an emerald or other item a villager is willing to trade for, the item it offers in trade appears in its hands, alternating between items if there are multiple items the villager wants to trade. |
Minecraft wiki entry for Seagrass_farming, associated text: This tutorial seeks to teach you how to farm seagrass, which are plants that are naturally found underwater. |
Minecraft wiki entry for Development_versions, associated text: Fixed several crashes that occurred during gameplay.
Fixed a crash that occurred when using Pick Block in a spot where a mob just died.
Increased performance for menu load times.
Fixed water flowing incorrectly from stairs that contained water source blocks.
Top snow will now break once it hits water.
Fixed received items disappearing after trading a renamed item with a villager. (MCPE-33830)
Maps once again update properly when held in the main hand. (MCPE-34169)
Players are now able to return to the Overworld if an end portal is on their spawn point.
Lowered the volume of the 'punching air' sound effect.
Fixed guardians spawning even when mob spawning is disabled. (MCPE-34027)
Fixed strays and skeletons having trouble leaving the water to attack players.
Food particles no longer gradually change position after swimming and will always come out of the player's mouth area. (MCPE-33984)
Observers will now detect changes with droppers, dispensers, brewing stands, farmland, saplings, sugar cane, fire, and grass blocks.
Items can once again be crafted from the recipe book while the Craftable filter is disabled and the player only has enough materials to craft a single recipe.
Fixed the speed boost given by dolphins being too slow when wearing armor with Depth Strider.
Wolves no longer get stuck attacking skeletons that are underwater.
Donkeys and mules can now only be ridden by players after being tamed. (MCPE-25737)
Blazes now attack snow golems (MCPE-13191)
Using the '/setblock' command on redstone components will now properly update and power the mechanism. (MCPE-21218)
Command blocks now correctly conduct redstone power. (MCPE-33021)
Operator permissions are now granted to players when the host creates a world with Trust Player Permissions set to Operator.
Buckets now stack properly when getting ejected from crafting output.
Experience orbs spawned with the '/summon' command will now grant experience to players.
The gamepad cursor can now be used to navigate villager trades. (MCPE-33330)
Fixed overlapping issues with the dragon head equipped on the inventory screen.
The crafting table's output field hover state now matches the field's size.
Selecting the output of an uncraftable recipe no longer causes the output item to disappear. |
Minecraft wiki entry for Redstone_Ore, associated text: In Java Edition, redstone ore generates in two batches per chunk. The first batch attempts to generate 4 times per chunk, in blobs of 0–10, evenly from levels -63 to 15. The second batch attempts to generate 8 times per chunk, in blobs of 0–10, from levels -63 to -34, being more common the lower the elevation. Redstone ore can replace stone, granite, diorite, andesite, tuff, and deepslate. If it replaces tuff or deepslate, it will become deepslate redstone ore. |
Minecraft wiki entry for Fish, associated text: A live fish can be captured by using a water bucket on a fish, to obtain a bucket of fish, which is the only way to obtain the live mob in item form. Using the bucket of fish on a water source block transfers the fish from the bucket to the body of water. A water bucket may also be used on axolotls in this manner. |
Minecraft wiki entry for Lifeboat, associated text: Survival Games was one of Lifeboat's most famous gamemodes. Each match lasts up to eight minutes and each player spawns on individual pedestals around the centerpiece of the map, Up to 24 players can join. Chests are located around the map in various locations, where players can find armor and weapons to aid them in battle. Players can play solo or in teams, but to win, they must be the last player alive. If the eight minutes are up and a winner hasn't been determined, all players are teleported to the deathmatch arena, where everyone who is left standing will fight each other. |
Minecraft wiki entry for Kelp_farming, associated text: A helmet enchanted with Respiration can allow you to stay underwater for longer. Such a helmet allows for up to an entire minute of time underwater. A Turtle Shell helmet would also be helpful as it allows you to instantly recover air when breaking the surface.
Moving underwater can also be slow. This can be helped with boots enchanted with Depth Strider. A Riptide trident may also be helpful. If mining out an area for a farm, you may also want Aqua Affinity.
Some potions can also be helpful. A potion of Water Breathing can allow you to stay underwater indefinitely and a potion of Night Vision can allow you to see much better.
A sword with Smite may be helpful for fending off Drowned.
Using Ice to create Water Sources with a Silk Touch Pickaxe is more convenient and effective than using water buckets to place water. |
Minecraft wiki entry for clear, associated text: In Bedrock Edition, items dragging from the inventory can also be cleared, while in Java Edition only if not in creative mode can these be cleared. |
Minecraft wiki entry for Ink_Sac, associated text: An ink sac can be created from its base elements, using the compound creator.[Bedrock and Education editions only] |
Minecraft wiki entry for Development_versions, associated text: "Purchasing Options for Minecraft: Education Edition - Camps and Clubs Beta (version 1.14.60)" (archived) – Minecraft Education Edition Support. |
Minecraft wiki entry for Hardcore_mode, associated text: Close any other applications.
Weigh the advantages of features that may cause low FPS (such as particles, graphics type, etc.)
In particular, turning down the Rendering Distance (in [Esc] > Options > Video Settings) can greatly improve FPS as well as reducing lag spikes. In addition to performance, leaving the Rendering Distance at 2 effectively stops almost all mobs from spawning in low light levels, thus nullifying the greatest challenge associated with hardcore mode. Do note, however, that this may feel cheaty and may reduce the fun of the experience.
Jungles and waterfalls cause lag on low-end systems. In some circumstances, client-side chunk update lag is instantly fatal. Consider restarting the game or reducing your chunk radius if you spawn in a jungle or mountains. |
Minecraft wiki entry for Development_versions, associated text: Mixer Interaction: Game commands can now be linked to interactive buttons for viewers to interact directly with the game.
Mobile Broadcasting: Native broadcasting for several streaming services has been added. |
Minecraft wiki entry for Structure_Block, associated text: Load mode allows the player to load and rotate saved structure files. This is the default mode when a structure block is first placed. |
Minecraft wiki entry for Overworld_Update, associated text: The Overworld Update is the name for Minecraft: Pocket Edition version Alpha v0.14.0, a major update released on February 18, 2016. |
Minecraft wiki entry for Minecarts, associated text: A junction that has multiple destinations can be set up by expanding the junctions. In the design to the right, the rider is given much more time to select their destination than a two-way junction. They can select any destination by first selecting left or right, then forward or backward. This design doesn't scale well but can be used in sequence to create any number of destinations. |
Minecraft wiki entry for Historical_effects, associated text: Interestingly, despite often having angular features, these are not actually lost with the precision loss as one may expect, and are somewhat preserved. However, the angle becomes clearly shallower. |
Minecraft wiki entry for Rail, associated text: If there are no other rails adjacent, or if placed beside an existing stretch of track of any type, then in Bedrock Edition the new rail orients itself as a straight north-south track, and in Java Edition the new rail orients itself in the direction the player is facing.
A new rail placed at the end of an existing stretch of track continues the existing track in the same direction, either east-west or north-south.
If there are two adjacent rails on its level, or one level up or down, the newly placed rail configures itself as straight or curved as needed to connect the other two.
If placed between three adjacent rails (forming a T-junction) the newly placed rail configures itself as curved to join two of the sides. |
Minecraft wiki entry for Fox, associated text: If a fox is killed while holding a totem of undying, then the fox consumes the totem and revives itself instead of dropping the totem. |
Minecraft wiki entry for Player_versus_Player, associated text: Simply put, a raid is the theft of materials from the property of another player and killing enemy team members. Raids have a pro and a con. |
Minecraft wiki entry for Piston, associated text: A piston cannot move itself via a "hook" constructed of slime blocks, but self-propelled contraptions can be created with multiple pistons. For that, see the article Tutorials/Flying machines. |
Minecraft wiki entry for Bucket_of_aquatic_mob, associated text: Issues relating to "Bucket of Fish", "Bucket of Mob", "Bucket of Cod", "Bucket of Salmon", "Bucket of Pufferfish", or "Bucket of Tropical Fish" are maintained on the bug tracker. Report issues there. |
Minecraft wiki entry for Beating_a_challenge_map, associated text: Sand traps that expose areas are unavoidable; however, you can avoid the redstone-style sand trap by being wary. If you see a chest, furnace, or something of that sort, make sure you have a way of getting away before breaking it. |
Minecraft wiki entry for Block_of_Raw_Copper, associated text: Blocks of raw copper can be found below Y=0 most often in beach biomes. They can also be found rarely inside of huge ore veins above Y=0. |
Minecraft wiki entry for Squid, associated text: Hitting a squid underwater causes them to rise approximately 1⁄3–1⁄2 block.
Squid cannot be damaged by attacking their arms.
Squid don't have a death animation.[4]
Squid and glow squid are the only mollusks in Minecraft.
Squid behave like some land mobs and attempt to ride a minecart.
Squid were the first passive mob to spawn at any light level, in water, and without grass.
The squid's idle sound is barely audible.
If a squid is out of the water, its arms swing more slowly as its oxygen meter goes down. When 15 seconds have passed, its arms stop swinging and the squid begins to suffocate.[Bedrock Edition only]
In-game squid have eight arms, but in real life they also have two long tentacles. The in-game squid is thus closer to an octopus.
In-game squid have a gaping, tooth-lined mouth but as passive mobs they're completely harmless. Real-life squid, like all cephalopods, have a beak instead of teeth.
Squid are not affected by the "Dinnerbone" and "Grumm" name tag easter egg.[5] |
Minecraft wiki entry for Advancement_guide, associated text: To get this advancement, you must collect dragon's breath. To do this, use a glass bottle on the dragon's breath particles, and you will get the advancement as soon as there is a bottle of dragon's breath in your inventory. |
Minecraft wiki entry for Components, associated text: : The entity's root tag.
TrustedPlayersAmount: The number of players who are trusted by this entity.
TrustedPlayer<num>: A player's Unique ID. Note that <num> counts from 0. |
Minecraft wiki entry for Enchanted_Book, associated text: Players can create an enchanted book by enchanting a book on an enchantment table. Books have a decreased chance of getting multiple enchantments (specifically, if multiple enchantments would be added, then one is removed at random), and have a lower "enchantability level" than most other items. Treasure enchantments such as Mending cannot be obtained from an enchantment table. |
Minecraft wiki entry for 1.11, associated text: Bedrock Edition 1.11.0
Bedrock Edition beta 1.11.0.1
Bedrock Edition beta 1.11.0.3
Bedrock Edition beta 1.11.0.4
Bedrock Edition beta 1.11.0.5
Bedrock Edition beta 1.11.0.7
Bedrock Edition beta 1.11.0.8
Bedrock Edition beta 1.11.0.9
Bedrock Edition beta 1.11.0.10
Bedrock Edition 1.11.1
Bedrock Edition 1.11.2
Bedrock Edition 1.11.3
Bedrock Edition 1.11.4 |
Minecraft wiki entry for The_Update_that_Changed_the_World, associated text: Acacia (Savanna Biome) and Dark Oak (Roofed Forest biome) trees, wood, planks, slabs, and stairs.
See trees for more info.
3 new fish:
Salmon, Clownfish (now called tropical fish), and Pufferfish.
See fish for more info.
10 new flowers added as decoration and/or more easily retrievable dye ingredients
Roses removed and replaced with poppy.
Blue Orchid, Allium, Azure Bluet, Tulips, Oxeye Daisy, Sunflower, Lilac, Rose Bush, and Peony.
See flowers for more info.
Potion of Water Breathing
Made by brewing a pufferfish with an awkward potion.
See fish or Brewing for more info.
Stained Glass and Stained Glass Panes.
Made using a square of 8 glass around a single dye in the middle.
See Stained Glass for more info. |
Minecraft wiki entry for Development_versions, associated text: A new climbable block that can be crafted using bamboo and string.
The player can climb up a block by jumping and go down by pressing sneak.
The player can sneak by pressing sneak when there's no other scaffolding block below. |
Minecraft wiki entry for Mud_Bricks, associated text: In real life, mudbricks are made with mud mixed together with straw, and then heated to increase their toughness. They have a long history of being used as building materials, dating back at least 5,000 years. |
Minecraft wiki entry for Shelters, associated text: Easier to manage but somewhat less useful than the above two projects, farming sugar cane and cactus underground requires little effort. A cactus farm requires sand to grow, and sugar cane needs to be properly irrigated with water within one block of it. If you don't want to spend lots of time harvesting your cactus, place a three-block-tall pillar next to where you want your cactus (See Farming for more info). |
Minecraft wiki entry for Stronghold, associated text: Most parts of the stronghold can be overwritten by caves, mineshafts, fossils or dungeons; but it is rare for the end portal to be replaced, which would force a player to find one of the other strongholds, as a portal can be activated only with all 12 frame blocks present. Canyons do not overwrite strongholds. |
Minecraft wiki entry for Metadata_variants, associated text: 1 Removed in 1.8 (14w26a)
1.1 Faceless pumpkins and jack o'lanterns
1.2 Faceless and exceptional furnaces
1.3 Weird pistons
1.4 Six-sided hay bale
1.5 Green shrub
1.6 Overgrown cocoa
1.7 Overgrown wheat
1.8 Overgrown melon and pumpkin stems
1.9 Overeaten cakes
1.10 Minor removed block variants
1.10.1 Invisible stairs
1.10.2 Wall sign with full block hitbox
1.10.3 Invisible random ladders
1.10.4 Incorrectly modeled torches
1.10.5 Strange buttons
1.10.6 Bottomless and bricking hoppers
1.10.7 Nether portal post
1.10.8 Boring variants
1.10.8.1 Blocks that did not use block metadata at all
1.10.8.2 Blocks that used only some of the available block metadata
1.10.8.3 Weird variants eventually replaced with normal blocks
2 Removed in 1.13 (17w47a)
2.1 Redundant seamless double slabs
2.2 Snowy dirt and snowy coarse dirt |
Minecraft wiki entry for Custom_Blocks, associated text: For examples of all the different kinds of block you can add, please see the default block config used by Tectonicus itself: http://www.triangularpixels.com/Tectonicus/defaultBlockConfig.xml |
Minecraft wiki entry for Spider, associated text: Even though normal spiders do not inflict the Poison status effect, they are immune to it. They are also immune to the slowing applied to most mobs when walking through cobwebs. |
Minecraft wiki entry for Time-saving_tips, associated text: Always use the best tools you can afford. Iron tools work faster than stone ones, and diamond tools work faster than iron ones. Note that if it's early in the game and you only have half a dozen iron ingots, you cannot really afford to use iron shovels; you should reserve your first few iron ingots for a sword, a pickaxe and armor. But by the time you have your first diamonds, you should have stacks of iron, and then it's fine to use iron tools for all your everyday uses. A similar consideration applies once you have diamonds in excess.
Unless you have high-durability diamond items, always carry spare tools or the materials to make them. At the very minimum always carry wood, as that allows you to make crafting tables and emergency wooden tools. This helps you avoid wasting time on long trips back to your workshop or main storage. The only reason to return home should be to unload, or because you've used up all the resources you took with you, not merely to collect some minor spare parts.
Don't carry worn-out tools. Once a tool has low Durability, leave it behind at your base and make a new one. It doesn't matter if an old tool sits in a chest for a while before being used in a repair, and it's more efficient to repair tools in batches. This trick also reduces the risk of accidentally breaking a valuable tool rather than using it in a repair.
Treat low-durability tools (wood, stone) as disposable unless you are very short on resources. The small 'repair bonus' on these items only gives another half-dozen uses, which is probably not worth the time needed for a repair (however, taking advantage of the repair feature may save some inventory space).
Craft your hoes from stone, this will provide the same speed as other materials. Most of the time you won't use up their durability either and instead of searching for one, it's probably faster to craft a new hoe each time you enlarge your farm. |
Minecraft wiki entry for Heart_of_the_Sea, associated text: Before the heart of the sea was added to Bedrock Edition, there was an entry found in the buried treasure chest loot table named nautilus_core, which was later revealed to be the heart of the sea. Despite the name change, the heart of the sea continues to be referred to as the nautilus_core in most game files. |
Minecraft wiki entry for Memory, associated text: Design J is an analog version of a low-triggered D latch. The signal strength of the output Q is the same as input D when the latch is triggered. |
Minecraft wiki entry for Cobweb, associated text: A cobweb affects the player's movement abilities, as well. While in contact with it, the player can move at a speed of about 15% of the normal walking speed. Additionally, jumping vibrates the player akin to jumping in a 2-block-high space.[Java Edition only] A cobweb also limits the rate at which a player can break blocks. Like water, falling into a cobweb prevents a player from taking fall damage, meaning a fatal fall can be mitigated with cobwebs. Attacking while falling through cobwebs counts as a critical hit, the same as when falling after a jump. |
Minecraft wiki entry for Character, associated text: Ashton
Captain Zayden
Carl (Character)
Ender Dragon (Character)
Ginger (cow)
Mayor Maxine
Meryl
Milo
Rayne
Rift
Zetta
Zetta's Grandmother
Zetta's Grandfather
Zetta's Mother |
Minecraft wiki entry for Wolf, associated text: Wolves are 0.85[JE only] or 0.8[BE only] blocks tall and pups are 0.425[JE only] or 0.4[BE only] blocks tall. The textures of the wolves are tinted dark gray once submerged in water. |
Minecraft wiki entry for Development_versions, associated text: These additions and changes are accessible by enabling the "Caves & Cliffs" and "Enable GameTest Framework" experimental toggle. |
Minecraft wiki entry for Building_a_metropolis, associated text: Amphitheatre Build the half-stadium like theaters just like in Greece and Rome, and use it to hold plays, speeches, and even executions. Be sure to make it out of clean-looking stone material. |
Minecraft wiki entry for Timeline_of_events, associated text: 1 – Jeb becomes the lead developer on Minecraft.[32]
6 – Notch first suggests the possibility of Minecraft-themed LEGO sets as part of the LEGO CUUSOO project.[33]
28 – Jon Kågström is hired by Mojang. |
Minecraft wiki entry for Igloo, associated text: In half of all igloos, an oak trapdoor can be found under the carpet (the third white carpet straight ahead from the doorway), leading down a long ladder shaft to a basement. This passageway and the basement are built from stone bricks, some of which are infested blocks. In this basement there is a brewing stand, a cauldron, and a chest. Beyond the far wall, behind iron bars in two different cages, are a plains[JE only]/snowy[BE only] villager and a plains zombie villager.[1] The zombie villager can be cured with a golden apple and a splash potion of Weakness, both found inside the igloo. However, this may make the zombie villager lose its profession. |
Minecraft wiki entry for Best_biomes_for_homes, associated text: Blackstone, a stone equivalent that generates in patched within netherrack or basalt, can be used to make stone tools and furnaces. It also has its own set of decorative blocks, such as stairs, slabs, etc. |
Minecraft wiki entry for Mining, associated text: This method is based on the relatively low probability of desirable blocks being created without any neighbors, so it will occasionally miss small or narrow ore deposits that fall entirely between the branches, but it covers ground faster, so players will usually get more ore for their time. If the player would rather be sure of 100% coverage, simply place the tunnels closer together. It is also meant to be done quickly. |
Minecraft wiki entry for Best_biomes_for_homes, associated text: Frozen oceans have icebergs on the surface, composed of ice, packed ice, blue ice, and snow. Blue ice won't melt regardless of biome and is the most slippery version of ice.
Medium-sized iceberg (one without water pool or tunnel) can also be used as a starter house in the early game, by digging a hole in it and live inside it.
On some occasions, a structure such as ocean ruins and shipwreck may generate inside an iceberg, which makes these structures easier to reach without diving underwater.
Players don't need to worry about being attacked by drowned (especially one armed with a trident) since the surface on the frozen ocean is ice. |
Minecraft wiki entry for Configured_feature, associated text: Features are unique elements of the world like trees, flowers, ore, etc. Configured features are stored as JSON files within a data pack in the path data/<namespace>/worldgen/configured_feature. They are used in world generation as a part of placed features. |
Minecraft wiki entry for Trapdoor, associated text: Mobs consider all trapdoors closed, resulting in pathfinding mobs falling through open trapdoors.[2] A player can take advantage of this behavior to construct mob traps. |
Minecraft wiki entry for Chorus_Plant_(block), associated text: Chorus plants can be broken using any tool. Breaking one block of a chorus tree generally causes all chorus plants and flowers above to break due to lack of support. Upon breaking, a chorus plant drops 0–1 chorus fruit. This is not affected by Fortune. |
Minecraft wiki entry for Survival_in_an_infinite_desert, associated text: If you want to stay in the village—which has many advantages—you need to secure the village and the villagers before you make your home there. Go in during the day each day to build up defenses, being sure to leave before dusk and get a good distance away. |
Minecraft wiki entry for Enchanting_Table, associated text: air animal baguette ball beast berata bless cold creature cthulhu cube curse darkness demon destroy dry earth elder elemental embiggen enchant fhtagn fiddle fire free fresh galvanize grow hot humanoid ignite imbue inside klaatu light limited mental mglwnafh niktu of other phnglui physical range rlyeh scrolls self shorten shrink snuff sphere spirit stale stretch the towards twist undead water wet wgahnagl xyzzy |
Minecraft wiki entry for fill, associated text: fill <from: x y z> <to: x y z> <tileName: Block> [tileData: int] [oldBlockHandling: FillMode]
fill <from: x y z> <to: x y z> <tileName: Block> [blockStates: block states] [oldBlockHandling: FillMode]
The fill command also has an optional alternate syntax for replace mode:
fill <from: x y z> <to: x y z> <tileName: Block> <tileData: int> replace [replaceTileName: Block] [replaceDataValue: int]
fill <from: x y z> <to: x y z> <tileName: Block> <blockStates: block states> replace [replaceTileName: Block] [replaceDataValue: int] |
Minecraft wiki entry for Development_versions, associated text: Grass is greener and fluctuates more in color, depending on biome temperature.
In shallower parts, the coast is covered in staggered dirt blocks. |
Minecraft wiki entry for Rail, associated text: "[MC-1691] Sprinting / falling on level 1 and 2 snow, lily pads and carpet use the block below for the particles - Jira" – Mojira, November 1, 2012. |
Minecraft wiki entry for Villager, associated text: If a job site block is broken or destroyed, its owner (if any) emits anger particles[Bedrock Edition only] and becomes jobless, but retains its profession after trading. A villager who already has a profession but no job site attempts to find one: |
Minecraft wiki entry for Armor_Stand, associated text: Using armor on the stand places the armor if done on a bare spot. Conversely, clicking on armor with a bare hand removes the armor and places it in the highlighted hot-bar slot. It is not possible to take or place items from the armor stand's hands unless playing on Bedrock Edition*. |
Minecraft wiki entry for Detector_Rail, associated text: A detector rail is a block that can transport minecarts and can be used as a switchable redstone power source. |
Minecraft wiki entry for Miscellaneous, associated text: BUDs have been used for all kinds of things, from traps to detecting daylight to locking mechanisms on hidden doors. |
Minecraft wiki entry for Trapdoor, associated text: When placed, a trapdoor either occupies the top or bottom part of a block, depending on where the player placed the trapdoor. If a trapdoor is placed on the top part of a block, it opens downward. If placed on the bottom part of a block, it opens upward. |
Minecraft wiki entry for Herobrine, associated text: Herobrine ( /ˈhɛroʊˌbraɪn/ HEH-roh-bryn) is the subject of a community-made creepypasta. He is one of the major community icons of Minecraft, yet Herobrine has not been present in any version of Minecraft. |
Minecraft wiki entry for Before_1.9, associated text: Potions can be obtained with any status effect using /give and the tag CustomPotionEffects, which is an array of effects for the potion. See Item format#Potion Effects for more information, and status effect for a list of effects and IDs. |
Minecraft wiki entry for Development_versions, associated text: Use underscores to separate words, rather than using single words in mixed case.
Optionally, a minecraft: namespace prefix can be used, just like block and item IDs. However, it is not optional for EntityTags and spawners.[3]
There are still old entity IDs in the language files (example: LavaSlime instead of magma_cube for the magma cube) and the new mobs in 1.11 have their ID with the old type (no underscores, capital letters for the beginning of the words. example: VindicationIllager instead of vindication_illager for the vindicator.)
The following names have changed: |
Minecraft wiki entry for Development_versions, associated text: Can be crafted, milked from brown mooshrooms, found in shipwreck supply chests, or bought from farmer villagers.
When consumed, gives a status effect depending on what flower it was made from, or a random effect if found in a shipwreck or bought from a farmer villager. |
Minecraft wiki entry for Cave_spider_farming, associated text: 1 Overview
2 Construction
2.1 Preparation
2.2 Collector
2.3 Grinder
2.3.1 Manual grinder
2.3.2 Automatic grinder
2.4 Final Touches
3 Videos
3.1 Design by wattles
3.2 Design by BasketMC
4 See also |
Minecraft wiki entry for Development_versions, associated text: Riptide
Is no longer compatible with Channeling and Loyalty.
Now pulls the player when throwing a trident with Riptide in water or rain. |
Minecraft wiki entry for Development_versions, associated text: MC-73300 – "Saving Level..." text not appearing in pause menu.
MC-80824 – Spawning in some biomes causes "Unable to find spawn biome" warning.
MC-129912 – Player no longer spawned at highest level at world spawn.
MC-131686 – Spawn in ground with Buffet generation when creating a new world.
MC-132347 – Spawning inside icebergs.
MC-133466 – Certain world configurations force the player to spawn at X=8 Z=8.
MC-185033 – Underground spawn in single biome world type.
MC-185034 – Always respawning on the same block with no spawnpoint set.
MC-198232 – Music plays less frequently as it normally did.
MC-202166 – "Times Crafted" statistics column doesn't always display data correctly.
MC-214288 – Player does not spawn on the surface of the world when min_y is greater than 0.
MC-221641 – Caves can make ravines generate without water.
MC-233771 – Parity issue: Light blocks do not display their light level when shown via a held light block item. |
Minecraft wiki entry for Well_Wisher, associated text: The Well Wisher is a floating female ghost. She has long black hair and her skin is a dull yellow-green. She wears a white tattered dress and a hat which resembles a well. |
Minecraft wiki entry for execute, associated text: Specifies the block ID that the block at detectPos must match for the command to run. Must be a valid block ID. |
Minecraft wiki entry for Dirt_Path, associated text: If aimed correctly, an arrow can fly past the gap between a block and a dirt path placed below using commands.
The idea of dirt paths came from a suggestion post in /r/Minecraft.[2] |
Minecraft wiki entry for data, associated text: Each command storage is a general purpose, key-value storage, identified by a resource location to prevent unintentional conflicts. |
Minecraft wiki entry for Timeline_of_events, associated text: https://web.archive.org/web/0/http://playxbla.com/the-elder-scrolls-v-skyrim-mash-up-coming-to-minecraft-xbox-360-edition/ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.