<?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%3ADimension_type</id>
	<title>Minecraft:Dimension type - 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%3ADimension_type"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Dimension_type&amp;action=history"/>
	<updated>2026-04-11T00:44:10Z</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:Dimension_type&amp;diff=88113&amp;oldid=prev</id>
		<title>SyncBot: Sync: new page from Minecraft</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Dimension_type&amp;diff=88113&amp;oldid=prev"/>
		<updated>2026-04-10T11:11:08Z</updated>

		<summary type="html">&lt;p&gt;Sync: new page from Minecraft&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Exclusive|java}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Dimension types&amp;#039;&amp;#039;&amp;#039; are technical [[Minecraft:JSON]] files within a [[Minecraft:data pack]], in the folder {{cd|data/&amp;lt;namespace&amp;gt;/dimension_type}}. They define properties of a [[Minecraft:Dimension definition|dimension]] such as world height build limits, the ambient light, and more.&lt;br /&gt;
&lt;br /&gt;
== JSON format ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
* {{nbt|compound}} The root object.&amp;lt;section begin=&amp;quot;definition&amp;quot; /&amp;gt;&lt;br /&gt;
** {{nbt|double|coordinate_scale}}: The multiplier applied to coordinates when leaving the dimension. Value between 0.00001 and 30000000.0 (both inclusive).&lt;br /&gt;
** {{nbt|boolean|has_skylight}}: Whether the dimension has skylight or not. If set to false, weather is additionally disabled.&lt;br /&gt;
** {{nbt|boolean|has_ceiling}}: Whether the dimension has a bedrock ceiling. Note that this is only a logical ceiling. It is unrelated with whether the dimension really has a block ceiling. If set to true, there is no weather, the way respawn and mob spawning positions are calculated is changed,{{info needed|how?}} and maps record terrain within a 32 block radius around the player, instead of 64 – however, no data is actually recorded, and instead a pattern will be displayed.&lt;br /&gt;
** {{nbt|boolean|has_ender_dragon_fight}}: Whether this dimension can have an [[Minecraft:ender dragon]] fight. {{more info|What exactly is controlled by this}}&lt;br /&gt;
** {{nbt|float|ambient_light}}: How much light the dimension has. When set to 0, it completely follows the light level; when set to 1, there is no ambient lighting.{{more info|Precise effects for other values need testing}}&lt;br /&gt;
** {{nbt|boolean|has_fixed_time}}: (optional, defaults to &amp;lt;code&amp;gt;false&amp;lt;/code&amp;gt;) Whether this dimension has fixed time. {{more info|which behaviours are affected by this?}}&lt;br /&gt;
** {{nbt|int|monster_spawn_block_light_limit}}: A single integer from 0 to 15. Block light level must be less than or equal to this value for monsters to spawn.&lt;br /&gt;
** {{nbt|int}}{{nbt|compound|monster_spawn_light_level}}: An integer or int provider from 0 to 15. Each time a monster spawn is attempted, a value is calculated using this int provider. The result of the following formula must be less than or equal to this value for monsters to spawn: &amp;lt;code&amp;gt;max( skyLight - 10, blockLight )&amp;lt;/code&amp;gt; during thunderstorms, and &amp;lt;code&amp;gt;max( [[Minecraft:Light#Internal_sky_light|internalSkyLight]], blockLight )&amp;lt;/code&amp;gt; during other weather.&lt;br /&gt;
*** {{nbt inherit/int provider}}&lt;br /&gt;
** {{nbt|integer|logical_height}}: The maximum height to which [[Minecraft:chorus fruit]]s and [[Minecraft:Nether portal]]s can bring players within this dimension. This excludes portals that were already built above the limit as they still connect normally. Cannot be greater than {{nbt|integer|height}}.&lt;br /&gt;
** {{nbt|integer|min_y}}: The minimum height in which blocks can exist within this dimension. Must be between -2032 and 2031 and be a multiple of 16 (effectively making 2016 the maximum).&lt;br /&gt;
** {{nbt|integer|height}}: The total height in which blocks can exist within this dimension. Must be between 16 and 4064 and be a multiple of 16. The maximum building height = min_y + height - 1, which cannot be greater than 2031.&lt;br /&gt;
** {{nbt|string|infiniburn}}: A block tag with &amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt;. Fires on these blocks burns infinitely.&lt;br /&gt;
** {{nbt|string|skybox}}: (optional, defaults to &amp;lt;code&amp;gt;overworld&amp;lt;/code&amp;gt;) The skybox to use. Can be {{cd|none|overworld|end}}.&lt;br /&gt;
** {{nbt|string|cardinal_light}}: (optional, defaults to &amp;lt;code&amp;gt;default&amp;lt;/code&amp;gt;) Direction of cardinal light affecting blocks. Can be {{cd|default|nether}}&lt;br /&gt;
** {{nbt|compound|attributes}}: Map of [[Minecraft:environment attribute]]s that apply when in this dimension.&lt;br /&gt;
** {{nbt|string|default_clock}}: {{json ref|world clock}} to use as the default for this dimension. This clock will be used as default for the {{cmd|time}} command, and the &amp;lt;code&amp;gt;minecraft:wake_up_from_sleep&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;minecraft:roll_village_siege&amp;lt;/code&amp;gt; [[Minecraft:time marker]]s of this clock will be used. If not specified, the dimension doesn&amp;#039;t have a default clock.&lt;br /&gt;
** {{nbt|string}}{{nbt|list|timelines}}: {{json ref|timeline|tag=1}} that are active in this dimension.&amp;lt;section end=&amp;quot;definition&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Defaults ==&lt;br /&gt;
These are the settings used by the 3 dimensions present in Vanilla and the additional Overworld Caves settings provided by Minecraft.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Property&lt;br /&gt;
! [[Minecraft:Overworld]]&lt;br /&gt;
! [[Minecraft:The Nether]]&lt;br /&gt;
! [[Minecraft:The End]]&lt;br /&gt;
! Overworld Caves&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|boolean|has_skylight}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|boolean|has_ceiling}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|boolean|has_ender_dragon_fight}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|double|coordinate_scale}}&lt;br /&gt;
| 1.0&lt;br /&gt;
| 8.0&lt;br /&gt;
| 1.0&lt;br /&gt;
| 1.0&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|boolean|has_fixed_time}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|yes|true}}&lt;br /&gt;
| {{tc|no|false}}&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|float|ambient_light}}&lt;br /&gt;
| 0.0&lt;br /&gt;
| 0.1&lt;br /&gt;
| 0.0&lt;br /&gt;
| 0.0&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|int|min_y}}&lt;br /&gt;
| -64&lt;br /&gt;
| 0&lt;br /&gt;
| 0&lt;br /&gt;
| -64&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|int|height}}&lt;br /&gt;
| 384&lt;br /&gt;
| 256&lt;br /&gt;
| 256&lt;br /&gt;
| 384&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|int|logical_height}}&lt;br /&gt;
| 384&lt;br /&gt;
| 128&lt;br /&gt;
| 256&lt;br /&gt;
| 384&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|int}}{{nbt|compound|monster_spawn_light_level}}&lt;br /&gt;
| 0-7&lt;br /&gt;
| 7&lt;br /&gt;
| 15&lt;br /&gt;
| 0-7&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|int|monster_spawn_block_light_limit}}&lt;br /&gt;
| 0&lt;br /&gt;
| 15&lt;br /&gt;
| 0&lt;br /&gt;
| 0&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|string|infiniburn}}&lt;br /&gt;
| {{tag link|block|infiniburn_overworld}}&lt;br /&gt;
| {{tag link|block|infiniburn_nether}}&lt;br /&gt;
| {{tag link|block|infiniburn_end}}&lt;br /&gt;
| {{tag link|block|infiniburn_overworld}}&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|string|skybox}}&lt;br /&gt;
| overworld&lt;br /&gt;
| none&lt;br /&gt;
| end&lt;br /&gt;
| overworld&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|string|cardinal_light}}&lt;br /&gt;
| default&lt;br /&gt;
| nether&lt;br /&gt;
| default&lt;br /&gt;
| default&lt;br /&gt;
|-&lt;br /&gt;
| {{nbt|string|default_clock}}&lt;br /&gt;
| overworld&lt;br /&gt;
| {{tc|None}}&lt;br /&gt;
| the_end&lt;br /&gt;
| overworld&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|java}}&lt;br /&gt;
|{{HistoryLine||1.16|dev=Pre-release 1|Added dimension types to [[Minecraft:data pack]]s.}}&lt;br /&gt;
|{{HistoryLine||1.16.2|dev=pre1|Dimension types now use the same folder pattern in data packs as other resources: &amp;lt;samp&amp;gt;namespace/&amp;lt;&amp;#039;&amp;#039;type&amp;#039;&amp;#039;&amp;gt;/resource.json&amp;lt;/samp&amp;gt;.}}&lt;br /&gt;
|{{HistoryLine|||dev=pre2|Replaced the field {{nbt|bool|shrunk}} with {{nbt|double|coordinate_scale}}.}}&lt;br /&gt;
|{{HistoryLine||1.17|dev=20w49a|Added {{nbt|integer|min_y}} and {{nbt|integer|height}}.}}&lt;br /&gt;
|{{HistoryLine||1.18.2|dev=22w06a|infiniburn&amp;#039;s defined tag must be preceded by a # symbol; this was previously optional.}}&lt;br /&gt;
|{{HistoryLine||1.19|dev=22w11a|Dimension types can no longer be inlined in the dimension, they have to be a reference to a separate dimension_type file.}}&lt;br /&gt;
|{{HistoryLine|||dev=pre1|Added {{nbt|integer|monster_spawn_block_light_limit}} and {{nbt|int}}{{nbt|compound|monster_spawn_light_level}} to the dimension type.}}&lt;br /&gt;
|{{HistoryLine||1.21.6|dev=25w15a|Added {{nbt|integer|cloud_height}} to the dimension type; cloud presence is no longer controlled by {{nbt|string|effects}} and their height is no longer a fixed value.}}&lt;br /&gt;
|{{HistoryLine||1.21.11|dev=25w42a|Added new attributes field for dimensions to specify Environment Attributes.&lt;br /&gt;
|Many fields have been migrated to [[Minecraft:environment attribute]]s:&lt;br /&gt;
* {{nbt|boolean|ultrawarm}} -&amp;gt; {{cd|minecraft:gameplay/water_evaporates}}, {{cd|minecraft:gameplay/fast_lava}}, {{cd|visual/default_dripstone_particle}}&lt;br /&gt;
* {{nbt|boolean|bed_works}} -&amp;gt; {{cd|minecraft:gameplay/bed_rule}}&lt;br /&gt;
* {{nbt|boolean|respawn_anchor_works}} -&amp;gt; {{cd|minecraft:gameplay/respawn_anchor_works}}&lt;br /&gt;
* {{nbt|int|cloud_height}} -&amp;gt; {{cd|minecraft:visual/cloud_height}}&lt;br /&gt;
* {{nbt|boolean|piglin_safe}} -&amp;gt; {{cd|minecraft:gameplay/piglins_zombify}}&lt;br /&gt;
* {{nbt|boolean|has_raids}} -&amp;gt; {{cd|minecraft:gameplay/can_start_raid}}&lt;br /&gt;
| The {{nbt|boolean|natural}} field no longer controls whether Nether portals spawn piglin, which was migrated to the {{cd|minecraft:gameplay/nether_portal_spawns_piglin}} environment attribute.}}&lt;br /&gt;
|{{HistoryLine|||dev=25w45a|Added a new optional {{nbt|string}}{{nbt|list|timelines}} field.&lt;br /&gt;
|The remaining functionality of {{nbt|boolean|natural}} field has been migrated to the {{cd|minecraft:gameplay/eyeblossom_open}} and {{cd|minecraft:gameplay/creaking_active}} environment attributes.&lt;br /&gt;
|The {{nbt|string|effects}} field has been removed and replaced with the following new fields: {{nbt|string|skybox}} and {{nbt|string|cardinal_light}}.&lt;br /&gt;
|The {{nbt|int|fixed_time}} field has been replaced by {{nbt|boolean|has_fixed_time}}.}}&lt;br /&gt;
|{{HistoryLine||26.1|dev=snap3|Added {{nbt|string|default_clock}} field}}&lt;br /&gt;
|{{HistoryLine|||dev=snap6|Added {{nbt|boolean|has_ender_dragon_fight}} field}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [https://misode.github.io/dimension-type/ Dimension type Generator on misode.github.io]&lt;br /&gt;
&lt;br /&gt;
== Navigation ==&lt;br /&gt;
{{Navbox Java Edition technical|datapack}}&lt;br /&gt;
&lt;br /&gt;
[[Minecraft:de:Dimensionsarten]]&lt;br /&gt;
[[Minecraft:fr:Type de dimension]]&lt;br /&gt;
[[Minecraft:ja:ディメンションタイプ]]&lt;br /&gt;
[[Minecraft:pt:Tipo de dimensão]]&lt;br /&gt;
[[Minecraft:zh:维度类型]]&lt;/div&gt;</summary>
		<author><name>SyncBot</name></author>
	</entry>
</feed>