1.8

De WikiMinecraft
Saltar a: navegación, buscar

1.8, (también conocida como The Bountiful Update[1] (La actualización de la abundancia)) es una gran actualización que fue lanzada el 02 de septiembre de 2014[1].

Adiciones

Generales

Splashes
  • "That's Numberwang!"
  • "pls rt"
  • "¿Quieres unirte a mi servidor?"
  • "Poner un poco alrededor de él!"
  • "Poner la capa sobre el!"
  • "One day, somewhere in the future, my work will be quoted!"
  • "Now with additional stuff!"
  • "Extra things!"
  • "Yay, puppies for everyone!"
  • "So sweet, like a nice bon bon!"
  • "Popping tags!"
  • "Now With Multiplayer!"
  • "Very influential in its circle!"
  • "Rise from your grave!"
  • "Warning! A huge battleship "STEVE" is approaching fast!"
  • "Blue warrior shot the food!"
  • "Run, coward! I hunger!"
  • "Flavor with no seasoning!"
  • "Strange, but not a stranger!"
  • "Tougher than diamonds, rich like cream!"
  • "Getting ready to show!"
  • "Getting ready to know!"
  • "Getting ready to drop!"
  • "Getting ready to shock!"
  • "Getting ready to freak!"
  • "Getting ready to speak!"
  • "It swings, it jives!"
  • "Cruising streets for gold!"
  • "Take an eggbeater and beat it against a skillet!"
  • "Hazme una mesa, una mesa de miedo!"
  • "Coger el ascensor hasta el entresuelo!"
  • "Stop being reasonable, this is the Internet!"
  • "/give @a hugs 64"
  • "Esto es bueno para Realms."
  • "Any computer is a laptop if you're brave enough!"
Dificultad
  • La dificultad es por mundo.
    • No hay más opción global de dificultad.
    • Previene accidentalmente cambiar la dificultad cuando entras en un mundo.
  • Puede ser bloqueada para cada mundo.
    • Previene la tentación de cambiar el modo a fácil en situaciones difíciles.
    • No se puede desbloquear la dificultad sin editores externos.
      • Sin embargo, usando el comando /difficulty seguirá funcionando.
Opciones
  • Nueva opción de ajustes de 'personalización de la apariencia'
    • Puede activar y desactivar la capa (obtenida en la Minecon u otros eventos) y las capas de la piel (skin).
    • 'Reduced debug info' toggle to enable/disable reduced information on the F3 debug screen
  • Video settings
    • Alternative Block toggle
      • Can disable/enable (weighted) alternative block models
        • When turned off, the least complex highest priority model will always be used for each block
    • Use VBOs toggle
      • Can enable/disable vertex buffer objects
      • May offer a ~10% performance increase when set to ON
    • Anisotropic filtering has been removed
    • Render distance slider now goes up to 32 when using 64-bit Java
      • Requires 2 GB of allocated RAM
    • Removed Advanced OpenGL
Modos de visión (shaders)
  • New "creeper" shader (creeper.json), applies a green tint
    • Is applied when spectating from the perspective of a creeper
    • Can also be applied using Super Secret Settings
  • New "spider" shader (spider.json), applies octuple vision
    • Is applied when spectating from the perspective of a spider
    • Can also be applied using Super Secret Settings

Jugabilidad

Selectores de objetivo
  • @e
    • Targets entities
    • Can specify type of entity by entity ID to either include or exclude with [type=Chicken] or [type=!Skeleton]
    • Ejemplo: /kill @e[r=50,type=Chicken] - mata a todos los pollos en un radio de 50 bloques a la redonda
    • Example: /tp @e[r=5] ~ ~5 ~ - toda entidad se teletransportara 5 bloques por ensima de su pocicion
