minecraft-data 3.46.1 → 3.46.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data.js +22 -0
- package/doc/history.md +4 -0
- package/minecraft-data/.github/helper-bot/index.js +3 -3
- package/minecraft-data/README.md +2 -2
- package/minecraft-data/data/bedrock/1.16.201/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.16.210/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.16.220/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.0/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.10/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.10/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.20/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.21/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.30/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.40/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.50/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.60/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.62/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.70/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.80/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.20.0/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.20.10/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.20.15/version.json +6 -0
- package/minecraft-data/data/bedrock/1.20.30/protocol.json +41 -26
- package/minecraft-data/data/bedrock/common/protocolVersions.json +7 -1
- package/minecraft-data/data/bedrock/common/versions.json +1 -0
- package/minecraft-data/data/bedrock/latest/proto.yml +4 -12
- package/minecraft-data/data/bedrock/latest/types.yml +11 -0
- package/minecraft-data/data/dataPaths.json +22 -0
- package/minecraft-data/data/pc/1.11.2/protocolComments.json +49 -49
- package/minecraft-data/data/pc/1.9.2/protocolComments.json +1 -1
- package/minecraft-data/data/pc/common/protocolVersions.json +17 -1
- package/minecraft-data/doc/add-data-new-version.md +2 -2
- package/minecraft-data/doc/history.md +5 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1787,6 +1787,28 @@ module.exports =
|
|
|
1787
1787
|
get version () { return require("./minecraft-data/data/bedrock/1.20.10/version.json") },
|
|
1788
1788
|
get language () { return require("./minecraft-data/data/bedrock/1.20.10/language.json") }
|
|
1789
1789
|
},
|
|
1790
|
+
'1.20.15': {
|
|
1791
|
+
get blocks () { return require("./minecraft-data/data/bedrock/1.20.0/blocks.json") },
|
|
1792
|
+
get blockStates () { return require("./minecraft-data/data/bedrock/1.20.0/blockStates.json") },
|
|
1793
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.20.0/blockCollisionShapes.json") },
|
|
1794
|
+
get biomes () { return require("./minecraft-data/data/bedrock/1.20.0/biomes.json") },
|
|
1795
|
+
get entities () { return require("./minecraft-data/data/bedrock/1.19.1/entities.json") },
|
|
1796
|
+
get items () { return require("./minecraft-data/data/bedrock/1.20.0/items.json") },
|
|
1797
|
+
get recipes () { return require("./minecraft-data/data/bedrock/1.19.10/recipes.json") },
|
|
1798
|
+
get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
|
|
1799
|
+
get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
|
|
1800
|
+
get enchantments () { return require("./minecraft-data/data/bedrock/1.19.1/enchantments.json") },
|
|
1801
|
+
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
1802
|
+
get protocol () { return require("./minecraft-data/data/bedrock/1.20.10/protocol.json") },
|
|
1803
|
+
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
1804
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1805
|
+
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.20.0/blocksB2J.json") },
|
|
1806
|
+
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.20.0/blocksJ2B.json") },
|
|
1807
|
+
proto: __dirname + '/minecraft-data/data/bedrock/1.20.10/proto.yml',
|
|
1808
|
+
types: __dirname + '/minecraft-data/data/bedrock/1.20.10/types.yml',
|
|
1809
|
+
get version () { return require("./minecraft-data/data/bedrock/1.20.15/version.json") },
|
|
1810
|
+
get language () { return require("./minecraft-data/data/bedrock/1.20.10/language.json") }
|
|
1811
|
+
},
|
|
1790
1812
|
'1.20.30': {
|
|
1791
1813
|
get blocks () { return require("./minecraft-data/data/bedrock/1.20.0/blocks.json") },
|
|
1792
1814
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.20.0/blockStates.json") },
|
package/doc/history.md
CHANGED
|
@@ -121,10 +121,10 @@ async function updateManifestPC () {
|
|
|
121
121
|
const versionJson = require('./version.json')
|
|
122
122
|
|
|
123
123
|
let majorVersion
|
|
124
|
-
|
|
124
|
+
if (versionJson.id && versionJson.id.includes('.')) {
|
|
125
125
|
majorVersion = versionJson.id.split('.', 2).join('.')
|
|
126
|
-
}
|
|
127
|
-
console.error('
|
|
126
|
+
} else {
|
|
127
|
+
console.error(`Version '${versionJson.id}' appears to be a snapshot (no dot in name). Using the last known majorVersion in protocolVersions.json for this version (may be incorrect)`)
|
|
128
128
|
majorVersion = protocolVersions.pc[0].majorVersion
|
|
129
129
|
}
|
|
130
130
|
|
package/minecraft-data/README.md
CHANGED
|
@@ -91,7 +91,7 @@ Projects that provide data:
|
|
|
91
91
|
|
|
92
92
|
| Project name | Language | Source | Data provided |
|
|
93
93
|
| --- | --- | --- | --- |
|
|
94
|
-
| [minecraft-wiki-extractor](https://github.com/PrismarineJS/minecraft-wiki-extractor) | Node.js | [minecraft wiki](
|
|
94
|
+
| [minecraft-wiki-extractor](https://github.com/PrismarineJS/minecraft-wiki-extractor) | Node.js | [minecraft wiki](https://minecraft.wiki) | blocks, items, entities, recipes |
|
|
95
95
|
| [mcdevs-wiki-extractor](https://github.com/PrismarineJS/mcdevs-wiki-extractor) | Node.js | [wiki.vg](http://wiki.vg/Protocol) | a partial protocol, entities |
|
|
96
96
|
| [node-minecraft-extractor](https://github.com/PrismarineJS/node-minecraft-extractor) | Node.js | merge between wiki.vg and mcwiki | a complete entities file |
|
|
97
97
|
| [minecraft-jar-extractor](https://github.com/PrismarineJS/minecraft-jar-extractor) | Node.js | minecraft server jar | a very partial but completely up to date protocol |
|
|
@@ -109,7 +109,7 @@ Pages interesting to manually update the data if necessary:
|
|
|
109
109
|
| [wiki.vg Inventory page](http://wiki.vg/Inventory) | windows |
|
|
110
110
|
| [wiki.vg](http://wiki.vg/Block_Actions) | instruments |
|
|
111
111
|
| [a mineflayer PR](https://github.com/PrismarineJS/mineflayer/pull/197) | biomes |
|
|
112
|
-
| [mcwiki effects page](
|
|
112
|
+
| [mcwiki effects page](https://minecraft.wiki/w/Effect) | effects |
|
|
113
113
|
| [wiki.vg protocol version numbers](http://wiki.vg/Protocol_version_numbers) | protocolVersions |
|
|
114
114
|
|
|
115
115
|
## Data quality
|
|
@@ -1512,7 +1512,7 @@ packet_update_trade:
|
|
|
1512
1512
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1513
1513
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1514
1514
|
# of that particular item.
|
|
1515
|
-
# https://minecraft.
|
|
1515
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1516
1516
|
economic_trades: bool
|
|
1517
1517
|
# NBT serialised compound of offers that the villager has.
|
|
1518
1518
|
offers: nbt
|
|
@@ -2372,7 +2372,7 @@ packet_motion_prediction_hints:
|
|
|
2372
2372
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
2373
2373
|
# conditions specified in an animation controller.
|
|
2374
2374
|
# Much of the documentation of this packet can be found at
|
|
2375
|
-
# https://
|
|
2375
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
2376
2376
|
packet_animate_entity:
|
|
2377
2377
|
!id: 0x9e
|
|
2378
2378
|
!bound: client
|
|
@@ -1559,7 +1559,7 @@ packet_update_trade:
|
|
|
1559
1559
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1560
1560
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1561
1561
|
# of that particular item.
|
|
1562
|
-
# https://minecraft.
|
|
1562
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1563
1563
|
economic_trades: bool
|
|
1564
1564
|
# NBT serialised compound of offers that the villager has.
|
|
1565
1565
|
offers: nbt
|
|
@@ -2499,7 +2499,7 @@ packet_motion_prediction_hints:
|
|
|
2499
2499
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
2500
2500
|
# conditions specified in an animation controller.
|
|
2501
2501
|
# Much of the documentation of this packet can be found at
|
|
2502
|
-
# https://
|
|
2502
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
2503
2503
|
packet_animate_entity:
|
|
2504
2504
|
!id: 0x9e
|
|
2505
2505
|
!bound: client
|
|
@@ -1693,7 +1693,7 @@ packet_update_trade:
|
|
|
1693
1693
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1694
1694
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1695
1695
|
# of that particular item.
|
|
1696
|
-
# https://minecraft.
|
|
1696
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1697
1697
|
economic_trades: bool
|
|
1698
1698
|
# NBT serialised compound of offers that the villager has.
|
|
1699
1699
|
offers: nbt
|
|
@@ -1854,7 +1854,7 @@ packet_structure_block_update:
|
|
|
1854
1854
|
# used to export the structure to a file.
|
|
1855
1855
|
structure_name: string
|
|
1856
1856
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1857
|
-
# be found here: https://minecraft.
|
|
1857
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1858
1858
|
data_field: string
|
|
1859
1859
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1860
1860
|
# exported by the structure block.
|
|
@@ -2974,7 +2974,7 @@ packet_motion_prediction_hints:
|
|
|
2974
2974
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
2975
2975
|
# conditions specified in an animation controller.
|
|
2976
2976
|
# Much of the documentation of this packet can be found at
|
|
2977
|
-
# https://
|
|
2977
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
2978
2978
|
packet_animate_entity:
|
|
2979
2979
|
!id: 0x9e
|
|
2980
2980
|
!bound: client
|
|
@@ -1695,7 +1695,7 @@ packet_update_trade:
|
|
|
1695
1695
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1696
1696
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1697
1697
|
# of that particular item.
|
|
1698
|
-
# https://minecraft.
|
|
1698
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1699
1699
|
economic_trades: bool
|
|
1700
1700
|
# NBT serialised compound of offers that the villager has.
|
|
1701
1701
|
offers: nbt
|
|
@@ -1856,7 +1856,7 @@ packet_structure_block_update:
|
|
|
1856
1856
|
# used to export the structure to a file.
|
|
1857
1857
|
structure_name: string
|
|
1858
1858
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1859
|
-
# be found here: https://minecraft.
|
|
1859
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1860
1860
|
data_field: string
|
|
1861
1861
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1862
1862
|
# exported by the structure block.
|
|
@@ -2976,7 +2976,7 @@ packet_motion_prediction_hints:
|
|
|
2976
2976
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
2977
2977
|
# conditions specified in an animation controller.
|
|
2978
2978
|
# Much of the documentation of this packet can be found at
|
|
2979
|
-
# https://
|
|
2979
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
2980
2980
|
packet_animate_entity:
|
|
2981
2981
|
!id: 0x9e
|
|
2982
2982
|
!bound: client
|
|
@@ -1778,7 +1778,7 @@ packet_update_trade:
|
|
|
1778
1778
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1779
1779
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1780
1780
|
# of that particular item.
|
|
1781
|
-
# https://minecraft.
|
|
1781
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1782
1782
|
economic_trades: bool
|
|
1783
1783
|
# NBT serialised compound of offers that the villager has.
|
|
1784
1784
|
offers: nbt
|
|
@@ -1944,7 +1944,7 @@ packet_structure_block_update:
|
|
|
1944
1944
|
# used to export the structure to a file.
|
|
1945
1945
|
structure_name: string
|
|
1946
1946
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1947
|
-
# be found here: https://minecraft.
|
|
1947
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1948
1948
|
data_field: string
|
|
1949
1949
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1950
1950
|
# exported by the structure block.
|
|
@@ -3073,7 +3073,7 @@ packet_motion_prediction_hints:
|
|
|
3073
3073
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3074
3074
|
# conditions specified in an animation controller.
|
|
3075
3075
|
# Much of the documentation of this packet can be found at
|
|
3076
|
-
# https://
|
|
3076
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3077
3077
|
packet_animate_entity:
|
|
3078
3078
|
!id: 0x9e
|
|
3079
3079
|
!bound: client
|
|
@@ -1791,7 +1791,7 @@ packet_update_trade:
|
|
|
1791
1791
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1792
1792
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1793
1793
|
# of that particular item.
|
|
1794
|
-
# https://minecraft.
|
|
1794
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1795
1795
|
economic_trades: bool
|
|
1796
1796
|
# NBT serialised compound of offers that the villager has.
|
|
1797
1797
|
offers: nbt
|
|
@@ -1957,7 +1957,7 @@ packet_structure_block_update:
|
|
|
1957
1957
|
# used to export the structure to a file.
|
|
1958
1958
|
structure_name: string
|
|
1959
1959
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1960
|
-
# be found here: https://minecraft.
|
|
1960
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1961
1961
|
data_field: string
|
|
1962
1962
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1963
1963
|
# exported by the structure block.
|
|
@@ -3103,7 +3103,7 @@ packet_motion_prediction_hints:
|
|
|
3103
3103
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3104
3104
|
# conditions specified in an animation controller.
|
|
3105
3105
|
# Much of the documentation of this packet can be found at
|
|
3106
|
-
# https://
|
|
3106
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3107
3107
|
packet_animate_entity:
|
|
3108
3108
|
!id: 0x9e
|
|
3109
3109
|
!bound: client
|
|
@@ -1791,7 +1791,7 @@ packet_update_trade:
|
|
|
1791
1791
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1792
1792
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1793
1793
|
# of that particular item.
|
|
1794
|
-
# https://minecraft.
|
|
1794
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1795
1795
|
economic_trades: bool
|
|
1796
1796
|
# NBT serialised compound of offers that the villager has.
|
|
1797
1797
|
offers: nbt
|
|
@@ -1957,7 +1957,7 @@ packet_structure_block_update:
|
|
|
1957
1957
|
# used to export the structure to a file.
|
|
1958
1958
|
structure_name: string
|
|
1959
1959
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1960
|
-
# be found here: https://minecraft.
|
|
1960
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1961
1961
|
data_field: string
|
|
1962
1962
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1963
1963
|
# exported by the structure block.
|
|
@@ -3103,7 +3103,7 @@ packet_motion_prediction_hints:
|
|
|
3103
3103
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3104
3104
|
# conditions specified in an animation controller.
|
|
3105
3105
|
# Much of the documentation of this packet can be found at
|
|
3106
|
-
# https://
|
|
3106
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3107
3107
|
packet_animate_entity:
|
|
3108
3108
|
!id: 0x9e
|
|
3109
3109
|
!bound: client
|
|
@@ -1798,7 +1798,7 @@ packet_update_trade:
|
|
|
1798
1798
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1799
1799
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1800
1800
|
# of that particular item.
|
|
1801
|
-
# https://minecraft.
|
|
1801
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1802
1802
|
economic_trades: bool
|
|
1803
1803
|
# NBT serialised compound of offers that the villager has.
|
|
1804
1804
|
offers: nbt
|
|
@@ -1964,7 +1964,7 @@ packet_structure_block_update:
|
|
|
1964
1964
|
# used to export the structure to a file.
|
|
1965
1965
|
structure_name: string
|
|
1966
1966
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1967
|
-
# be found here: https://minecraft.
|
|
1967
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1968
1968
|
data_field: string
|
|
1969
1969
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1970
1970
|
# exported by the structure block.
|
|
@@ -3111,7 +3111,7 @@ packet_motion_prediction_hints:
|
|
|
3111
3111
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3112
3112
|
# conditions specified in an animation controller.
|
|
3113
3113
|
# Much of the documentation of this packet can be found at
|
|
3114
|
-
# https://
|
|
3114
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3115
3115
|
packet_animate_entity:
|
|
3116
3116
|
!id: 0x9e
|
|
3117
3117
|
!bound: client
|
|
@@ -1805,7 +1805,7 @@ packet_update_trade:
|
|
|
1805
1805
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1806
1806
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1807
1807
|
# of that particular item.
|
|
1808
|
-
# https://minecraft.
|
|
1808
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1809
1809
|
economic_trades: bool
|
|
1810
1810
|
# NBT serialised compound of offers that the villager has.
|
|
1811
1811
|
offers: nbt
|
|
@@ -1971,7 +1971,7 @@ packet_structure_block_update:
|
|
|
1971
1971
|
# used to export the structure to a file.
|
|
1972
1972
|
structure_name: string
|
|
1973
1973
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1974
|
-
# be found here: https://minecraft.
|
|
1974
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1975
1975
|
data_field: string
|
|
1976
1976
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1977
1977
|
# exported by the structure block.
|
|
@@ -3118,7 +3118,7 @@ packet_motion_prediction_hints:
|
|
|
3118
3118
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3119
3119
|
# conditions specified in an animation controller.
|
|
3120
3120
|
# Much of the documentation of this packet can be found at
|
|
3121
|
-
# https://
|
|
3121
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3122
3122
|
packet_animate_entity:
|
|
3123
3123
|
!id: 0x9e
|
|
3124
3124
|
!bound: client
|
|
@@ -1815,7 +1815,7 @@ packet_update_trade:
|
|
|
1815
1815
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1816
1816
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1817
1817
|
# of that particular item.
|
|
1818
|
-
# https://minecraft.
|
|
1818
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1819
1819
|
economic_trades: bool
|
|
1820
1820
|
# NBT serialised compound of offers that the villager has.
|
|
1821
1821
|
offers: nbt
|
|
@@ -1981,7 +1981,7 @@ packet_structure_block_update:
|
|
|
1981
1981
|
# used to export the structure to a file.
|
|
1982
1982
|
structure_name: string
|
|
1983
1983
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1984
|
-
# be found here: https://minecraft.
|
|
1984
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1985
1985
|
data_field: string
|
|
1986
1986
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
1987
1987
|
# exported by the structure block.
|
|
@@ -3132,7 +3132,7 @@ packet_motion_prediction_hints:
|
|
|
3132
3132
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3133
3133
|
# conditions specified in an animation controller.
|
|
3134
3134
|
# Much of the documentation of this packet can be found at
|
|
3135
|
-
# https://
|
|
3135
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3136
3136
|
packet_animate_entity:
|
|
3137
3137
|
!id: 0x9e
|
|
3138
3138
|
!bound: client
|
|
@@ -1829,7 +1829,7 @@ packet_update_trade:
|
|
|
1829
1829
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1830
1830
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1831
1831
|
# of that particular item.
|
|
1832
|
-
# https://minecraft.
|
|
1832
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1833
1833
|
economic_trades: bool
|
|
1834
1834
|
# NBT serialised compound of offers that the villager has.
|
|
1835
1835
|
offers: nbt
|
|
@@ -1995,7 +1995,7 @@ packet_structure_block_update:
|
|
|
1995
1995
|
# used to export the structure to a file.
|
|
1996
1996
|
structure_name: string
|
|
1997
1997
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
1998
|
-
# be found here: https://minecraft.
|
|
1998
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
1999
1999
|
data_field: string
|
|
2000
2000
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2001
2001
|
# exported by the structure block.
|
|
@@ -3151,7 +3151,7 @@ packet_motion_prediction_hints:
|
|
|
3151
3151
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3152
3152
|
# conditions specified in an animation controller.
|
|
3153
3153
|
# Much of the documentation of this packet can be found at
|
|
3154
|
-
# https://
|
|
3154
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3155
3155
|
packet_animate_entity:
|
|
3156
3156
|
!id: 0x9e
|
|
3157
3157
|
!bound: client
|
|
@@ -1880,7 +1880,7 @@ packet_update_trade:
|
|
|
1880
1880
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1881
1881
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1882
1882
|
# of that particular item.
|
|
1883
|
-
# https://minecraft.
|
|
1883
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1884
1884
|
economic_trades: bool
|
|
1885
1885
|
# NBT serialised compound of offers that the villager has.
|
|
1886
1886
|
offers: nbt
|
|
@@ -2046,7 +2046,7 @@ packet_structure_block_update:
|
|
|
2046
2046
|
# used to export the structure to a file.
|
|
2047
2047
|
structure_name: string
|
|
2048
2048
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2049
|
-
# be found here: https://minecraft.
|
|
2049
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2050
2050
|
data_field: string
|
|
2051
2051
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2052
2052
|
# exported by the structure block.
|
|
@@ -3202,7 +3202,7 @@ packet_motion_prediction_hints:
|
|
|
3202
3202
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3203
3203
|
# conditions specified in an animation controller.
|
|
3204
3204
|
# Much of the documentation of this packet can be found at
|
|
3205
|
-
# https://
|
|
3205
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3206
3206
|
packet_animate_entity:
|
|
3207
3207
|
!id: 0x9e
|
|
3208
3208
|
!bound: client
|
|
@@ -1901,7 +1901,7 @@ packet_update_trade:
|
|
|
1901
1901
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1902
1902
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1903
1903
|
# of that particular item.
|
|
1904
|
-
# https://minecraft.
|
|
1904
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1905
1905
|
economic_trades: bool
|
|
1906
1906
|
# NBT serialised compound of offers that the villager has.
|
|
1907
1907
|
offers: nbt
|
|
@@ -2067,7 +2067,7 @@ packet_structure_block_update:
|
|
|
2067
2067
|
# used to export the structure to a file.
|
|
2068
2068
|
structure_name: string
|
|
2069
2069
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2070
|
-
# be found here: https://minecraft.
|
|
2070
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2071
2071
|
data_field: string
|
|
2072
2072
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2073
2073
|
# exported by the structure block.
|
|
@@ -3239,7 +3239,7 @@ packet_motion_prediction_hints:
|
|
|
3239
3239
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3240
3240
|
# conditions specified in an animation controller.
|
|
3241
3241
|
# Much of the documentation of this packet can be found at
|
|
3242
|
-
# https://
|
|
3242
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3243
3243
|
packet_animate_entity:
|
|
3244
3244
|
!id: 0x9e
|
|
3245
3245
|
!bound: client
|
|
@@ -1901,7 +1901,7 @@ packet_update_trade:
|
|
|
1901
1901
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1902
1902
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1903
1903
|
# of that particular item.
|
|
1904
|
-
# https://minecraft.
|
|
1904
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1905
1905
|
economic_trades: bool
|
|
1906
1906
|
# NBT serialised compound of offers that the villager has.
|
|
1907
1907
|
offers: nbt
|
|
@@ -2067,7 +2067,7 @@ packet_structure_block_update:
|
|
|
2067
2067
|
# used to export the structure to a file.
|
|
2068
2068
|
structure_name: string
|
|
2069
2069
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2070
|
-
# be found here: https://minecraft.
|
|
2070
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2071
2071
|
data_field: string
|
|
2072
2072
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2073
2073
|
# exported by the structure block.
|
|
@@ -3239,7 +3239,7 @@ packet_motion_prediction_hints:
|
|
|
3239
3239
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3240
3240
|
# conditions specified in an animation controller.
|
|
3241
3241
|
# Much of the documentation of this packet can be found at
|
|
3242
|
-
# https://
|
|
3242
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3243
3243
|
packet_animate_entity:
|
|
3244
3244
|
!id: 0x9e
|
|
3245
3245
|
!bound: client
|
|
@@ -1902,7 +1902,7 @@ packet_update_trade:
|
|
|
1902
1902
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1903
1903
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1904
1904
|
# of that particular item.
|
|
1905
|
-
# https://minecraft.
|
|
1905
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1906
1906
|
economic_trades: bool
|
|
1907
1907
|
# NBT serialised compound of offers that the villager has.
|
|
1908
1908
|
offers: nbt
|
|
@@ -2068,7 +2068,7 @@ packet_structure_block_update:
|
|
|
2068
2068
|
# used to export the structure to a file.
|
|
2069
2069
|
structure_name: string
|
|
2070
2070
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2071
|
-
# be found here: https://minecraft.
|
|
2071
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2072
2072
|
data_field: string
|
|
2073
2073
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2074
2074
|
# exported by the structure block.
|
|
@@ -3254,7 +3254,7 @@ packet_motion_prediction_hints:
|
|
|
3254
3254
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3255
3255
|
# conditions specified in an animation controller.
|
|
3256
3256
|
# Much of the documentation of this packet can be found at
|
|
3257
|
-
# https://
|
|
3257
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3258
3258
|
packet_animate_entity:
|
|
3259
3259
|
!id: 0x9e
|
|
3260
3260
|
!bound: client
|
|
@@ -1912,7 +1912,7 @@ packet_update_trade:
|
|
|
1912
1912
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1913
1913
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1914
1914
|
# of that particular item.
|
|
1915
|
-
# https://minecraft.
|
|
1915
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1916
1916
|
economic_trades: bool
|
|
1917
1917
|
# NBT serialised compound of offers that the villager has.
|
|
1918
1918
|
offers: nbt
|
|
@@ -2078,7 +2078,7 @@ packet_structure_block_update:
|
|
|
2078
2078
|
# used to export the structure to a file.
|
|
2079
2079
|
structure_name: string
|
|
2080
2080
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2081
|
-
# be found here: https://minecraft.
|
|
2081
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2082
2082
|
data_field: string
|
|
2083
2083
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2084
2084
|
# exported by the structure block.
|
|
@@ -3264,7 +3264,7 @@ packet_motion_prediction_hints:
|
|
|
3264
3264
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3265
3265
|
# conditions specified in an animation controller.
|
|
3266
3266
|
# Much of the documentation of this packet can be found at
|
|
3267
|
-
# https://
|
|
3267
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3268
3268
|
packet_animate_entity:
|
|
3269
3269
|
!id: 0x9e
|
|
3270
3270
|
!bound: client
|
|
@@ -1912,7 +1912,7 @@ packet_update_trade:
|
|
|
1912
1912
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1913
1913
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1914
1914
|
# of that particular item.
|
|
1915
|
-
# https://minecraft.
|
|
1915
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1916
1916
|
economic_trades: bool
|
|
1917
1917
|
# NBT serialised compound of offers that the villager has.
|
|
1918
1918
|
offers: nbt
|
|
@@ -2078,7 +2078,7 @@ packet_structure_block_update:
|
|
|
2078
2078
|
# used to export the structure to a file.
|
|
2079
2079
|
structure_name: string
|
|
2080
2080
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2081
|
-
# be found here: https://minecraft.
|
|
2081
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2082
2082
|
data_field: string
|
|
2083
2083
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2084
2084
|
# exported by the structure block.
|
|
@@ -3266,7 +3266,7 @@ packet_motion_prediction_hints:
|
|
|
3266
3266
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3267
3267
|
# conditions specified in an animation controller.
|
|
3268
3268
|
# Much of the documentation of this packet can be found at
|
|
3269
|
-
# https://
|
|
3269
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3270
3270
|
packet_animate_entity:
|
|
3271
3271
|
!id: 0x9e
|
|
3272
3272
|
!bound: client
|
|
@@ -1916,7 +1916,7 @@ packet_update_trade:
|
|
|
1916
1916
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1917
1917
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1918
1918
|
# of that particular item.
|
|
1919
|
-
# https://minecraft.
|
|
1919
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1920
1920
|
economic_trades: bool
|
|
1921
1921
|
# NBT serialised compound of offers that the villager has.
|
|
1922
1922
|
offers: nbt
|
|
@@ -2082,7 +2082,7 @@ packet_structure_block_update:
|
|
|
2082
2082
|
# used to export the structure to a file.
|
|
2083
2083
|
structure_name: string
|
|
2084
2084
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2085
|
-
# be found here: https://minecraft.
|
|
2085
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2086
2086
|
data_field: string
|
|
2087
2087
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2088
2088
|
# exported by the structure block.
|
|
@@ -3273,7 +3273,7 @@ packet_motion_prediction_hints:
|
|
|
3273
3273
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3274
3274
|
# conditions specified in an animation controller.
|
|
3275
3275
|
# Much of the documentation of this packet can be found at
|
|
3276
|
-
# https://
|
|
3276
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3277
3277
|
packet_animate_entity:
|
|
3278
3278
|
!id: 0x9e
|
|
3279
3279
|
!bound: client
|
|
@@ -1917,7 +1917,7 @@ packet_update_trade:
|
|
|
1917
1917
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1918
1918
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1919
1919
|
# of that particular item.
|
|
1920
|
-
# https://minecraft.
|
|
1920
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1921
1921
|
economic_trades: bool
|
|
1922
1922
|
# NBT serialised compound of offers that the villager has.
|
|
1923
1923
|
offers: nbt
|
|
@@ -2083,7 +2083,7 @@ packet_structure_block_update:
|
|
|
2083
2083
|
# used to export the structure to a file.
|
|
2084
2084
|
structure_name: string
|
|
2085
2085
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2086
|
-
# be found here: https://minecraft.
|
|
2086
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2087
2087
|
data_field: string
|
|
2088
2088
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2089
2089
|
# exported by the structure block.
|
|
@@ -3274,7 +3274,7 @@ packet_motion_prediction_hints:
|
|
|
3274
3274
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3275
3275
|
# conditions specified in an animation controller.
|
|
3276
3276
|
# Much of the documentation of this packet can be found at
|
|
3277
|
-
# https://
|
|
3277
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3278
3278
|
packet_animate_entity:
|
|
3279
3279
|
!id: 0x9e
|
|
3280
3280
|
!bound: client
|
|
@@ -1917,7 +1917,7 @@ packet_update_trade:
|
|
|
1917
1917
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1918
1918
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1919
1919
|
# of that particular item.
|
|
1920
|
-
# https://minecraft.
|
|
1920
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1921
1921
|
economic_trades: bool
|
|
1922
1922
|
# NBT serialised compound of offers that the villager has.
|
|
1923
1923
|
offers: nbt
|
|
@@ -2083,7 +2083,7 @@ packet_structure_block_update:
|
|
|
2083
2083
|
# used to export the structure to a file.
|
|
2084
2084
|
structure_name: string
|
|
2085
2085
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2086
|
-
# be found here: https://minecraft.
|
|
2086
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2087
2087
|
data_field: string
|
|
2088
2088
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2089
2089
|
# exported by the structure block.
|
|
@@ -3278,7 +3278,7 @@ packet_motion_prediction_hints:
|
|
|
3278
3278
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3279
3279
|
# conditions specified in an animation controller.
|
|
3280
3280
|
# Much of the documentation of this packet can be found at
|
|
3281
|
-
# https://
|
|
3281
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3282
3282
|
packet_animate_entity:
|
|
3283
3283
|
!id: 0x9e
|
|
3284
3284
|
!bound: client
|
|
@@ -1929,7 +1929,7 @@ packet_update_trade:
|
|
|
1929
1929
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1930
1930
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1931
1931
|
# of that particular item.
|
|
1932
|
-
# https://minecraft.
|
|
1932
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1933
1933
|
economic_trades: bool
|
|
1934
1934
|
# NBT serialised compound of offers that the villager has.
|
|
1935
1935
|
offers: nbt
|
|
@@ -2095,7 +2095,7 @@ packet_structure_block_update:
|
|
|
2095
2095
|
# used to export the structure to a file.
|
|
2096
2096
|
structure_name: string
|
|
2097
2097
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2098
|
-
# be found here: https://minecraft.
|
|
2098
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2099
2099
|
data_field: string
|
|
2100
2100
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2101
2101
|
# exported by the structure block.
|
|
@@ -3291,7 +3291,7 @@ packet_motion_prediction_hints:
|
|
|
3291
3291
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3292
3292
|
# conditions specified in an animation controller.
|
|
3293
3293
|
# Much of the documentation of this packet can be found at
|
|
3294
|
-
# https://
|
|
3294
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3295
3295
|
packet_animate_entity:
|
|
3296
3296
|
!id: 0x9e
|
|
3297
3297
|
!bound: client
|
|
@@ -1934,7 +1934,7 @@ packet_update_trade:
|
|
|
1934
1934
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1935
1935
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1936
1936
|
# of that particular item.
|
|
1937
|
-
# https://minecraft.
|
|
1937
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1938
1938
|
economic_trades: bool
|
|
1939
1939
|
# NBT serialised compound of offers that the villager has.
|
|
1940
1940
|
offers: nbt
|
|
@@ -2100,7 +2100,7 @@ packet_structure_block_update:
|
|
|
2100
2100
|
# used to export the structure to a file.
|
|
2101
2101
|
structure_name: string
|
|
2102
2102
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2103
|
-
# be found here: https://minecraft.
|
|
2103
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2104
2104
|
data_field: string
|
|
2105
2105
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2106
2106
|
# exported by the structure block.
|
|
@@ -3302,7 +3302,7 @@ packet_motion_prediction_hints:
|
|
|
3302
3302
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3303
3303
|
# conditions specified in an animation controller.
|
|
3304
3304
|
# Much of the documentation of this packet can be found at
|
|
3305
|
-
# https://
|
|
3305
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3306
3306
|
packet_animate_entity:
|
|
3307
3307
|
!id: 0x9e
|
|
3308
3308
|
!bound: client
|
|
@@ -1956,7 +1956,7 @@ packet_update_trade:
|
|
|
1956
1956
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1957
1957
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1958
1958
|
# of that particular item.
|
|
1959
|
-
# https://minecraft.
|
|
1959
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1960
1960
|
economic_trades: bool
|
|
1961
1961
|
# NBT serialised compound of offers that the villager has.
|
|
1962
1962
|
offers: nbt
|
|
@@ -2122,7 +2122,7 @@ packet_structure_block_update:
|
|
|
2122
2122
|
# used to export the structure to a file.
|
|
2123
2123
|
structure_name: string
|
|
2124
2124
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2125
|
-
# be found here: https://minecraft.
|
|
2125
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2126
2126
|
data_field: string
|
|
2127
2127
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2128
2128
|
# exported by the structure block.
|
|
@@ -3328,7 +3328,7 @@ packet_motion_prediction_hints:
|
|
|
3328
3328
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3329
3329
|
# conditions specified in an animation controller.
|
|
3330
3330
|
# Much of the documentation of this packet can be found at
|
|
3331
|
-
# https://
|
|
3331
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3332
3332
|
packet_animate_entity:
|
|
3333
3333
|
!id: 0x9e
|
|
3334
3334
|
!bound: client
|
|
@@ -3989,6 +3989,41 @@
|
|
|
3989
3989
|
}
|
|
3990
3990
|
]
|
|
3991
3991
|
],
|
|
3992
|
+
"CameraPresets": [
|
|
3993
|
+
"container",
|
|
3994
|
+
[
|
|
3995
|
+
{
|
|
3996
|
+
"name": "name",
|
|
3997
|
+
"type": "string"
|
|
3998
|
+
},
|
|
3999
|
+
{
|
|
4000
|
+
"name": "parent",
|
|
4001
|
+
"type": "string"
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"name": "position",
|
|
4005
|
+
"type": "Vec3fopts"
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
"name": "rotation",
|
|
4009
|
+
"type": "Vec2fopts"
|
|
4010
|
+
},
|
|
4011
|
+
{
|
|
4012
|
+
"name": "audio_listener",
|
|
4013
|
+
"type": [
|
|
4014
|
+
"option",
|
|
4015
|
+
"u8"
|
|
4016
|
+
]
|
|
4017
|
+
},
|
|
4018
|
+
{
|
|
4019
|
+
"name": "player_effects",
|
|
4020
|
+
"type": [
|
|
4021
|
+
"option",
|
|
4022
|
+
"bool"
|
|
4023
|
+
]
|
|
4024
|
+
}
|
|
4025
|
+
]
|
|
4026
|
+
],
|
|
3992
4027
|
"mcpe_packet": [
|
|
3993
4028
|
"container",
|
|
3994
4029
|
[
|
|
@@ -11044,33 +11079,13 @@
|
|
|
11044
11079
|
"container",
|
|
11045
11080
|
[
|
|
11046
11081
|
{
|
|
11047
|
-
"name": "
|
|
11048
|
-
"type": "string"
|
|
11049
|
-
},
|
|
11050
|
-
{
|
|
11051
|
-
"name": "parent",
|
|
11052
|
-
"type": "string"
|
|
11053
|
-
},
|
|
11054
|
-
{
|
|
11055
|
-
"name": "position",
|
|
11056
|
-
"type": "Vec3fopts"
|
|
11057
|
-
},
|
|
11058
|
-
{
|
|
11059
|
-
"name": "rotation",
|
|
11060
|
-
"type": "Vec2fopts"
|
|
11061
|
-
},
|
|
11062
|
-
{
|
|
11063
|
-
"name": "audio_listener",
|
|
11064
|
-
"type": [
|
|
11065
|
-
"option",
|
|
11066
|
-
"u8"
|
|
11067
|
-
]
|
|
11068
|
-
},
|
|
11069
|
-
{
|
|
11070
|
-
"name": "player_effects",
|
|
11082
|
+
"name": "presets",
|
|
11071
11083
|
"type": [
|
|
11072
|
-
"
|
|
11073
|
-
|
|
11084
|
+
"array",
|
|
11085
|
+
{
|
|
11086
|
+
"countType": "varint",
|
|
11087
|
+
"type": "CameraPresets"
|
|
11088
|
+
}
|
|
11074
11089
|
]
|
|
11075
11090
|
}
|
|
11076
11091
|
]
|
|
@@ -7,10 +7,16 @@
|
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
9
|
"version": 594,
|
|
10
|
-
"minecraftVersion": "1.20.
|
|
10
|
+
"minecraftVersion": "1.20.15",
|
|
11
11
|
"majorVersion": "1.20",
|
|
12
12
|
"releaseType": "release"
|
|
13
13
|
},
|
|
14
|
+
{
|
|
15
|
+
"version": 594,
|
|
16
|
+
"minecraftVersion": "1.20.10",
|
|
17
|
+
"majorVersion": "1.20",
|
|
18
|
+
"releaseType": "release"
|
|
19
|
+
},
|
|
14
20
|
{
|
|
15
21
|
"version": 589,
|
|
16
22
|
"minecraftVersion": "1.20.0",
|
|
@@ -1964,7 +1964,7 @@ packet_update_trade:
|
|
|
1964
1964
|
# Trading based on Minecraft economy - specifies if the prices of the villager's offers are modified by an increase in
|
|
1965
1965
|
# demand for the item. (A mechanic added in 1.11.) Buying more of the same item will increase the price
|
|
1966
1966
|
# of that particular item.
|
|
1967
|
-
# https://minecraft.
|
|
1967
|
+
# https://minecraft.wiki/w/Trading#Economics
|
|
1968
1968
|
economic_trades: bool
|
|
1969
1969
|
# NBT serialised compound of offers that the villager has.
|
|
1970
1970
|
offers: nbt
|
|
@@ -2130,7 +2130,7 @@ packet_structure_block_update:
|
|
|
2130
2130
|
# used to export the structure to a file.
|
|
2131
2131
|
structure_name: string
|
|
2132
2132
|
# DataField is the name of a function to run, usually used during natural generation. A description can
|
|
2133
|
-
# be found here: https://minecraft.
|
|
2133
|
+
# be found here: https://minecraft.wiki/w/Structure_Block#Data.
|
|
2134
2134
|
data_field: string
|
|
2135
2135
|
# IncludePlayers specifies if the 'Include Players' toggle has been enabled, meaning players are also
|
|
2136
2136
|
# exported by the structure block.
|
|
@@ -3338,7 +3338,7 @@ packet_motion_prediction_hints:
|
|
|
3338
3338
|
# animation, or to activate a controller which can start a sequence of animations based on different
|
|
3339
3339
|
# conditions specified in an animation controller.
|
|
3340
3340
|
# Much of the documentation of this packet can be found at
|
|
3341
|
-
# https://
|
|
3341
|
+
# https://learn.microsoft.com/minecraft/creator/reference/content/animationsreference.
|
|
3342
3342
|
packet_animate_entity:
|
|
3343
3343
|
!id: 0x9e
|
|
3344
3344
|
!bound: client
|
|
@@ -3964,15 +3964,7 @@ packet_client_cheat_ability:
|
|
|
3964
3964
|
packet_camera_presets:
|
|
3965
3965
|
!id: 0xc6
|
|
3966
3966
|
!bound: client
|
|
3967
|
-
|
|
3968
|
-
name: string
|
|
3969
|
-
# Parent is the name of the preset that this preset extends upon. This can be left empty.
|
|
3970
|
-
parent: string
|
|
3971
|
-
position: Vec3fopts
|
|
3972
|
-
rotation: Vec2fopts
|
|
3973
|
-
## TODO: make this an enum afer adding proper optional support inside pdefyaml
|
|
3974
|
-
audio_listener?: u8
|
|
3975
|
-
player_effects?: bool
|
|
3967
|
+
presets: CameraPresets[]varint
|
|
3976
3968
|
|
|
3977
3969
|
# unlocked_recipes gives the client a list of recipes that have been unlocked, restricting the recipes that appear in
|
|
3978
3970
|
# the recipe book.
|
|
@@ -2115,3 +2115,14 @@ AbilityLayers:
|
|
|
2115
2115
|
fly_speed: lf32
|
|
2116
2116
|
# WalkSpeed is the default walk speed of the layer.
|
|
2117
2117
|
walk_speed: lf32
|
|
2118
|
+
|
|
2119
|
+
CameraPresets:
|
|
2120
|
+
# Name is the name of the preset. Each preset must have their own unique name.
|
|
2121
|
+
name: string
|
|
2122
|
+
# Parent is the name of the preset that this preset extends upon. This can be left empty.
|
|
2123
|
+
parent: string
|
|
2124
|
+
position: Vec3fopts
|
|
2125
|
+
rotation: Vec2fopts
|
|
2126
|
+
## TODO: make this an enum afer adding proper optional support inside pdefyaml
|
|
2127
|
+
audio_listener?: u8
|
|
2128
|
+
player_effects?: bool
|
|
@@ -1786,6 +1786,28 @@
|
|
|
1786
1786
|
"version": "bedrock/1.20.10",
|
|
1787
1787
|
"language": "bedrock/1.20.10"
|
|
1788
1788
|
},
|
|
1789
|
+
"1.20.15": {
|
|
1790
|
+
"blocks": "bedrock/1.20.0",
|
|
1791
|
+
"blockStates": "bedrock/1.20.0",
|
|
1792
|
+
"blockCollisionShapes": "bedrock/1.20.0",
|
|
1793
|
+
"biomes": "bedrock/1.20.0",
|
|
1794
|
+
"entities": "bedrock/1.19.1",
|
|
1795
|
+
"items": "bedrock/1.20.0",
|
|
1796
|
+
"recipes": "bedrock/1.19.10",
|
|
1797
|
+
"instruments": "bedrock/1.17.0",
|
|
1798
|
+
"materials": "pc/1.17",
|
|
1799
|
+
"enchantments": "bedrock/1.19.1",
|
|
1800
|
+
"effects": "pc/1.17",
|
|
1801
|
+
"protocol": "bedrock/1.20.10",
|
|
1802
|
+
"windows": "bedrock/1.16.201",
|
|
1803
|
+
"steve": "bedrock/1.16.201",
|
|
1804
|
+
"blocksB2J": "bedrock/1.20.0",
|
|
1805
|
+
"blocksJ2B": "bedrock/1.20.0",
|
|
1806
|
+
"proto": "bedrock/1.20.10",
|
|
1807
|
+
"types": "bedrock/1.20.10",
|
|
1808
|
+
"version": "bedrock/1.20.15",
|
|
1809
|
+
"language": "bedrock/1.20.10"
|
|
1810
|
+
},
|
|
1789
1811
|
"1.20.30": {
|
|
1790
1812
|
"blocks": "bedrock/1.20.0",
|
|
1791
1813
|
"blockStates": "bedrock/1.20.0",
|
|
@@ -475,57 +475,57 @@
|
|
|
475
475
|
"after": [
|
|
476
476
|
"Effect IDs:",
|
|
477
477
|
"",
|
|
478
|
-
"| ID | Name | Data
|
|
479
|
-
"
|
|
478
|
+
"| ID | Name | Data |",
|
|
479
|
+
"|----------|-----------------------------------------------------------|---------------------------------------------------------------------------------------|",
|
|
480
480
|
"| Sound |",
|
|
481
|
-
"| 1000 | Dispenser dispenses |
|
|
482
|
-
"| 1001 | Dispenser fails to dispense |
|
|
483
|
-
"| 1002 | Dispenser shoots |
|
|
484
|
-
"| 1003 | Ender eye launched |
|
|
485
|
-
"| 1004 | Firework shot |
|
|
486
|
-
"| 1005 | Iron door opened |
|
|
487
|
-
"| 1006 | Wooden door opened |
|
|
488
|
-
"| 1007 | Wooden trapdoor opened |
|
|
489
|
-
"| 1008 | Fence gate opened |
|
|
490
|
-
"| 1009 | Fire extinguished |
|
|
491
|
-
"| 1010 | Play record |
|
|
492
|
-
"| 1011 | Iron door closed |
|
|
493
|
-
"| 1012 | Wooden door closed |
|
|
494
|
-
"| 1013 | Wooden trapdoor closed |
|
|
495
|
-
"| 1014 | Fence gate closed |
|
|
496
|
-
"| 1015 | Ghast warns |
|
|
497
|
-
"| 1016 | Ghast shoots |
|
|
498
|
-
"| 1017 | Enderdragon shoots |
|
|
499
|
-
"| 1018 | Blaze shoots |
|
|
500
|
-
"| 1019 | Zombie attacks wood door |
|
|
501
|
-
"| 1020 | Zombie attacks iron door |
|
|
502
|
-
"| 1021 | Zombie breaks wood door |
|
|
503
|
-
"| 1022 | Wither breaks block |
|
|
504
|
-
"| 1023 | Wither spawned |
|
|
505
|
-
"| 1024 | Wither shoots |
|
|
506
|
-
"| 1025 | Bat takes off |
|
|
507
|
-
"| 1026 | Zombie infects |
|
|
508
|
-
"| 1027 | Zombie villager converted |
|
|
509
|
-
"| 1028 | Ender dragon death |
|
|
510
|
-
"| 1029 | Anvil destroyed |
|
|
511
|
-
"| 1030 | Anvil used |
|
|
512
|
-
"| 1031 | Anvil landed |
|
|
513
|
-
"| 1032 | Portal travel |
|
|
514
|
-
"| 1033 | Chorus flower grown |
|
|
515
|
-
"| 1034 | Chorus flower died |
|
|
516
|
-
"| 1035 | Brewing stand brewed |
|
|
517
|
-
"| 1036 | Iron trapdoor opened |
|
|
518
|
-
"| 1037 | Iron trapdoor closed |
|
|
481
|
+
"| 1000 | Dispenser dispenses | |",
|
|
482
|
+
"| 1001 | Dispenser fails to dispense | |",
|
|
483
|
+
"| 1002 | Dispenser shoots | |",
|
|
484
|
+
"| 1003 | Ender eye launched | |",
|
|
485
|
+
"| 1004 | Firework shot | |",
|
|
486
|
+
"| 1005 | Iron door opened | |",
|
|
487
|
+
"| 1006 | Wooden door opened | |",
|
|
488
|
+
"| 1007 | Wooden trapdoor opened | |",
|
|
489
|
+
"| 1008 | Fence gate opened | |",
|
|
490
|
+
"| 1009 | Fire extinguished | |",
|
|
491
|
+
"| 1010 | Play record | |",
|
|
492
|
+
"| 1011 | Iron door closed | |",
|
|
493
|
+
"| 1012 | Wooden door closed | |",
|
|
494
|
+
"| 1013 | Wooden trapdoor closed | |",
|
|
495
|
+
"| 1014 | Fence gate closed | |",
|
|
496
|
+
"| 1015 | Ghast warns | |",
|
|
497
|
+
"| 1016 | Ghast shoots | |",
|
|
498
|
+
"| 1017 | Enderdragon shoots | |",
|
|
499
|
+
"| 1018 | Blaze shoots | |",
|
|
500
|
+
"| 1019 | Zombie attacks wood door | |",
|
|
501
|
+
"| 1020 | Zombie attacks iron door | |",
|
|
502
|
+
"| 1021 | Zombie breaks wood door | |",
|
|
503
|
+
"| 1022 | Wither breaks block | |",
|
|
504
|
+
"| 1023 | Wither spawned | |",
|
|
505
|
+
"| 1024 | Wither shoots | |",
|
|
506
|
+
"| 1025 | Bat takes off | |",
|
|
507
|
+
"| 1026 | Zombie infects | |",
|
|
508
|
+
"| 1027 | Zombie villager converted | |",
|
|
509
|
+
"| 1028 | Ender dragon death | |",
|
|
510
|
+
"| 1029 | Anvil destroyed | |",
|
|
511
|
+
"| 1030 | Anvil used | |",
|
|
512
|
+
"| 1031 | Anvil landed | |",
|
|
513
|
+
"| 1032 | Portal travel | |",
|
|
514
|
+
"| 1033 | Chorus flower grown | |",
|
|
515
|
+
"| 1034 | Chorus flower died | |",
|
|
516
|
+
"| 1035 | Brewing stand brewed | |",
|
|
517
|
+
"| 1036 | Iron trapdoor opened | |",
|
|
518
|
+
"| 1037 | Iron trapdoor closed | |",
|
|
519
519
|
"| Particle |",
|
|
520
|
-
"| 2000 | Spawns 10 smoke particles, e.g. from a fire | Direction, see below
|
|
521
|
-
"| 2001 | Block break + block break sound |
|
|
522
|
-
"| 2002 | Splash potion. Particle effect + glass break sound. | [Potion ID](
|
|
523
|
-
"| 2003 | Eye of Ender entity break animation — particles and sound |
|
|
524
|
-
"| 2004 | Mob spawn particle effect: smoke + flames |
|
|
525
|
-
"| 2005 | Bonemeal particles | How many particles to spawn (if set to 0, 15 are spawned)
|
|
526
|
-
"| 2006 | Dragon breath |
|
|
527
|
-
"| 3000 | End gateway spawn |
|
|
528
|
-
"| 3001 | Enderdragon growl |
|
|
520
|
+
"| 2000 | Spawns 10 smoke particles, e.g. from a fire | Direction, see below |",
|
|
521
|
+
"| 2001 | Block break + block break sound | |",
|
|
522
|
+
"| 2002 | Splash potion. Particle effect + glass break sound. | [Potion ID](https://minecraft.wiki/w/Java_Edition_data_values/Pre-flattening#Potions) |",
|
|
523
|
+
"| 2003 | Eye of Ender entity break animation — particles and sound | |",
|
|
524
|
+
"| 2004 | Mob spawn particle effect: smoke + flames | |",
|
|
525
|
+
"| 2005 | Bonemeal particles | How many particles to spawn (if set to 0, 15 are spawned) |",
|
|
526
|
+
"| 2006 | Dragon breath | |",
|
|
527
|
+
"| 3000 | End gateway spawn | |",
|
|
528
|
+
"| 3001 | Enderdragon growl | |",
|
|
529
529
|
"",
|
|
530
530
|
"Smoke directions:",
|
|
531
531
|
"",
|
|
@@ -1019,7 +1019,7 @@
|
|
|
1019
1019
|
" |-",
|
|
1020
1020
|
" | 2002",
|
|
1021
1021
|
" | Splash potion. Particle effect + glass break sound.",
|
|
1022
|
-
" | [
|
|
1022
|
+
" | [https://minecraft.wiki/w/Java_Edition_data_values/Pre-flattening#Potions Potion ID]",
|
|
1023
1023
|
" |-",
|
|
1024
1024
|
" | 2003",
|
|
1025
1025
|
" | Eye of Ender entity break animation — particles and sound",
|
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "23w40a",
|
|
4
|
+
"version": 1073741978,
|
|
5
|
+
"dataVersion": 3679,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "1.20",
|
|
8
|
+
"releaseType": "snapshot"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"minecraftVersion": "1.20.2",
|
|
12
|
+
"version": 764,
|
|
13
|
+
"dataVersion": 3578,
|
|
14
|
+
"usesNetty": true,
|
|
15
|
+
"majorVersion": "1.20",
|
|
16
|
+
"releaseType": "release"
|
|
17
|
+
},
|
|
2
18
|
{
|
|
3
19
|
"minecraftVersion": "1.20.2-rc2",
|
|
4
20
|
"version": 1073741977,
|
|
@@ -4276,4 +4292,4 @@
|
|
|
4276
4292
|
"usesNetty": false,
|
|
4277
4293
|
"majorVersion": "1.0"
|
|
4278
4294
|
}
|
|
4279
|
-
]
|
|
4295
|
+
]
|
|
@@ -37,10 +37,10 @@ For bedrock edition see [bedrock.md](bedrock.md)
|
|
|
37
37
|
[9]: https://github.com/PrismarineJS/minecraft-data/blob/master/data/pc/common/protocolVersions.json
|
|
38
38
|
[10]: https://github.com/PrismarineJS/minecraft-jar-extractor
|
|
39
39
|
[11]: http://wiki.vg/Block_Actions
|
|
40
|
-
[12]:
|
|
40
|
+
[12]: https://minecraft.wiki/w/Effect
|
|
41
41
|
[13]: https://github.com/PrismarineJS/mineflayer/pull/197
|
|
42
42
|
[14]: https://github.com/PrismarineJS/minecraft-data/pull/348#issue-545841883
|
|
43
|
-
[15]: https://minecraft.
|
|
43
|
+
[15]: https://minecraft.wiki/Map#Map_icons
|
|
44
44
|
[16]: https://wiki.vg/Protocol#Map_Data
|
|
45
45
|
[17]: https://github.com/PrismarineJS/minecraft-data-auto-updater
|
|
46
46
|
[18]: https://github.com/PrismarineJS/minecraft-data/pull/282#issue-612896577
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## 3.46.2
|
|
2
|
+
* [Fix bedrock protocol CameraPresets packet(#782)](https://github.com/PrismarineJS/minecraft-data/commit/4139610a241411296a47723d6d978047c52cc7cf) (thanks @MrDiamond64)
|
|
3
|
+
* [Update Minecraft wiki references (#781)](https://github.com/PrismarineJS/minecraft-data/commit/16aaf99c002125749dbcbf165e3ead15e104f7e8) (thanks @Spongecade)
|
|
4
|
+
* [Add bedrock 1.20.15 data mapping (#778)](https://github.com/PrismarineJS/minecraft-data/commit/a2df4110718476dd9e6997f99ac419d2308c19bd) (thanks @irkmandeer)
|
|
5
|
+
|
|
1
6
|
## 3.46.1
|
|
2
7
|
* [Revert "Change has_stack_id in bedrock Item to a boolean" (#776)](https://github.com/PrismarineJS/minecraft-data/commit/f7d70f0ee654e3d4f59354734b340ff00f794355) (thanks @extremeheat)
|
|
3
8
|
|