<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3ASounds.json</id>
	<title>Minecraft:Sounds.json - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3ASounds.json"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Sounds.json&amp;action=history"/>
	<updated>2026-04-09T13:42:12Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.sasgaming.net/index.php?title=Minecraft:Sounds.json&amp;diff=50902&amp;oldid=prev</id>
		<title>imported&gt;BDJP007301 at 01:27, 28 March 2026</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Sounds.json&amp;diff=50902&amp;oldid=prev"/>
		<updated>2026-03-28T01:27:46Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{lowercase}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;lt;code&amp;gt;sounds.json&amp;lt;/code&amp;gt;&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;#039;&amp;lt;code&amp;gt;sound_definitions.json&amp;lt;/code&amp;gt;&amp;#039;&amp;#039;&amp;#039; {{in|be}}) is a file used by the sound system in [[Minecraft:resource pack]]s which tells the sound system what sound files to play when a sound event is triggered by one or more in-game events. This file is located in {{cd|assets/&amp;lt;namespace&amp;gt;}} in resource packs, and the default file is located in {{cd|[[Minecraft:.minecraft]]/assets/objects}} ({{cd|assets/resource_packs/vanilla/sounds}} {{in|be}}), and its hashed name can be found by looking it up in the file {{cd|.minecraft/assets/indexes/&amp;lt;&amp;#039;&amp;#039;version&amp;#039;&amp;#039;&amp;gt;.json}}.&lt;br /&gt;