Comandos
  • /blockdata
    • Modifies NBT data at a specific coordinate, the <dataTag> merges with the block at that position
    • Can be used to change the contents of a chest
    • Usage: /blockdata <x> <y> <z> <dataTag>
  • /clone
    • Clona todos los bloques (no entidades) de un area a otra area diferente
    • Aumenta la cantidad de bloques que pueden ser copiados a 32768 323
    • The clone can be replace , masked or filtered
      • replace will copy every block (the default behavior)
      • masked Copiara bloques que no sean aire
      • filtered will only remove unnecessary blocks
    • It can additionally be move , force or normal
      • move will move the selection from the first location to the second location, which may overlap
      • force will force the cloning operation, even if the areas overlap
      • normal only needs to be specified if using filtered
    • Usage: /clone <x1> <y1> <z1> <x2> <y2> <z2> <x> <y> <z> [mode]
    • Example: /clone 1001 3 1002 1011 3 992 1001 5 992 masked
  • /entitydata
    • Works similarly to /blockdata but can be targeted to entities
    • Usage: /entitydata <entity> <dataTag>
    • Example: /entitydata @e[type=Sheep,r=20] {Color:14} will color all the sheep within a radius of 20 red
  • /execute
    • Allows commands to be run from the position of specified entities
    • A detect argument allows the /execute command to run only if a block is detected at a specific location relative to the target
    • Usage:
      • /execute <entity> <x> <y> <z> <command…>
      • /execute <entity> <x> <y> <z> detect <x2> <y2> <z2> <block> <data> <command…>
    • Example:
      • /execute @a ~ ~ ~ detect ~ ~-1 ~ minecraft:grass 0 say You are standing on grass. will make everyone who is standing on grass say that they are doing so
      • /execute @e[type=Chicken] ~ ~ ~ fill ~-1 ~-1 ~-1 ~1 ~1 ~1 minecraft:glass will create a small cube of glass around all chickens
    • Commands run using the /execute command pass their success value back to the command block running them
  • /fill
    • Fills a given volume with a specified block
    • Up to 32768 blocks can be filled
    • oldBlockHandling works like with /setblock, but with additional options: hollow to only fill the outer layer of blocks and fill the inner part with air, and outline to fill the outer layer of blocks and ignore the inner part
    • Works similarly to /setblock
    • Usage: /fill <x1> <y1> <z1> <x2> <y2> <z2> <TileName> [dataValue] [oldBlockHandling] [dataTag]
    • Example: /fill 1001 3 1002 1011 5 992 wool 6 replace will fill the given area with pink wool
    • Can filter certain blocks
      • Only if it’s used to fill in replace mode with “normal” blocks.
      • It does not work when filling with block entities.
      • Usage: /fill [x] [y] [z] [x] [y] [z] [BlockName] [Data] replace [filterBlockName] [filterData]
  • /particle
    • Spawns particles in a given area
    • Usage: /particle <name> <x> <y> <z> <xd> <yd> <zd> <speed> [count] [force]
    • Example: /particle lava ~ ~1 ~ 1 1 1 0.5 50 normal @e[type=Chicken] will create 50 lava popping particles, centred one block above the block/entity running the command, spreading around a radius of 1 block, with a speed of 0.5, relative to all chickens in that world
    • The force argument can be set to force to display particles even if a player has his 'Particles' toggle set to Minimal or Decreased
    • List of particles: hugeexplosion, largeexplode, fireworksSpark, bubble, suspended, depthsuspend, townaura, crit, magicCrit, smoke, mobSpell, mobSpellAmbient, spell, instantSpell, witchMagic, note, portal, enchantmenttable, explode, flame, lava, footstep, splash, wake, largesmoke, cloud, reddust, snowballpoof, dripWater, dripLava, snowshovel, slime, heart, angryVillager, happyVillager, barrier, iconcrack_(ID), blockcrack_(ID), blockdust_(ID)_(DATA), droplet, take, mobappearance
  • /replaceitem <entity|block> ...
    • Can replace items in any inventory, including the inventories of mobs such as zombies
    • Usage:
      • /replaceitem entity <entity> <slot> <item> [amount] [data value]
      • /replaceitem block <x> <y> <z> <slot> <item> [amount] [data value]
    • Example:
      • /replaceitem entity @e[type=Zombie] slot.weapon minecraft:iron_sword 1 0 will give all the zombies iron swords
      • /replaceitem entity @p slot.hotbar.0 minecraft:fish 4 2 will put 4 clownfish in the players first hotbar slot
      • /replaceitem block ~ ~1 ~ slot.container.5 minecraft:redstone_block 1 0 will put a redstone block in the 6th slot of a container 1 block above the player
  • /stats <entity|block> ...
    • Usage:
      • /stats entity <selector> <mode>
      • /stats block [x] [y] [z] <mode>
      • Alternative and more featureful way of interacting with CommandStats
        • Will update a scoreboard objective based on the number of entities/blocks which have been affected by the command, it updates the objective for the entity that ran the command, fake players can be used when run in a command block
        • After the mode there are currently 5 possible stats that can be updated: SuccessCount, AffectedBlocks, AffectedEntities, AffectedItems and QueryResult
        • For example: /stats entity @a set AffectedBlocks @a Test will update a scoreboard objective named 'Test' for all players whenever a command is performed relative to them, the objective will update by the number of blocks affected by the command since the stat was set to AffectedBlocks, this means if the command is /fill then it will update the objective for whoever is running the command (@a) by the number of blocks filled
  • /testforblocks
    • Compara dos areas del mundo
    • The mode can be set to all or masked, all is the default while masked will ignore air
    • Usage: /testforblocks <x1> <y1> <z1> <x2> <y2> <z2> [mode]
    • Example: /testforblocks 100 64 100 107 69 107 0 64 0 masked
  • /title
    • Can make text display on a players screen in the form of a title and/or subtitle using JSON
    • /title @a times <fadeIn> <stay> <fadeOut>
      • Set the fade in time, the stay on screen time and the fade out time for the title
    • /title @a title <raw json message>
      • Set and start showing the title and subtitle
    • /title @a subtitle <raw json message>
      • Set the subtitle (optional)
    • /title @a clear
      • Limpia los titulso de forma inmediata
    • /title @a reset
      • Resetea todos los parametros por defecto (fade times)
  • /trigger
    • Functions the same way as /scoreboard players set or /scoreboard players add, but can only modify objectives with the trigger criteria (referred to as "triggers") and can only modify the score of the player running the command
    • Allows non-op players to use clickEvents as well as prevent spamming clickEvents
    • Can be used by non-operator players
    • For a player to run this command, the trigger must be enabled for that player
      • /scoreboard players enable <player> <trigger> will enable the specified player to use the specified trigger objective
      • Trigger availability is stored per player, per trigger
        • One trigger may be disabled for a player, but that player can use a different trigger
        • One player may be unable to use a trigger, but another player can use the same trigger
      • Disabled after the trigger has been used (must be re-enabled to use the trigger again)
    • Mostly for use with /tellraw
    • Usage: /trigger <objective> <add:set> <value>
  • /worldborder
    • /worldborder <set,add,center,damage,warning,get>
      • /worldborder set <sizeInBlocks> <timeInSeconds>
        • Used to set size of border. The first argument sets the size of the border and the second sets the speed of the border to expand or shrink
      • /worldborder add <sizeInBlocks> <timeInSeconds>
        • Adds blocks to the current size of the world border. Can use negative (-) numbers to subtract the size of the border
      • /worldborder center <x> <z>
        • Sets the center of where the border will be placed.
      • /worldborder damage <buffer|amount>
        • Allows you to customise the amount of damage taken while outside the border, and buffer, the higher value, the further you can be outside the border without taking damage
      • /worldborder warning <time|distance>
        • Allows you to customise how far you have to be or the time for how long it takes to activate the world border warning
      • /worldborder get
        • Tells the player running the command the current width of the world border
NBT Tags
  • BlockEntityTag
    • BlockItem instances can now hold a custom NBT tag that is merged into a block entity when it’s placed
    • Example: /give @p command_block 1 0 {BlockEntityTag:{Command:"/setblock ~ ~ ~ minecraft:diamond_block"}} will give a command block that, when placed, will automatically have the command /setblock ~ ~ ~ minecraft:diamond_block set
  • CanDestroy
    • Mostly for use in adventure mode
    • Items with this tag display the names of the blocks that they can destroy in the item tooltip
    • Example: /give @p minecraft:diamond_shovel 1 0 {CanDestroy:["minecraft:sand","minecraft:grass"]} to give a diamond shovel that can break grass and sand
    • Putting an invalid item name in will display as "missingno" under the "Can Break" list.
  • CanPlaceOn
    • Allows placing of certain blocks against other blocks in adventure mode
    • Example: /give @p minecraft:stone 16 0 {CanPlaceOn:["minecraft:diamond_block"]} to give a block of stone that can only be placed on diamond blocks
    • Putting an invalid item name in will display as "missingno" under the "Can be placed on" list.
  • CommandStats
    • Allows a command block or sign to increase a certain score in the scoreboard when it runs successfully
      • The command will increase the score based on the number of items/blocks/entities/successes
      • For example, a command block with this tag running a command which affects items (e.g. /give) will cause it to update the score based on the number of items given
    • Usage: {CommandStats:{AffectedItemsName:"playername", AffectedItemsObjective:"objective", AffectedBlocksName:"playername", AffectedBlocksObjective:"objective", AffectedEntitiesName:"playername", AffectedEntitiesObjective:"objective", SuccessCountName:"playername", SuccessCountObjective:"objective"}}
  • generation
    • Defines whether a written book is an "Original" a "Copy of Original" or a "Copy of a copy"
  • HideFlags
    • Allows hiding of certain parts of the tooltip
    • Bit field determining which parts of the tooltip to hide on an item. 1 for ench, 2 for AttributeModifiers, 4 for Unbreakable, 8 for CanDestroy, 16 for CanPlaceOn, and 32 for various other information (including potion effects, StoredEnchantments, written book generation and author, Explosion, and Fireworks).
    • Examples: Setting bit field to 3 would hide both ench and AttributeModifiers tags, and setting to 63 would hide everything.
  • Lock
    • A way to lock containers from being opened using NBT tags
    • Mostly useful for adventure maps in adventure mode
    • Containers can be unlocked by clearing their string for Lock
    • Locked containers can only be opened while holding anything renamed to the given string, item is not removed on use[2]
    • The lock can be completely removed utilizing the command /blockdata
  • NoAI
    • Disables an entity's AI
    • Entities without AI do not attack players or move or rotate on their own, and do not despawn, they also do not respond to gravity or collision with other mobs, but can still take damage, die, and ride other entities
  • PickupDelay
    • The number of ticks before an item entity can be picked up.
    • Set to 32767 for items that can't be picked up
  • rewardExp
    • Controls villagers giving xp for trading, set to 1 or 0
  • SelectedItem
    • Contains the item data of the item currently held in the player's hand
    • Added to compact the process of testing if a player is holding a specific item
      • Previous method required nine commands in command blocks; now requires only one command
  • ShowParticles
    • Option to show or hide all particles for a potion effect, while the Ambient tag only shows fewer particles, set to 1 to show, 0 to hide
  • Silent
    • Determines whether sound is produced by an entity, such as idle and hurt sounds, setting to 1 disables sound
Gamerules
  • logAdminCommands
    • Prevents command block output from being stored in chat logs. In multiplayer, also prevents player-initiated commands from being stored. Unrelated to commandBlockOutput, which is output into the visible chat
  • randomTickSpeed [value]
    • Controls how often a random tick occurs; random ticks influence how fast plants and crops grow, how fast pigmen spawn from portals, how fast farmland updates, how fast grass and mycelium grow and decay, etc...
    • If set to 0, random ticks never occur
  • reducedDebugInfo
    • Gamerule to enable/disable reduced information on the F3 debug screen
    • Op-only unlike the 'reduced debug info' toggle in multiplayer settings
    • Overrides 'reduced debug info' settings in clients
  • sendCommandFeedback
    • If set to false, player-run commands will not show a success message
  • showDeathMessages
    • Prevents death messages like "[player] fell out the world" from appearing in the chat
  • The ability to create gamerule variables[3]
    • These are fake gamerules which don't actually affect your world, but can be used with /stats with the new QueryResults argument to update a scoreboard objective based on the value of that gamerule
    • Declare using /gamerule <newRuleName> <value>
    • Access using /gamerule <newRuleName>
Estadisticas
  • stat.crouchOneCm
    • Detects how many cm the player has moved while crouching
  • stat.sprintOneCm
    • Detects how many cm the player has moved while sprinting
  • stat.timeSinceDeath
    • Detects how much time has passed (in ticks) since the player's last death
  • stat.talkedToVillager
    • Detects how many times the player has talked to villagers
  • stat.tradedWithVillager
    • Detects how many times the player has traded with villagers
Logros
  • New achievement Overpowered
Marcadores
  • New objective criteria for team-specific kills, e.g.: teamkill.red, killedByTeam.blue
  • New objective criteria 'trigger
    • Acts like the dummy criteria
    • Can be interacted with using the /trigger command
    • Mostly for use with /tellraw
  • The ability to iterate over every scoreboard player with *
    • This will also affect people who have not yet joined the world
  • Fake players with a name starting with # will never show up on the sidebar
  • New /scoreboard subcommands: /scoreboard reset, /scoreboard operation, /scoreboard test and /scoreboard enable
    • The reset subcommand can reset all objectives for a player or reset a player's objectives one by one
      • Example: /scoreboard players reset @a anObjective will reset the scores of an objective named anObjective for all players in the world
    • The operation subcommand can apply arithmetic operation to scores (+ – * / % < > =) and accumulate player scores
      • Example: /scoreboard players operation #teamscores redScore += @a[team=red] blueKills adds every red player's count of kills on blue to the red team's score of kills
      • Can be tested with a comparator to see if two scores are greater than, smaller than or equal to each other
    • The test subcommand can be used to test if a scoreboard value is between a min and a max value
      • Example: /scoreboard players test #global anObjective 12 19 checks whether the global score of the given objective is between 12 and 19, inclusive
    • The enable subcommand can be used to enable a trigger objective
      • Example: /scoreboard players enable aTrigger enables a trigger named aTrigger
  • Different teams can now have different objectives displayed in the sidebar
    • Example: /scoreboard objectives setdisplay sidebar.team.yellow anotherObjective (referring to team color, not team name)
  • Testing for scores now also works in @e entity selector
  • Added scoreboard team property to disable name tag visibility: /scoreboard teams option <name> nametagVisibility with options hideForOtherTeam, hideForOwnTeam, never and always (default)
  • Added scoreboard team property to disable death messages: /scoreboard teams option <name> deathMessageVisibility with options never, hideForOtherTeams, hideForOwnTeam and always (default)
  • Command /scoreboard players can now filter by NBT data
Modo de juego espectador
  • Usage: /gamemode spectator, /gamemode sp or /gamemode 3
  • No interaction with the world
    • Player can move through any entity or block without interfering with it (commonly referred to as 'noclip')
    • Collecting or using items is impossible, as is placing, destroying or interacting with blocks in any way
    • Viewing inventories and GUIs is possible, but it is not possible to interact with them
      • The HUD is disabled, except for the crosshairs when looking at a mob.
    • Player selectors (in commands) will target spectators
    • Spectators are not noticed by mobs, and do not trigger spawners or spawning
      • A spectator's presence keeps a mob from despawning
    • Only the Void and /kill can damage a spectator
  • Flying mode
    • Landing is not possible—the player can fly through the ground
    • The mouse scroll wheel, the sprint key, and the slowness and swiftness effects all affect the flying speed
  • First-person view through another player or mob's eyes
    • Left-clicking an entity locks the player's position and camera to the entity's
    • The spectator cannot control where the entity moves or looks
    • Certain mobs have different vision
    • Viewing oneself using F5 shows the entity
    • Pressing the Dismount key (⇧ Shift by default) returns the player to flying mode
  • Viewing privileges
    • Spectators can see other spectators
      • Appear as a translucent disembodied head
    • Invisible players and mobs appear visible, but translucent
    • An optional hotkey to show outlines on players whilst spectating
      • Can be color coded to teams
      • Can be set/cancelled in Controls option
      • Outline seen when key is held down (like sneaking when shift is held down)
  • Has a preliminary interface mode
    • Spectators now have a UI to teleport to other players
    • Activated by mouse middle-click, or pressing a number key
    • When more than 8 players are available to choose, the sides will be replaced by arrows
    • When teams are set up, teams can be selected individually to only display that team's players
    • Both number keys and the 'pick block'-button together with the scroll wheel can be used to control the interface
    • Teleportation works across dimensions
  • Worlds can be shared to LAN in spectator mode
Partículas
  • barrier
    • Shows up at the location of barrier blocks for players holding a barrier item in their hand
  • droplet
    • Are created when a sponge soaks up water
  • mobappearance
  • take
Encantamientos
  • "Depth Strider" (Zancada profunda)
    • Allows the player to move faster in water
    • Can be applied only to boots
    • Can go up to level III

Generaciónn del mundo

Bajo tierra
  • Granito, andesita y diorita se generan en grupos entre las zonas de piedra
    • Slightly larger size and abundance than gravel
    • Pockets don't reduce ore frequency, since ores can generate inside these pockets
Monumentos oceánicos
Customized world type
  • Highly customisable terrain generation
    • To use, press create new world then ‘world type: customized’ and then press the 'customize' button
    • There are 4 pages to customize the world
    • Page 1: customizes generation of structures, chance of lake generation, size of certain structures, and biome type and size, and sea level
      • There are 18 customization options which affect whether generated structures will spawn in, as well as other environmental factors such as sea level. Some of these presets are Yes/No inputs or sliders.
        • Sea level height, toggles for cave, village, temple, ocean monument, dungeon, water lake, lava lake, stronghold, mineshaft and ravine generation, sliders to control water lake, lava lake and dungeon rarity, toggle to turn oceans into lava oceans, biome selection, biome and river size sliders
    • Page 2: customizes the ore distribution for dirt, gravel, granite, diorite, andesite, coal, iron, gold, redstone, diamond and lapis
      • Rarity, height range and vein size
    • Page 3 & 4: Expert customization of the terrain generation
      • There are 16 customization options which can be used to affect various aspects of Minecraft's terrain generator. These can be changed by moving sliders or by typing in values directly
        • Main Noise Scale X/Y/Z to smooth out terrain, larger values for smoother terrain; Biome scale/depth weight and Biome scale/depth offset to stretch/squash terrain vertically based on the biomes default height settings; Upper/lower limit scale to make terrain more solid/riddled with holes, depending on how close the values are to each other; Height Stretch to pull terrain upward, with smaller values causing more extreme stretching; Height scale, Coordinate scale, Depth base size, Depth noise exponent, Depth noise scale
  • There are seven presets
    • Water World, Isle Land, Caver's Delight, Mountain Madness, Drought, Caves of Chaos, Good Luck
  • Each page has a button to randomize the various values and a button to reset to default values
  • Uses the 'generator-settings' string known from superflat presets for server.properties and world data
  • Generate structures button disappears when selected