&lt;br /&gt;
Since file {{cd|.minecraft/assets/objects}} is obfuscated, one can find in [[Minecraft:Tutorial:Sound directory]] some methods to extract the sound.json and the &amp;#039;&amp;#039;&amp;#039;sound directory&amp;#039;&amp;#039;&amp;#039;, where all sounds and music are stored.&lt;br /&gt;
&lt;br /&gt;
== File structure ==&lt;br /&gt;
=== &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
This file is stored in JSON format, but is represented here using NBT.&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
*{{nbt|compound}} The root Object.&lt;br /&gt;
**{{nbt|compound|&amp;#039;&amp;#039;Sound Event&amp;#039;&amp;#039;}}: A sound event. The name is usually separated in categories (such as {{cd|entity.enderman.stare}}). All default sound events are listed in the table below. (To get a different namespace than {{cd|minecraft}} the file must be under a different namespace; not defining it here.)&lt;br /&gt;
***{{nbt|boolean|replace}}: true/false. Used only in resource packs. True if the sounds listed in &amp;#039;&amp;#039;&amp;#039;sounds&amp;#039;&amp;#039;&amp;#039; should replace the sounds listed in the default sounds.json for this sound event. False if the sounds listed should be added to the list of default sounds. Optional. If undefined, defaults to &amp;quot;false&amp;quot;.&lt;br /&gt;
***{{nbt|string|subtitle}}: Translation key for the [[Minecraft:subtitle]] of the sound. Accepts [[Minecraft:formatting codes]] and displays them properly in-game. Optional. If not specified, the sound event is not displayed in closed captions.&lt;br /&gt;
***{{nbt|list|sounds}}: The sound files this sound event uses. One of the listed sounds is randomly selected to play when this sound event is triggered. Optional.&lt;br /&gt;
****{{nbt|string}} The path to a sound file from the &amp;quot;&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/sounds&amp;quot; folder (excluding the .ogg file extension). Uses forward slashes. The namespace defaults to {{cd|minecraft}} but it can be changed by prepending a namespace and separating it with a {{cd|:}}.&lt;br /&gt;
****{{nbt|compound}} A sound file. This Object is used only when the sound requires additional Strings.&lt;br /&gt;
*****{{nbt|string|name}}: The path to this sound file from the &amp;quot;&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/sounds&amp;quot; folder (excluding the .ogg file extension). The namespace defaults to {{cd|minecraft}} but it can be changed by prepending a namespace and separating it with a {{cd|:}}. Uses forward slashes instead of backslashes. May instead be the name of another sound event (according to value of &amp;quot;type&amp;quot;). If the sound file has one channel (mono), it can be played locationally (sound volume decreases the farther you are from the source). If the file has two channels (stereo), the volume does not change (for example music, ambient sounds). Names are also not allowed to contain whitespace characters.&amp;lt;ref name=&amp;quot;ignore&amp;quot;&amp;gt;&amp;#039;&amp;#039;&amp;#039;Failure to follow this guideline in at least one entry will result in the entire sounds.json being ignored, in favor of vanilla sounds.&amp;#039;&amp;#039;&amp;#039;&amp;lt;/ref&amp;gt;&lt;br /&gt;
*****{{nbt|float|volume}}: The volume for playing this sound. Value is a decimal greater than 0.0.&amp;lt;ref name=&amp;quot;ignore&amp;quot;/&amp;gt; If undefined, defaults to 1.0.&lt;br /&gt;
*****{{nbt|float|pitch}}: Plays the pitch at the specified value. Value is a decimal greater than 0.0.&amp;lt;ref name=&amp;quot;ignore&amp;quot;/&amp;gt; If undefined, defaults to 1.0, but higher and lower values can be chosen.&lt;br /&gt;
*****{{nbt|int|weight}}: The chance that this sound is selected to play when this sound event is triggered. Defaults to 1. An example: putting 2 in for the value would be like placing in the name twice. Only accepts integers. Exceeding the 32-bit integer limit will cause the file to fail. Cannot be 0.&lt;br /&gt;
*****{{nbt|boolean|stream}}: true/false. True if this sound should be streamed from its file. It is recommended that this is set to &amp;quot;true&amp;quot; for sounds that have a duration longer than a few seconds to avoid lag. Used for all sounds in the &amp;quot;music&amp;quot; and &amp;quot;record&amp;quot; categories (except Note Block sounds), as (almost) all the sounds that belong to those categories are over a minute long. Optional. If undefined, defaults to &amp;quot;false&amp;quot;. Setting this to false allows many more instances of the sound to be ran at the same time while setting it to true only allows 4 instances (of that type) to be ran at the same time.&lt;br /&gt;
*****{{nbt|integer|attenuation_distance}}: Modify sound reduction rate based on distance. Used by portals, pistons, beacons, and conduits. Defaults to 16. Exceeding the 32-bit integer limit will cause the file to fail. Cannot be 0.&lt;br /&gt;
*****{{nbt|boolean|preload}}: true/false. True if this sound should be loaded when loading the pack instead of when the sound is played. Used by the underwater ambience. Defaults to &amp;quot;false&amp;quot;.&lt;br /&gt;
*****{{nbt|string|type}}: Two values are available: &amp;quot;file&amp;quot; and &amp;quot;event&amp;quot;; &amp;quot;file&amp;quot; causes the value of &amp;quot;name&amp;quot; to be interpreted as the name of a file, while &amp;quot;event&amp;quot; causes the value of &amp;quot;name&amp;quot; to be interpreted as the name of an already defined event. If undefined, defaults to &amp;quot;file&amp;quot;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An example of a pre-1.10 sounds.json can be found [http://pastebin.com/4U2bd2Sm here].&amp;lt;br&amp;gt;&lt;br /&gt;
Dinnerbone&amp;#039;s pre-1.10 specifications can be found [http://www.reddit.com/r/Minecraft/comments/1ont25/snapshot_13w42a_has_been_released/cctryvp here].&lt;br /&gt;
&lt;br /&gt;
=== &amp;#039;&amp;#039;Bedrock Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
{{Info needed section|descriptions and verification of some parameters}}&lt;br /&gt;
{{verify}}&lt;br /&gt;
; 1.14.0&lt;br /&gt;
&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
*{{nbt|compound}}: The root Object.&lt;br /&gt;
**{{nbt|string|format_version}}: Always set to {{cd|1.14.0}} or {{cd|1.20.20}}.&lt;br /&gt;
**{{nbt|compound|sound_definitions}}&lt;br /&gt;
***{{nbt|compound|&amp;#039;&amp;#039;Sound Event&amp;#039;&amp;#039;}}: A sound event. The name is usually separated in categories (such as {{cd|mob.endermen.stare}} or {{cd|step.stone}}). All default sound events are listed in the table below.&lt;br /&gt;
****{{nbt|string|category}}: What volume slider affects this sound event. Can be {{cd|d=or|ui|music|record|weather|hostile|neutral|player|block|ambient|voice|sound}}. Defaults to &amp;quot;sound&amp;quot;.&lt;br /&gt;
****{{nbt|int}}{{nbt|float|min_distance}}: The distance at which the sound&amp;#039;s volume starts to attenuate (fade off)&lt;br /&gt;
****{{nbt|int}}{{nbt|float|max_distance}}: The distance at which the sound can no longer be heard.&lt;br /&gt;
****{{nbt|list|sounds}}: The sounds used by this sound event.&lt;br /&gt;
*****{{nbt|string|name}}: The path to this sound file from the resource pack folder (excluding the file extension).&lt;br /&gt;
*****{{nbt|compound}}&lt;br /&gt;
******{{nbt|string|name}}: The path to this sound file from the resource pack folder (excluding the file extension).&lt;br /&gt;
******{{nbt|boolean|stream}}: true/false. True if this sound should be streamed from its file. It is recommended that this is set to &amp;quot;true&amp;quot; for sounds that have a duration longer than a few seconds to avoid lag. Used for all sounds in the &amp;quot;music&amp;quot; and &amp;quot;record&amp;quot; categories (except Note Block sounds), as (almost) all the sounds that belong to those categories are over a minute long. Optional. If undefined, defaults to &amp;quot;false&amp;quot;.&lt;br /&gt;
******{{nbt|boolean|is3D}}: A boolean value, true or false, of unknown use.&lt;br /&gt;
******{{nbt|float|volume}}: The volume for playing this sound. If undefined, defaults to 1.0.&lt;br /&gt;
******{{nbt|float|pitch}}: The pitch for playing this sound. If undefined, defaults to 1.0.&lt;br /&gt;
******{{nbt|int|weight}}: The chance that this sound is selected to play when this sound event is triggered. Defaults to 1. An example: putting 2 in for the value would be like placing in the name twice. Only accepts integers.&lt;br /&gt;
******{{nbt|boolean|load_on_low_memory}}: Deprecated.&lt;br /&gt;
****{{nbt|string|subtitle}}: Used to add translation keys or direct names to in-game subtitles, if omitted, the sound will never play in the game and will use generic subtitles.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; Old &amp;lt;!--Still present in game files--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
*{{nbt|compound}} The root Object. Same as {{cd|sound_definitions}} from the tree above.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sound events ==&lt;br /&gt;
A sound event is linked to one or more in-game events. Two sound events may share the same sound file, but correspond to different in-game events and/or belong to different sound categories. A few valid sound events aren&amp;#039;t included in sounds.json, while others don&amp;#039;t have an in-game event associated with them. Any sound event that lacks an in-game event can be played only with {{cmd|playsound}} or by using a [[Minecraft:note block]] below a [[Minecraft:player head]] with the {{Code|note_block_sound}} block entity tag set. All default sound events, the sounds they use, the category they belong to, the [[Minecraft:subtitle]] that plays at that event, and the in-game events they are triggered by are listed in the following table.&lt;br /&gt;
&lt;br /&gt;
{{LoadPage|Sounds.json/Java Edition values|Java Edition values|h3}}&lt;br /&gt;
&lt;br /&gt;
{{LoadPage|Sounds.json/Bedrock Edition values|Bedrock Edition values|h3}}&lt;br /&gt;
&lt;br /&gt;
=== Unused sound events ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- old article: Unused_sound_event --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{cleanup&lt;br /&gt;
|section=1}}An &amp;#039;&amp;#039;&amp;#039;unused sound event&amp;#039;&amp;#039;&amp;#039; is any sound embedded into [[Minecraft:Minecraft]] that does not have a trigger without plugins or mods. They do not have a defined frequency of amplification, or anything else a generic, used sound would use. Also, they do not have subtitles until they are used from a trigger in the vanilla game.&amp;lt;ref&amp;gt;{{bug|MC-177094|resolution=Won&amp;#039;t Fix}}&amp;lt;/ref&amp;gt; These do not usually have a corresponding translation key.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- old /playsound advice: In order to play an unused sound event, use the {{cmd|playsound}} command, followed by its respective parameters in that linked article. This must be done either in a singleplayer world with cheats enabled or a multiplayer server with operator permissions given to the player. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== List ====&lt;br /&gt;
&lt;br /&gt;
Below is a list of features along with audio sources for their unused sound events.&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Fox]]&lt;br /&gt;
{{Edition|Bedrock}}:&lt;br /&gt;
{{SoundTable&lt;br /&gt;
| type=bedrock&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Fox sniff1.ogg&lt;br /&gt;
|sound2=Fox sniff2.ogg&lt;br /&gt;
|sound3=Fox sniff3.ogg&lt;br /&gt;
|sound4=Fox sniff4.ogg&lt;br /&gt;
|source=neutral&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039; &amp;lt;ref group=&amp;quot;sound&amp;quot; name=&amp;quot;sounds&amp;quot;&amp;gt;{{Bug|MCPE-127356}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=mob.fox.sniff&lt;br /&gt;
|volume=0.6&lt;br /&gt;
|pitch=0.8-1.2 (Baby: 1.3-1.7)}}&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Fox spit1.ogg&lt;br /&gt;
|sound2=Fox spit2.ogg&lt;br /&gt;
|sound3=Fox spit3.ogg&lt;br /&gt;
|source=neutral&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039; &amp;lt;ref group=&amp;quot;sound&amp;quot; name=&amp;quot;sounds&amp;quot;/&amp;gt;&lt;br /&gt;
|id=mob.fox.spit&lt;br /&gt;
|volume=0.7&lt;br /&gt;
|pitch=0.8-1.2 (Baby: 1.3-1.7)&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Ghast]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable&lt;br /&gt;
| type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Ghast affectionate scream.ogg&lt;br /&gt;
|subtitle=MC-177079&lt;br /&gt;
|source=none&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=&amp;quot;sound&amp;quot;&amp;gt;{{bug|MC-185411}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.ghast.scream&lt;br /&gt;
|translationkey=-&lt;br /&gt;
|volume=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
|pitch=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
| distance = &amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Edition|Bedrock}}:&lt;br /&gt;
{{SoundTable&lt;br /&gt;
| type=bedrock&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Ghast affectionate scream.ogg&lt;br /&gt;
|source=hostile&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&lt;br /&gt;
|id=mob.ghast.affectionate_scream&lt;br /&gt;
|volume=2.5&lt;br /&gt;
|pitch=0.8-1.2&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Player]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable|type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Player breathe.ogg&lt;br /&gt;
|subtitle=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&amp;lt;ref name=&amp;quot;breath group&amp;quot; group=&amp;quot;sound&amp;quot;&amp;gt;No bug reports have been made for this case, however given the resolution of most others the lack of a subtitle is implied to be intentional&amp;lt;/ref&amp;gt;&lt;br /&gt;
|source=none&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=&amp;quot;sound&amp;quot;&amp;gt;{{bug|MC-185414}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.player.breath&lt;br /&gt;
|translationkey=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&amp;lt;ref name=&amp;quot;breath group&amp;quot; group=&amp;quot;sound&amp;quot;/&amp;gt;&lt;br /&gt;
|volume=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
|pitch=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
| distance = &amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Bat]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable|type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Bat loop.ogg&lt;br /&gt;
|subtitle=MC-177087&lt;br /&gt;
|source=none&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=&amp;quot;sound&amp;quot;&amp;gt;{{bug|MC-185413}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.bat.loop&lt;br /&gt;
|translationkey=-&lt;br /&gt;
|volume=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
|pitch=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
| distance = &amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Silverfish]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable|type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Silverfish step1.ogg&lt;br /&gt;
|sound2=Silverfish step2.ogg&lt;br /&gt;
|sound3=Silverfish step3.ogg&lt;br /&gt;
|sound4=Silverfish step4.ogg&lt;br /&gt;
|subtitle=Footsteps&lt;br /&gt;
|source=hostile&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=sound&amp;gt;{{bug|MC-117609}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.silverfish.step&lt;br /&gt;
|translationkey=subtitles.block.generic.footsteps&lt;br /&gt;
|volume=0.15&lt;br /&gt;
|pitch=1.0&lt;br /&gt;
| distance = 16&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Endermite]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable|type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Silverfish step1.ogg&lt;br /&gt;
|sound2=Silverfish step2.ogg&lt;br /&gt;
|sound3=Silverfish step3.ogg&lt;br /&gt;
|sound4=Silverfish step4.ogg&lt;br /&gt;
|subtitle=Footsteps&lt;br /&gt;
|source=hostile&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=sound&amp;gt;{{bug|MC-117609}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.endermite.step&lt;br /&gt;
|translationkey=subtitles.block.generic.footsteps&lt;br /&gt;
|volume=0.15&lt;br /&gt;
|pitch=1.0&lt;br /&gt;
| distance = 16&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
;[[Minecraft:Zombie]]&lt;br /&gt;
{{Edition|Java}}:&lt;br /&gt;
{{SoundTable|type=java&lt;br /&gt;
| {{SoundLine&lt;br /&gt;
|sound=Zombie hit metal1.ogg&lt;br /&gt;
|sound2=Zombie hit metal2.ogg&lt;br /&gt;
|sound3=Zombie hit metal3.ogg&lt;br /&gt;
|subtitle=Block broken &amp;lt;ref group=&amp;quot;sound&amp;quot; name=ironsubtitle&amp;gt;{{Bug|MC-226770}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|source=none&lt;br /&gt;
|description=&amp;#039;&amp;#039;Unused sound event&amp;#039;&amp;#039;&amp;lt;ref group=&amp;quot;sound&amp;quot;&amp;gt;{{bug|MC-218122}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|id=entity.zombie.attack_iron_door&lt;br /&gt;
|translationkey=subtitles.block.generic.break|translationkeynote=&amp;lt;ref group=sound name=ironsubtitle/&amp;gt;&lt;br /&gt;
|volume=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
|pitch=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
| distance=&amp;#039;&amp;#039;None&amp;#039;&amp;#039;&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;references group=&amp;quot;sound&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block sound categories ==&lt;br /&gt;
{{Main|Block sound type}}&lt;br /&gt;
A block sound type is a set of sounds that blocks use when they are broken, placed, hit, fallen on, stepped on, jumped from,{{Only|bedrock}} or landed on.{{Only|bedrock}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{See also|Java Edition history of sound events|Bedrock Edition history of sound events}}&lt;br /&gt;
&lt;br /&gt;
=== &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|java}}&lt;br /&gt;
|{{HistoryLine||1.7.2|dev=13w42a|Added sounds.json.}}&lt;br /&gt;
|{{HistoryLine||1.9|dev=15w43a|Changed the ID of most sounds.  The older IDs can be found at [[Minecraft:Sounds.json/Java Edition values before 1.9]].}}&lt;br /&gt;
|{{HistoryLine|||dev=15w43b|Added &amp;quot;subtitle&amp;quot; field.}}&lt;br /&gt;
|{{HistoryLine|||dev=16w02a|Added &amp;quot;voice&amp;quot; sound event category.}}&lt;br /&gt;
|{{HistoryLine||1.10|dev=pre2|Removed &amp;quot;category&amp;quot; field.&amp;lt;ref&amp;gt;{{tweet|Dinnerbone|852212485855862784|Aha, I think that&amp;#039;s decided by the thing playing the event now.}}&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
|{{HistoryLine||1.13|dev=18w10a|Added &amp;quot;preload&amp;quot; field.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== &amp;#039;&amp;#039;Bedrock Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|pocket alpha}}&lt;br /&gt;
|{{HistoryLine||0.12.1|dev=build 1|Added &amp;lt;samp&amp;gt;sounds.json&amp;lt;/samp&amp;gt;.{{check version|The preceding version is not archived, so this cannot be confirmed.}}}}&lt;br /&gt;
|{{HistoryLine|pocket}}&lt;br /&gt;
|{{HistoryLine||1.0.4|dev=alpha 1.0.4.1|Renamed &amp;lt;samp&amp;gt;sounds.json&amp;lt;/samp&amp;gt; to &amp;lt;samp&amp;gt;sound_definitions.json&amp;lt;/samp&amp;gt;.}}&lt;br /&gt;
|{{HistoryLine|bedrock}}&lt;br /&gt;
|{{HistoryLine||1.16.0|dev=beta 1.16.0.63|Deprecated the &amp;quot;load_on_low_memory&amp;quot; field, as all audio can now play on low memory devices.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
== Navigation ==&lt;br /&gt;
{{Navbox resource packs}}&lt;br /&gt;
{{Navbox Java Edition technical|resourcepack}}&lt;br /&gt;
{{Navbox Bedrock Edition}}&lt;br /&gt;
&lt;br /&gt;
[[Minecraft:de:Sounddaten]]&lt;br /&gt;
[[Minecraft:ja:Sounds.json]]&lt;br /&gt;
[[Minecraft:pt:Sounds.json]]&lt;br /&gt;
[[Minecraft:ru:Sounds.json]]&lt;br /&gt;
[[Minecraft:uk:Sounds.json]]&lt;br /&gt;
[[Minecraft:zh:Sounds.json]]&lt;/div&gt;</summary>
		<author><name>imported&gt;BDJP007301</name></author>
	</entry>
</feed>