Debug Mode world type
  • Useful for resource pack makers
  • Hold ⇧ Shift and cycle through "World Type" to select it
  • Tweaked world creation
    • Other world options are not available
    • Only Spectator mode can be enabled
  • All possible blocks with all possible data values are generated
    • This includes all possible states of redstone wire, fire, tripwire, stairs, etc.
    • They are arranged in a grid across height y=70, with a barrier floor at y=60
    • Every block state generates only once
  • Blocks placed are deleted, and blocks destroyed are restored

Bloques y objetos

Diorita
Andesita
  • Crafting recipe: 1 cobblestone and 1 diorite
  • Can be crafted into polished andesite
Granito
  • Crafting recipe: 1 Nether quartz and 1 diorite
  • Can be crafted into polished granite
Diorita pulida
  • Crafting recipe: 4 diorite in a 2x2 configuration
Andesita pulida
  • Crafting recipe: 4 andesite in a 2x2 configuration
Granito pulido
  • Crafting recipe: 4 granite in a 2x2 configuration
Coarse Dirt
  • Replaces the grassless dirt variant found in Mega Taiga, Mesa and Savanna biomes.
    • All worlds with grassless dirt blocks will seamlessly change over to coarse dirt as it uses the same block ID and data value as the original grassless dirt block
  • Slightly darker texture than regular dirt
  • Can be picked up with bare hands (silk touch is not required)
  • Tilling coarse dirt with a hoe will turn it to regular dirt
  • Crafting recipe: dirt and gravel in a 2x2 checkered pattern, yields four coarse dirt
Arenisca roja
  • Can be crafted with 4 red sand in a square
  • Can be crafted into chiseled, smooth, stair and slab forms
    • Chiseled variant has a wither pattern to complement the normal creeper pattern
    • Slabs have (like stone and sandstone) a smooth variant
    • Comes as a smooth double slab - minecraft:double_stone_slab2:8
  • Generated only in Mesa biomes at cave entrances
Prismarina
Ladrillos de prismarina
Prismarina oscura
Linterna marina
Cristales de prismarina
Fragmento de prismarina
Esponja húmeda
  • Obtained when a sponge soaks up water
  • Smelting a wet sponge yields a dry sponge
    • When smelted, they will fill empty buckets in the 'fuel' slot with water if possible
  • Emits water dripping particles
  • Rarely dropped by Elder Guardians
Bloque de slime
  • Players and mobs that land on their top side will bounce, like on a trampoline
    • Bounce rebound velocity is scaled by impact velocity, can reach up to 60%
    • Currently does not affect item entities
  • Evita el daño por caida
  • Walking on it is slower than walking on soul sand, close to one's speed whilst sneaking
  • Receta de fabricación: 9 bolas de slime
    • Puede ser desecho otra vez en 9 bolas de slime
  • The placing/breaking sounds use hurt sounds of slimes
  • Connected to sticky pistons, slime blocks will now push and pull blocks beside them when moved by pistons
    • Connected to normal pistons, slime blocks will only push blocks, but not pull them
    • Coded by KaboPC and Panda4994[4][5]
    • Up to 12 slime blocks connected to a piston in any arrangement can be moved as long as the following conditions are met: blocks do not disrupt the chain, non-moveable blocks are not in the way or slime blocks are not attached to the piston itself
    • Follows all the rules that pistons follow, for example blocks which can normally be moved by pistons can be moved if attached to slime blocks
    • Allows for more contraptions, from new redstone clocks, moving devices, farming etc
  • Extending a piston with a slime block attached to it will propel entities (mobs, players, items, launched arrows etc) in the appropriate direction[6]
Valla
  • New types of fences for all the different types of wood
    • Different types can connect to each other
    • Original fence renamed to oak fence
  • New crafting recipe for fences to make this work: 2 sticks and 4 planks to make 3 fences
Puerta de valla
  • New types of fence gates for all the different types of wood
    • Different types can connect to each other
    • Original fence gate renamed to oak fence gate
Puertas
  • New types of doors for all the different wood types
    • Different types of doors have different textures, with some types having no windows
    • Door recipes now require all 6 wood to be the same type
Trampilla de hierro
  • Can only be opened and closed using redstone, similar to an iron door
  • Crafting recipe: iron ingots in a 2x2 pattern, yields one iron trapdoor
Estandarte
  • Can be worn as head gear - but only using commands
  • Over a quadrillion possible combinations
  • Crafted like a sign, just with one color of wool instead of planks
  • Can be stacked to 16
  • Most patterns are created by arranging dyes in certain ways around a banner on a crafting table
  • Additional patterns: creeper, skull & crossbones, brick, flower, curly border and Mojang logo - making these without dyes will result in a black pattern, use dyes to get different colors (items: creeper skull, wither skeleton skull, brick block, oxeye daisy, vines and enchanted golden apple)
  • Many patterns can be produced
  • Up to 6 layers of patterns possible
  • Can be placed on walls or on the ground (16 rotations possible)
  • Sway with the wind
  • Can be cloned by crafting them together with a blank banner
  • Top-most layer can be removed using cauldrons
  • Can be used as fuel in furnaces
Soporte para armadura
  • Can be used to decoratively display armor (including pumpkins, mob heads and player heads)
    • Armor can be right-clicked to be applied to the armor stand and can be applied by dispensers
    • Armor can be applied by dispensers aimed at any part of the Stand
    • Armor can be removed by right-clicking on the piece of armor you want to remove
    • Can render enchanted and dyed armor
    • Can use pick-block on armor stands (will give the stand not the armor equipped)
  • Crafted using a stone slab and 6 sticks
  • Stacks up to 16
  • Armor stands are actually entities not blocks and can therefore can be summoned using /summon ArmorStand and put in minecarts
  • NBT tags can be used to create armor stands which are small (Small), invisible (Invisible), have arms (ShowArms), have disabled slots (DisabledSlots), have no base plate (NoBasePlate), have no gravity (NoGravity) and are in a preconfigured position (Pose)
Cordero crudo
Cordero cocinado
  • Restores 6 (Hambre.pngHambre.pngHambre.png)
Piel de conejo
  • Can be crafted in a 2x2 arrangement to produce leather
  • Drops from rabbits
Conejo crudo
Conejo cocinado
  • Restores 5 (Medio Hambre.pngHambre.pngHambre.png)
Rabbit's Foot
  • Brewed to make a Potion of Leaping
  • Drops from rabbits
Estofado de conejo
Potion of Leaping
  • Adds effect Jump Boost, for "I" and "II" levels
  • Brewed with a rabbit's foot and Awkward potion
  • The potion and bubbles are bright green coloured
Barrier
  • Acts like a full block but is completely transparent
    • Can transfer redstone signals and allows blocks to be placed on it
  • Can only be destroyed in Creative mode
  • Can be obtained using /give @p minecraft:barrier <amount>
  • Becomes visible to players who are holding a barrier in their hand
    • Appears to be rendered as particles; always facing the player
Guardian Spawn Egg
  • Spawns the Guardian mob
  • Cyan coloured with orange spots
Endermite Spawn Egg
  • Spawns the Endermite mob
  • Purple coloured with grey spots
Rabbit Spawn Egg
  • Spawns rabbits
  • Brown coloured with brown spots

Criaturas

Endermites
  • Sometimes spawns in the place of an Enderman teleporting away.
  • Sometimes spawns when a player teleports using an Ender pearl.
  • Despawns after 2 minutes (unless it is named using a name tag)
  • Have the same sounds as silverfish
Guardianes
Guardián anciano
  • A boss-like variant of Guardians
  • There are 3 elders in each ocean monument
  • A flashing boss Guardian will appear on screen when close to the boss Guardian, and Mining Fatigue III will be inflicted on the player for 5 minutes
  • Drops wet sponge
Conejos
  • Drops rabbit hide, raw rabbit, cooked rabbit and rabbit's foot
  • They have many different skins similarly to horses and ocelots. They have 8 skins including: Black, White, Brown, Gold, Black & White, Salt & Pepper, Toast, and the Killer Rabbit of Caerbannog
    • Naming a rabbit spawn egg or name tag "Toast" will give rabbits a special skin as a memorial to user xyzen420's girlfriend's rabbit Toast
    • Very low rate of spawning as "The Killer Rabbit" (or the "The Killer Rabbit of Caerbannog")
      • 1/1000 chance of spawning
      • This type of rabbit is hostile and will attack players within 4 blocks, deals 5 (Heart.svgHeart.svgHalf Heart.svg) in easy, 8 (Heart.svgHeart.svgHeart.svgHeart.svg) in normal difficulty and 12 (Heart.svgHeart.svgHeart.svgHeart.svgHeart.svgHeart.svg) in hard
      • A reference to the movie Monty Python and the Holy Grail
      • It is white with bloodshot eyes, and blood on its legs and mouth
      • Automatically spawns with a name tag titled 'The Killer Rabbit'
      • It can be directly spawned in with the command /summon Rabbit ~ ~ ~ {RabbitType:99}
  • Rabbits can be bred using carrots, golden carrots or dandelions
  • Rabbits have the same AI like the most other passive mobs, and jumping around randomly.
  • Make little squeaky sounds when hurt or killed

Cambios

Generales

Splashes
  • "OpenGL 1.2!" changed to "OpenGL 2.1 (if supported)!"
  • "Now java 6!" changed to "Now Java 6!"
Debug screen
  • Text now has a background
  • Replaced x, y, z, b, bl and other labels with more understandable labels
  • "Light" is now the light levels at feet, not eyes
    • Player rotation is now displayed for the vertical angle as well as the horizontal one
  • The crosshair displays 3 short colored lines to indicate the direction of each axis: x/red, y/green, z/blue
  • Day counter added
    • Increases by 1 every dawn
  • Now displays difficulty
    • Peaceful - 0.00, Easy - 0.75, Normal - 1.50, Hard - 2.25
  • Looking at a block in the world will show the coordinates of that block on the debug screen
  • On the right hand side, a display shows up if you are looking at a block, giving various pieces of information and NBT data about it.
    • Looking at all blocks shows you the state of the block, and the variant state where applicable (eg. minecraft:cauldron[level=1])
  • Now shows whether you are facing the positive or negative x/z axis
  • Currently missing LC value and FL value.
  • F3 + B now also shows which direction entities are looking in using a blue line and their eye level using a red line
  • Now displays how many chunk sections are being rendered currently and how many chunk sections are out of view in percent, the OpenGL version, display size, vendor and GPU
  • "Vanilla" added to the version number. eg: "Minecraft 14w30b (14w30b/Vanilla)"
    • Presumably this will say something different if modded. Very few mods (or even APIs) currently exist for versions this recent.
  • F3 + H tooltips now show how many NBT tags an item has
Block IDs
  • Occurences of blocks/items now need to be named ids; old ids slowly being phased out
  • NBT data in commands can now use block/item names in place of numerical ids
    • Example: id:"minecraft:stone"
    • In scoreboards, the format is minecraft.block.stone
  • Superflat presets also use the new named id format
Superflat world type
  • Block ID/number of layers format changed from NumberxID to Number*ID.
  • Preset code version number changed to "3".
Internal block handling
  • Now internally use states instead of metadata
  • Metadata will still be used for a while
  • Block states of the block being looked at will now be displayed on the F3 menu - Examples: redstone, door
  • Internally, metadata no longer needs to be calculated out of the 4 bit data value, instead the values of specified properties can now be easily gotten and set
Chat
  • Improved chat communication
  • Messages are now either chat, system or action bar messages
  • Action bar messages are always shown, chat and system messages are only shown if chat settings are configured that way
  • Entities now have tooltips in certain chat instances when hovered over
    • These appear when hovered over an entity's name in chat (e.g. the success message for /kill)
    • Shows the name of the entity (e.g. Bob), the Id of the entity (e.g. Creeper (50)) and the entity UUID
    • Shift+Left click while hovering over the entity's name inserts its UUID into your chat bar. They also work in commands like /tp so you can teleport to entities.
  • F3 + D clears the chat history (including previously typed commands)
UUID
  • All player lists will now be converted to be UUID-based automatically
Performance
  • All dimensions are now handled in different threads
    • Rewrote chunk sorting
    • Ported over the visibility culling code from MCPE thereby limiting client render of obstructed world segments
    • Threaded chunk rebuilds
Rendering
  • Only transparent blocks will now render as transparent (eliminates the use of x-ray texture packs)
Resource packs
  • Custom block models can be loaded
    • Several blocks in the game are rendered differently using the new block models.
  • Custom item models can be loaded
    • Many items's model is rotated 90 degrees in the inventory and in hand.
  • F3+T and F3+S now reload models
  • Resource packs can now be bundled with a world, put it in the map save directory and name it "resources.zip"
    • Example: .minecraft/saves/TheMapWithTheThing/resources.zip
GUI code
  • Improvements to allow for "cooler things"[7]
Skin
  • Added a new default skin: Alex[8]
    • Alex's model is that of Steve but with 3-pixel wide arms
    • There will be a choice to select fat or thin arms on minecraft.net/profile in the future
    • Custom skins are still only 4-pixel wide arms
    • If you don't have a custom skin yet, you are randomly assigned Steve or Alex based on your random user ID
  • Right and left arms and legs are now editable independently
  • Uses a steve.png file with new layout and new dimensions
    • Dimensions for the file are now 64×64
  • Overlay now includes the whole body
    • Overlays are called hat, jacket, sleeves and pants legs
  • New "Skin Customization" button in the options menu
    • Cape visibility is now toggled from here
    • You can toggle the visibility of overlays, independent for each limb/body part
  • Old skins still work, but won't have the new features
Servers
  • Nuevos iconos de servidores, mostrados con 3 botones.
    • Up and down arrows to move the servers' order.
    • Third button is to join the server.
  • There is now a default server icon.
    • Resembles the unknown resource pack icon.
  • Servers can now customize network compression in server.properties
Graphics
  • Dropped items now face the player in all three directions on fast graphics
Blocks
  • Rewrote how blocks are rendered
  • Rewrote how block data is handled
The Void
  • Removed fog and particles
Optimizations
  • Many optimizations to both the server (including single player) and the client
  • Threaded chunk rendering
  • Ore generation is more than twice as fast[9]
  • Significant increase in FPS and performance
  • Stability in the smoothness of FPS
  • Chunks load a lot faster
  • Threaded mob pathfinding
Tech notes[10]
  • Fixed server referencing Entities by origin, client referencing by eyes (!!)
  • Fixed ray-casting differences between server & client
  • Added RenderLayer ability to get colored on damage
  • Added basic BlockModel asset
  • Cleanup GUI rendering
  • Added big optimization Noisegen
  • Added generic face-render method in BlockRenderer
  • Added RenderLayers to entities, moved armor/items/* to it.
  • Extracted Vec3i from BlockPos
  • Lots of BlockPos usage-optimizations (generation/pathfinder/features)
  • Serialize BlockPos as long over network
  • Improvements in memory limits for NBT reading
  • Cleanup around old Direction usage
  • Split BlockRenderer in subclasses
  • Added BlockLayer (SOLID, CUTOUT, CUTOUT_MIPPED, TRANSLUCENT) for renderpasses
  • Removed Direction, get rid of magic numbers, now in Facing
  • Fixed unreleased ByteBuf leaking mem
  • Cleanup around BlockPos usage
  • Removed AABB pools
  • Changed AABB, now immutable
  • Removed Vec3 pools
  • Changed Vec3, now immutable
  • Changed TextureAtlas, names can have slashes
  • Changed LWJGL to 2.9.1
  • Changed Entity, now unique by UUID
  • Added BlockPos (instead of int x, y, z)
  • Added Facing enum, get rid of magic numbers

Jugabilidad

Enchanting
  • Enchanting will now cost 1 to 3 levels, but you still need the same minimum total levels
    • For example, an enchantment may only become available for enchanting after reaching 13 levels of experience, but will only cost 2 XP levels and 2 of lapis lazuli
  • Additionally, there is now a material cost - enchanting also costs 1 to 3 pieces of lapis lazuli now (seen above)
  • The actual enchantment calculation is the same
  • One of the enchantments will be displayed in the tooltip
  • The enchantments you would get on a tool will not change until you enchant something - this enchantment seed is stored per player
  • Leveling up now takes longer
  • Level V enchantments can now appear on an item without the use of an anvil
  • Looting now gives an extra 1% chance of getting rare loot per level
Villager Trading
  • Rebalanced Villager trades, see Trading.
    • Offers will be less random and probably more useful
    • Villagers start out with 2-4 trades unlocked
    • Trades are now unlocked more freely
      • Trading any offer will unlock up to 3 new trades or reactivate old ones
    • Existing villagers will not be affected
  • Trading now gives experience
  • Villagers no longer trade Flint and Steel.
  • There are now more villager professions
    • White robe: Librarian
    • Purple robe: Cleric
    • Brown robe: Fisherman, Farmer, Fletcher, Shepherd
    • White apron: Butcher, Leatherworker
    • Black apron: Armorer, Tool Smith, Weapon Smith
    • Villager profession is now displayed in trade GUI
  • The disabled trade arrow now appears without closing and reopening the trading GUI, and now has a descriptive tooltip
Village mechanics
  • Doors are now added to the closest village
  • This will not break iron farms, but change them a little, enough to make them "practically pointless"[11]
Anvil repairing
  • Costs reduced to balance out with the new enchanting system
  • Renaming items will now only cost 1 level
  • Repairing cost now increases exponentially (1, 2, 4, 8, etc.)
  • Repairing costs can no longer be kept down by renaming items
Adventure mode
  • Block hitboxes no longer appear in Adventure mode if interaction with the block is impossible
  • Block interaction is now impossible by default
  • The CanDestroy NBT tag can be used to determine which blocks can be allowed to be broken (see above for usage)
Creative mode
  • In creative mode, players can create a copy of a block entity in their hotbar, including all NBT data, with ctrl+Pick Block key (ctrl+middle mouse button by default)
  • Players in creative mode can now damage entities even if they are flagged invulnerable
Commands
  • The ability to Tab ↹ auto-complete coordinates with all commands that have a coordinate argument (e.g. /setblock)
  • /clear
    • Can now be used to clear only a specific number of items and can be restricted to certain NBT data
    • Example: /clear @p minecraft:spawn_egg 120 34 {display:{Name:Michael}} <item> <data-value> will remove up to 34 villager spawn eggs named Michael from yourself
    • Can now test for partial matches of NBT lists
  • /debug
    • Can now be run in single player
    • New arguments for debug /debug debug <start stop chunk> [<x> <y> <z>]
    • x/y/z are required and valid only for chunk mode
    • May be removed, as the command was supposed to be dev only[12]
  • /effect
    • Can now also specify whether particles are to be shown:
    • Usage: /effect <player> <effect> [seconds] [amplifier] [hideParticles]
      • Use 'true' to hide particles and 'false' to show; if value is not given, defaults to false
  • /kill
    • Can now be followed by a target selector
    • Example: /kill @e[type=!Player]
  • /say
    • Now lists all entity using @e.
    • Example: /say @e[r=500] will list all the entities in your world within a 500 block radius
  • /summon
    • /summon command can now summon lightning using /summon LightningBolt
  • /tellraw
    • A new tag called "insertion" allows text to be inserted into the chat that, when shift-clicked, will insert more text into the players' chat input
      • Example: /tellraw @a {text:"CLICK",insertion:"This is a test"}
    • Can now insert values from scoreboards into messages
      • Example: /tellraw @p {text:"Have ",extra:[{score:{name:"Searge",objective:"reward"}},{text:" diamonds"}]}
    • Now has a selector argument
      • Allows to print player's names
      • Example: /tellraw @a {selector:"@a[team=TeamRed]"} will print everyone who is on TeamRed
    • Can display entity tooltips when the action for hoverEvent is set to show_entity
      • Example: /tellraw @a {text:"Hover here",hoverEvent:{action:show_entity,value:"{type:'Zombie',name:'Dummy'}" }} will print a message will display the tooltip of a zombie named "dummy"
  • /testfor
    • Can now also check for dataTags
    • Example: /testfor @p {foodLevel:20}
    • No longer is exclusively usable in command blocks
    • Can now check for inventory specific items
      • Example: /testfor @p {Inventory:[{Slot:6b,id:"minecraft:diamond_sword"}],SelectedItemSlot:6}
  • /testforblock
    • Can now test for partial matches of NBT lists
  • /time
    • /time query <value> argument to check the time
      • Has an another argument after that which can be daytime or gametime to check either the number of ticks since the start of the day or the number of ticks since the world was created, respectively
  • /tp
    • Now supports rotation arguments
    • Example: /tp @p ~ ~ ~ ~20 ~40 teleports the player so that he faces 20 degrees to the right and 40 degrees downwards
Target Selectors
  • Now supports cubic areas
    • Example: @e[x=0,y=0,z=0,dx=10,dy=10,dz=10] gets all entities between 0,0,0 and 10,10,10
  • New radius value usable in target selectors, based on the block center
    • A radius of 0 works for exact block positions
  • New selector parameters for entity selectors to detect entity rotations with rxm – x rot min, rx – x rot max, rym – y rot min, ry . y rot max
    • Example: @a[rxm=-15,rx=15,rym=-45,ry=45], /say @a[rx=30], don't look down!
  • Tab-completing coordinate arguments will now fill in the coordinates of the block currently being looked at
NBT Tags
  • Age
    • Can now be set to -32768 for items that never despawn
  • CustomName and CustomNameVisible
    • Now work on all entities
  • pages
    • Uses the JSON text component instead of plain text.
    • Capable of using the clickEvent and hoverEvent tags.
    • Previously, text formatting could only be accomplished using the section symbol via Formatting codes.
  • Text1, Text2, Text3, Text4
    • Uses the JSON text component instead of plain text
    • Might need some time before it can work in survival.
    • Can be used to show scores towards players by using the selector and score tags
    • Previously, text formatting could only be accomplished using the section symbol via Formatting codes
    • Character limit is based on character width
Teleporting
  • Relative teleporting is smoother and no longer brings players to a stop; it preserves their velocity from before the teleport
Item tooltips
  • Now show the internal name for use in commands (F3+H mode)
Particles
  • Can be summoned using the /particle command
  • Changed the particle effect when landing on a block, looks a lot more scattered
Life Bar
  • Now the life bar has a new animation for the damage, that additionally shows how many hearts a player loses
Inventory system
  • Rewrote the inventory system
  • Fixes some bugs, improves performance and allows easier improvements
  • Allows custom NBT that isn't handled by the game to be added onto items
    • Custom tags will remain even if the items NBT is changed in-game. (i.e. by renaming)
Enchantments & Effects
  • Now also support named IDs as well as numerical IDs
    • Example: /enchant @a minecraft:looting 3
    • Example: /effect @a minecraft:speed 10 10
Player list
  • Improved the health objective display on the player list
  • Will fall back to textual display if space is scarce, with colors (green/yellow/red) to show different health levels
  • Additional health will squash the display together to fit
  • Now groups together teams
  • Now sorts players by name
  • Player list shows the faces of players

Generación del mundo

Villages
  • Gravel roads in villages have cobblestone underneath, to prevent them from collapsing into caves
  • Many of the buildings in plains/savanna villages have replaced some of their wooden planks with wooden logs
Desert temples
Caverns
  • Now generate on the surface of desert, mesa, mega taiga and mushroom biomes
Swampland
  • Changed generation of the marsh-like areas[13]
Mesa
World border
  • The default world border is now an animated texture rather than an invisible bedrock barrier
  • There is now nothing beyond the world border
  • Is set at a diameter of 60 million by default, for both the Overworld and the Nether
  • Mobs and players can't pass through it and take damage when outside
  • If you’re stuck outside the world border, it is possible to freely fly/walk around (not possible to freely walk through the border from the inside though)
  • When you get within a certain distance of the world border, a red-aura-like warning will activate
    • Only visible on Fancy graphics
    • Outside the border, the warning is at full strength
    • Inside the border, the warning gradually gets stronger as the player approaches the border
    • If the border is stationary, the warning is first seen as the player passes the warning distance, default 5 blocks from the player's location
    • If the border is shrinking quickly enough, the warning will be first visible at the warning time, default 15 seconds from the player's location
  • The /worldborder command allows one to customise various aspects of world borders like their size, center, damage and warning

Bloques y objetos

Sponge
  • Introduced sponge to survival mode, with new behavior and texture
  • Sponge turns into Wet Sponge when it soaks up water
    • Water particles appear around the Sponge when this happens
  • Sponge destroys water blocks from 5 blocks away in a kind of sphere
  • Sponge soaks up water only when water is touching it
Chiseled Stone Bricks
Cracked Stone Bricks
  • Can now be obtained by smelting stone bricks, making them renewable
Moss Stone
Mossy Stone Bricks
Beacon
  • Beacon light beams change color when going through stained glass and stained glass panes
    • Making it feed into multiple stained glass blocks/panes will combine the colors
  • El haz ahora pasa a traves de todos los bloques que no bloquean completamente la luz: Hielo, agua y hojas.
Carteles, cofres, Faros, camas y cabezas
  • Now display the cracking animation[14].
    • Las camas antes mostraban la animación de rotura, pero no en su parte superior e inferior.
Puerta
  • Stack to 64
  • The crafting recipe for doors now gives 3 doors instead of one
  • New types of doors for all the different wood types
    • Therefore, Wooden Doors have been renamed to Oak Doors
  • Door item textures changed to be more detailed and more consistent with the new doors
Trapdoor
  • Trapdoors are now called "Wooden Trapdoor" [15]
Torch & Redstone Torch
  • Torches and redstone torches placed on walls now have an angled top side
Blaze Rod
  • Are now held similarly to tools
Furnace
  • When a furnace runs out of fuel, the smelting progress will rewind at 2x speed
  • Empty furnaces will now only accept fuel and empty buckets in the fuel slot
Carrot
  • Restore 3 hunger points instead of 4
Baked Potato
  • Restore 5 hunger points instead of 6
Hay Bale
  • Rebalanced how they heal and accelerate the growth of horses
Dead Bush & Sapling
  • Can now catch fire
Melon (block)
  • Mined faster with an axe
Huge Mushrooms
  • When harvested with silk touch enchantment they drop blocks with corresponding mushroom texture (red or brown) on all sides rather than the one with spores
Mob head
  • Made Creeper, Skeleton and Zombie Heads available in survival
  • Creepers, Skeletons, Wither Skeletons, and Zombies drop their heads when killed by charged creepers. Wither Skeletons continue to have heads as rare drops.
    • Note that a charged creeper explosions will not yield more than one mob head
  • Skulls worn on heads are now bigger so the 2nd skin layer no longer peaks through
  • Player and mob heads in inventories and held by mobs/players now display the actual head
  • Placed mob heads now show the 2nd skin layer
Item Frame
  • Items in item frames can now face eight different directions
  • As long as the frame remains placed, it remembers the orientation of the last item it held, and uses it for the next item it holds
  • Item frames can give off a signal detected by comparators, based on the direction the item is facing
    • Signal strength is as follows: 0: empty; 1: item; 2: item rotated once; 3: item rotated twice; ...; 8: item rotated 7 times
  • Improved position handling of item frames
Painting
  • Improved position handling of paintings
Dispenser
  • Can now place pumpkins or Wither Skeleton Skulls to spawn golems and withers respectively
    • Will only place them if the body of the golem or wither is already built
  • Can now place command blocks with pre-configured commands, rather than dispensing it
Button
  • Can now be placed on ceiling and on the ground
Redstone Comparator
Daylight Sensor
  • Can be inverted with a right click
    • Reaches full strength at the opposite time than it would when set to normal
    • This can allow for a light that turns on at night rather than day without the need of a NOT gate
Activator Rail
  • Powered activator rails will now shake minecarts, causing riders (players and entities) to dismount
Minecart with TNT
  • Minecart with TNT can be ignited with a Flame enchanted bow
  • Minecart with TNT explosions no longer stack
Sign
  • Use the JSON text components Text1, Text2, Text3, Text4 instead of plain text
  • Can be used to show scores towards players by using the selector and score tags
  • Previously, text formatting could only be accomplished using the section symbol via Formatting codes
  • Character limit is based on character width
  • Might need some time before it can work in survival
Book and Quill & Written Book
  • Use JSON text components instead of plain text with the new pages tag
  • Capable of using the clickEvent and hoverEvent tags
  • Previously, text formatting could only be accomplished using the section symbol via Formatting codes
  • Might need some time before it can work in survival
Written Book
  • Copying written books will now mark them as copies/copies of copies
  • The copying status of a book (ie. original, copy of original or copy of a copy) is denoted in a separate line in the tooltip, beneath the author's name
  • Copies of copies cannot be copied
Ladder
  • Mined faster with an axe
Armor
  • Armor no longer gets colored when mobs/players are hurt
Arrow
  • Behave differently underwater
    • They will lose all velocity after a few blocks and slowly fall
    • Fire Arrows will be extinguished
Slabs
  • Removed double stone slab's item form
  • Removed double wooden slab's item form
End Portal
  • Inventory image is now the Missing Texture block instead of the Nether Portal item
Monster Spawner
  • Can be right-clicked with a Spawn Egg in hand, to change what the spawner produces
Command Block
  • Survival players can no longer look inside the command block to see the command
  • Now show the entity (@e) parameter
  • X/O button next to "Last output" in commandblock to turn off the last output string

Criaturas

Todas las criaturas
  • Actualizadas a la nueva IA (inteligencia artificial)
  • Mobs now show a glow of a slightly different color when hurt
Aldeanos
  • When struck by lightning, villagers turn into witches
  • Now have a head slot where helmets or blocks can be applied
  • Villagers will now only breed when willing
    • The first time a specific trade is done, the villager will become willing, any other time there's a 1 in 5 chance the villager will become willing
    • When a baby villager is born, both parents lose their willingness
    • Villagers become willing to breed by consuming food: 3 bread or 12 potatoes or 12 carrots
    • Finding out a villager's willingness in survival is difficult: The only tell is the amount of xp they give when trading; Normal trading yields 3-6 experience points, trading and making a villager willing yields 8-11 experience points
  • Changes to villager AI
    • Villagers will now harvest, collect and replant grown potato, carrot and wheat crops
    • Villagers will craft wheat into bread
    • Villagers will share food with fellow villagers
Animales bebes (oveja, cerdo, vaca, pollo, gato, perro, caballo)
  • Baby animal growth can now slowly be accelerated using the animal's breeding item
  • It appears holding the right mouse button speeds up this process
Lobos
  • Tamed and untamed wolves now attack skeletons without provocation, similar to how untamed wolves attack sheep in the wild
Ocelotes domesticado and Lobo domesticado
  • Now display a death message if named with a name tag
Esqueletos y Esquelestos Withers
  • Now run away from wolves instead of fighting back
  • Now run away from Creepers that are about to explode
  • Now drop a Skeleton mob head when killed by a charged creeper
Slimes y cubos de magmas
  • Now swim as a result of the update to the new AI
  • Randomly change direction every so often, reducing the chance of them getting stuck at walls or corners
  • Slimes will now randomly despawn over time if no player is within a 32 meter range
  • Appear to jump a bit more randomly
  • When named and attacked, each new slime will keep its given name.
Zombie Pigmen
  • Angry zombie pigmen now pathfind as a result of the update to the new AI
  • Now run away from Creepers that are about to explode
  • Adult Zombie Pigmen will forgive after a short time (and lose the aggro speed boost), but will continue to attack until the player escapes their aggro distance
Endermen
  • Now pathfind as a result of the update to the new AI
  • Now walk slightly faster
Spiders and Cave Spiders
  • Can no longer draw line of sight through opaque blocks
Blazes
  • Blazes will now shoot the player even if there are solid blocks between them
Gigantes
  • Armor on Giants is now rendered
Silverfish
  • Silverfish will stop occasionally before moving again (similarly to most mobs)
Creepers
  • Now run away from other Creepers that are about to explode
  • Now drop a Creeper mob head when killed by a charged creeper
Zombies
  • Now run away from Creepers that are about to explode
  • Now drop a Zombie mob head when killed by a charged creeper
Witches
  • Now run away from Creepers that are about to explode
Iron Golems
  • Now attack the player as soon as it is attacked, but only if the player is in survival
  • Now attack Creepers.
Snow Golems
  • Snow golems below layer 64 no longer leave a trail of snow.
Iron Golems, Snow Golems & Withers
  • Can be spawned by arranging the blocks in any orientation
    • This does not affect the orientation of the spawned mob
Oveja
  • Now drop mutton when killed

Curiosidades

  • Esta ha sido la más larga espera para la más importante de las actualizaciones de Minecraft, con 312 días transcurridos desde el lanzamiento de 1.7.2 el 25 de octubre de 2013.
    • 1.3.1 tuvo la más larga espera previamente entre las versiones principales, con un lanzamiento el 1 de agosto de 2012, 153 días después de la liberación de 1.2.1.
  • También ha sido el desarrollo más largo para una actualización importante en la historia de Minecraft, con la primera instantánea (snapshot) que sale el 9 de enero de 2014, 236 días antes del lanzamiento completo.
    • La anterior más larga fue también con la 1.3.1, con 111 días a partir de la primera instantánea de la versión final.
  • Esta actualización ha tenido el mayor número de instantáneas de desarrollo de cualquier actualización importante hasta el momento, con 52 snapshots.
    • La actualización con el mayor número de instantáneas anteriormente fue la 1.6.1, con 18 snapshots.

Errores corregidos

La plantilla que solicitas no existe, si crees que deberia crearse puedes sugerirlo en el apartado de discucion de este mismo articulo o haciendo click aqui

Versiones 1.8.X

Issues/Beta 1.8.1

Esta version, incluye arreglos de bugs y cambios en algunos aspectos del juego.

Cambios

Reglas de juego
  • La regla de juego doTileDrops ya no afecta a las entidades.
Mapa
  • Cambios en algunos colores.
Rendimiento
  • Optimizaciones
Poción de Salto
  • Ahora puede ser extendido el tiempo que afecta la poción.
Opciones
  • Se han renombrado los Ajustes de Multijugador a Ajustes de Chat.
  • Mejora de la visualización de las hojas y particulas de lluvia.

Issues/Beta 1.8.2

Esta versión, lanzada el dia 19 de Febrero de 2015, es compatible con las versiones 1.8 y 1.8.1 en servidores.

Añadidos

Nuevas estadísticas

Además, las criaturas no te siguen/atacan en modo espectador, y en cuanto a la TNT, la fuerza de las explosiones ya no estan parcializados, y las fisicas de las explosiones se han revertido a la anterior snapshot de la 14w32a.

Issues/Beta 1.8.3

Esta versión se ha dedicado para arreglar algunos errores que se producían en servidores.

1.8.4 versión de seguridad

Esta versión lanzada el 17 de abril de 2015 realiza cambios minimos en el cliente como la eliminación del seguimiento de una criatura cuando estas en modo espectador.

Pero esta versión ha sido sacada exclusivamente para corregir errores en los que un servidor de minecraft podia congelarse o incluso caerse al colapsarse su memoria.

Bugs que modifica

1.8.6/1.8.8 versiones de seguridad

Estas versiones modifican tanto funcionalidades del minecraft realms como la de los propios servidores dedicados.

Referencias

  1. 1,0 1,1 1,2 https://mojang.com/2014/09/minecraft-1-8-the-bountiful-update/
  2. https://twitter.com/jeb_/status/421587852435419136
  3. http://www.reddit.com/r/Minecraft/comments/2aw5nh/new_queryresults_and_gamerule_variables/
  4. https://www.youtube.com/watch?v=jpXBKXJlybg
  5. https://twitter.com/dinnerbone/status/461189042659672064
  6. https://twitter.com/dinnerbone/status/461473908420796416
  7. https://twitter.com/Dinnerbone/status/428161570867519488
  8. https://help.mojang.com/customer/portal/articles/979200-minecraft-skins
  9. https://twitter.com/SeargeDP/status/488715162086813696
  10. http://s3.amazonaws.com/Minecraft.Download/blocknotes.txt
  11. https://twitter.com/_grum/status/426299865673777152
  12. http://www.reddit.com/r/Minecraft/comments/2c5f35/minecraft_snapshot_14w31a_has_been_released/cjct3k1
  13. http://i.imgur.com/lQELvLX.jpg
  14. https://twitter.com/TheMogMiner/status/489405548106752003
  15. In the en_US.lang file, "tile.trapdoor.name=Wooden Trapdoor" as of 14w08a

La plantilla que solicitas no existe, si crees que deberia crearse puedes sugerirlo en el apartado de discucion de este mismo articulo o haciendo click aqui