minecraft-data 3.33.0 → 3.35.0

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.
Files changed (62) hide show
  1. package/data.js +46 -1
  2. package/doc/history.md +8 -0
  3. package/index.d.ts +8 -4
  4. package/minecraft-data/.github/helper-bot/github-helper.js +59 -0
  5. package/minecraft-data/.github/helper-bot/index.js +158 -0
  6. package/minecraft-data/.github/workflows/update-helper.yml +25 -0
  7. package/minecraft-data/README.md +3 -2
  8. package/minecraft-data/data/bedrock/1.19.1/proto.yml +4 -0
  9. package/minecraft-data/data/bedrock/1.19.1/protocol.json +5 -1
  10. package/minecraft-data/data/bedrock/1.19.10/proto.yml +4 -0
  11. package/minecraft-data/data/bedrock/1.19.10/protocol.json +5 -1
  12. package/minecraft-data/data/bedrock/1.19.20/proto.yml +4 -0
  13. package/minecraft-data/data/bedrock/1.19.20/protocol.json +5 -1
  14. package/minecraft-data/data/bedrock/1.19.21/proto.yml +4 -0
  15. package/minecraft-data/data/bedrock/1.19.21/protocol.json +5 -1
  16. package/minecraft-data/data/bedrock/1.19.30/proto.yml +4 -0
  17. package/minecraft-data/data/bedrock/1.19.30/protocol.json +5 -1
  18. package/minecraft-data/data/bedrock/1.19.40/proto.yml +4 -0
  19. package/minecraft-data/data/bedrock/1.19.40/protocol.json +5 -1
  20. package/minecraft-data/data/bedrock/1.19.50/proto.yml +4 -0
  21. package/minecraft-data/data/bedrock/1.19.50/protocol.json +5 -1
  22. package/minecraft-data/data/bedrock/1.19.60/proto.yml +4 -0
  23. package/minecraft-data/data/bedrock/1.19.60/protocol.json +5 -1
  24. package/minecraft-data/data/bedrock/1.19.62/proto.yml +4 -0
  25. package/minecraft-data/data/bedrock/1.19.62/protocol.json +5 -1
  26. package/minecraft-data/data/bedrock/1.19.70/proto.yml +4 -0
  27. package/minecraft-data/data/bedrock/1.19.70/protocol.json +5 -1
  28. package/minecraft-data/data/bedrock/1.19.80/proto.yml +3926 -0
  29. package/minecraft-data/data/bedrock/1.19.80/protocol.json +5 -1
  30. package/minecraft-data/data/bedrock/1.19.80/types.yml +2087 -0
  31. package/minecraft-data/data/bedrock/1.20.0/protocol.json +11311 -0
  32. package/minecraft-data/data/bedrock/1.20.0/version.json +6 -0
  33. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  34. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  35. package/minecraft-data/data/bedrock/latest/proto.yml +22 -2
  36. package/minecraft-data/data/bedrock/latest/types.yml +7 -1
  37. package/minecraft-data/data/dataPaths.json +46 -1
  38. package/minecraft-data/data/pc/1.19.3/protocol.json +3 -3
  39. package/minecraft-data/data/pc/1.19.4/biomes.json +632 -0
  40. package/minecraft-data/data/pc/1.19.4/blockCollisionShapes.json +121985 -0
  41. package/minecraft-data/data/pc/1.19.4/blocks.json +36728 -0
  42. package/minecraft-data/data/pc/1.19.4/effects.json +200 -0
  43. package/minecraft-data/data/pc/1.19.4/enchantments.json +875 -0
  44. package/minecraft-data/data/pc/1.19.4/entities.json +1242 -0
  45. package/minecraft-data/data/pc/1.19.4/foods.json +402 -0
  46. package/minecraft-data/data/pc/1.19.4/instruments.json +94 -0
  47. package/minecraft-data/data/pc/1.19.4/items.json +8079 -0
  48. package/minecraft-data/data/pc/1.19.4/language.json +6065 -0
  49. package/minecraft-data/data/pc/1.19.4/materials.json +154 -0
  50. package/minecraft-data/data/pc/1.19.4/particles.json +386 -0
  51. package/minecraft-data/data/pc/1.19.4/protocol.json +6734 -0
  52. package/minecraft-data/data/pc/1.19.4/recipes.json +27202 -0
  53. package/minecraft-data/data/pc/1.19.4/tints.json +429 -0
  54. package/minecraft-data/data/pc/1.19.4/version.json +5 -0
  55. package/minecraft-data/data/pc/common/features.json +5 -0
  56. package/minecraft-data/data/pc/common/protocolVersions.json +15 -0
  57. package/minecraft-data/data/pc/common/versions.json +2 -1
  58. package/minecraft-data/doc/history.md +6 -0
  59. package/minecraft-data/schemas/biomes_schema.json +7 -5
  60. package/minecraft-data/tools/js/package.json +1 -0
  61. package/minecraft-data/tools/js/syncPcParticleIds.js +23 -0
  62. package/package.json +4 -4
package/data.js CHANGED
@@ -1177,6 +1177,30 @@ module.exports =
1177
1177
  get loginPacket () { return require("./minecraft-data/data/pc/1.19.2/loginPacket.json") },
1178
1178
  get tints () { return require("./minecraft-data/data/pc/1.19.3/tints.json") },
1179
1179
  get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
1180
+ },
1181
+ '1.19.4': {
1182
+ get attributes () { return require("./minecraft-data/data/pc/1.17/attributes.json") },
1183
+ get blocks () { return require("./minecraft-data/data/pc/1.19.4/blocks.json") },
1184
+ get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.19.4/blockCollisionShapes.json") },
1185
+ get biomes () { return require("./minecraft-data/data/pc/1.19.4/biomes.json") },
1186
+ get effects () { return require("./minecraft-data/data/pc/1.19.4/effects.json") },
1187
+ get items () { return require("./minecraft-data/data/pc/1.19.4/items.json") },
1188
+ get enchantments () { return require("./minecraft-data/data/pc/1.19.4/enchantments.json") },
1189
+ get recipes () { return require("./minecraft-data/data/pc/1.19.4/recipes.json") },
1190
+ get instruments () { return require("./minecraft-data/data/pc/1.19.4/instruments.json") },
1191
+ get materials () { return require("./minecraft-data/data/pc/1.19.4/materials.json") },
1192
+ get language () { return require("./minecraft-data/data/pc/1.19.4/language.json") },
1193
+ get entities () { return require("./minecraft-data/data/pc/1.19.4/entities.json") },
1194
+ get protocol () { return require("./minecraft-data/data/pc/1.19.4/protocol.json") },
1195
+ get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
1196
+ get version () { return require("./minecraft-data/data/pc/1.19.4/version.json") },
1197
+ get foods () { return require("./minecraft-data/data/pc/1.19.4/foods.json") },
1198
+ get particles () { return require("./minecraft-data/data/pc/1.19.4/particles.json") },
1199
+ get blockLoot () { return require("./minecraft-data/data/pc/1.19/blockLoot.json") },
1200
+ get entityLoot () { return require("./minecraft-data/data/pc/1.19/entityLoot.json") },
1201
+ get loginPacket () { return require("./minecraft-data/data/pc/1.19.2/loginPacket.json") },
1202
+ get tints () { return require("./minecraft-data/data/pc/1.19.4/tints.json") },
1203
+ get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
1180
1204
  }
1181
1205
  },
1182
1206
  'bedrock': {
@@ -1625,9 +1649,30 @@ module.exports =
1625
1649
  get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
1626
1650
  get blocksB2J () { return require("./minecraft-data/data/bedrock/1.19.1/blocksB2J.json") },
1627
1651
  get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.19.1/blocksJ2B.json") },
1652
+ proto: __dirname + '/minecraft-data/data/bedrock/1.19.80/proto.yml',
1653
+ types: __dirname + '/minecraft-data/data/bedrock/1.19.80/types.yml',
1654
+ get version () { return require("./minecraft-data/data/bedrock/1.19.80/version.json") }
1655
+ },
1656
+ '1.20.0': {
1657
+ get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
1658
+ get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
1659
+ get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
1660
+ get biomes () { return require("./minecraft-data/data/bedrock/1.19.1/biomes.json") },
1661
+ get entities () { return require("./minecraft-data/data/bedrock/1.19.1/entities.json") },
1662
+ get items () { return require("./minecraft-data/data/bedrock/1.19.10/items.json") },
1663
+ get recipes () { return require("./minecraft-data/data/bedrock/1.19.10/recipes.json") },
1664
+ get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
1665
+ get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
1666
+ get enchantments () { return require("./minecraft-data/data/bedrock/1.19.1/enchantments.json") },
1667
+ get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
1668
+ get protocol () { return require("./minecraft-data/data/bedrock/1.20.0/protocol.json") },
1669
+ get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
1670
+ get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
1671
+ get blocksB2J () { return require("./minecraft-data/data/bedrock/1.19.1/blocksB2J.json") },
1672
+ get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.19.1/blocksJ2B.json") },
1628
1673
  proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
1629
1674
  types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
1630
- get version () { return require("./minecraft-data/data/bedrock/1.19.80/version.json") }
1675
+ get version () { return require("./minecraft-data/data/bedrock/1.20.0/version.json") }
1631
1676
  }
1632
1677
  }
1633
1678
  }
package/doc/history.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # History
2
2
 
3
+ ## 3.35.0
4
+
5
+ * update `minecraft-data`
6
+
7
+ ## 3.34.0
8
+
9
+ * update `minecraft-data`
10
+
3
11
  ## 3.33.0
4
12
 
5
13
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -34,9 +34,13 @@ declare namespace MinecraftData {
34
34
  */
35
35
  temperature: number;
36
36
  /**
37
- * The type of precipitation: none, rain or snow
37
+ * The type of precipitation: none, rain or snow [before 1.19.4]
38
38
  */
39
- precipitation: string;
39
+ precipitation?: string;
40
+ /**
41
+ * True if a biome has any precipitation (rain or snow) [1.19.4+]
42
+ */
43
+ has_precipitation?: boolean;
40
44
  /**
41
45
  * The dimension of a biome: overworld, nether or end
42
46
  */
@@ -50,9 +54,9 @@ declare namespace MinecraftData {
50
54
  */
51
55
  color: number;
52
56
  /**
53
- * How much rain there is in a biome
57
+ * How much rain there is in a biome [before 1.19.4]
54
58
  */
55
- rainfall: number;
59
+ rainfall?: number;
56
60
  [k: string]: unknown;
57
61
  }
58
62
 
@@ -0,0 +1,59 @@
1
+ if (!process.env.CI) {
2
+ // mock a bunch of things for testing locally -- https://github.com/actions/toolkit/issues/71
3
+ process.env.GITHUB_REPOSITORY = 'PrismarineJS/minecraft-data'
4
+ process.env.GITHUB_EVENT_NAME = 'issue_comment'
5
+ process.env.GITHUB_SHA = 'cb2fd97b6eae9f2c7fee79d5a86eb9c3b4ac80d8'
6
+ process.env.GITHUB_REF = 'refs/heads/master'
7
+ process.env.GITHUB_WORKFLOW = 'Issue comments'
8
+ process.env.GITHUB_ACTION = 'run1'
9
+ process.env.GITHUB_ACTOR = 'test-user'
10
+ module.exports = { getIssueStatus: () => ({}), updateIssue: () => {}, createIssue: () => {} }
11
+ return
12
+ }
13
+
14
+ // const { Octokit } = require('@octokit/rest') // https://github.com/octokit/rest.js
15
+ const github = require('@actions/github')
16
+
17
+ const token = process.env.GITHUB_TOKEN
18
+ const octokit = github.getOctokit(token)
19
+ const context = github.context
20
+
21
+ async function getIssueStatus (title) {
22
+ // https://docs.github.com/en/rest/reference/search#search-issues-and-pull-requests
23
+ const existingIssues = await octokit.rest.search.issuesAndPullRequests({
24
+ q: `is:issue repo:${process.env.GITHUB_REPOSITORY} in:title ${title}`
25
+ })
26
+ // console.log('Existing issues', existingIssues)
27
+ const existingIssue = existingIssues.data.items.find(issue => issue.title === title)
28
+
29
+ if (!existingIssue) return {}
30
+
31
+ return { open: existingIssue.state === 'open', closed: existingIssue.state === 'closed', id: existingIssue.number }
32
+ }
33
+
34
+ async function updateIssue (id, payload) {
35
+ const issue = await octokit.rest.issues.update({
36
+ ...context.repo,
37
+ issue_number: id,
38
+ body: payload.body
39
+ })
40
+ console.log(`Updated issue ${issue.data.title}#${issue.data.number}: ${issue.data.html_url}`)
41
+ }
42
+
43
+ async function createIssue (payload) {
44
+ const issue = await octokit.rest.issues.create({
45
+ ...context.repo,
46
+ ...payload
47
+ })
48
+ console.log(`Created issue ${issue.data.title}#${issue.data.number}: ${issue.data.html_url}`)
49
+ }
50
+
51
+ async function close (id, reason) {
52
+ if (reason) await octokit.rest.issues.createComment({ ...context.repo, issue_number: id, body: reason })
53
+ const issue = await octokit.rest.issues.update({ ...context.repo, issue_number: id, state: 'closed' })
54
+ console.log(`Closed issue ${issue.data.title}#${issue.data.number}: ${issue.data.html_url}`)
55
+ }
56
+
57
+ if (process.env.CI) {
58
+ module.exports = { getIssueStatus, updateIssue, createIssue, close }
59
+ }
@@ -0,0 +1,158 @@
1
+ const fs = require('fs')
2
+ const cp = require('child_process')
3
+ const https = require('https')
4
+ const helper = require('./github-helper')
5
+ const pcManifestURL = 'https://launchermeta.mojang.com/mc/game/version_manifest.json'
6
+ const changelogURL = 'https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs'
7
+
8
+ // this is a polyfill for node <18
9
+ const fetch = globalThis.fetch || function (url) {
10
+ return new Promise((resolve, reject) => {
11
+ https.get(url, (res) => {
12
+ let data = ''
13
+ res.on('data', (chunk) => {
14
+ data += chunk
15
+ })
16
+ res.on('end', () => {
17
+ resolve({
18
+ ok: true,
19
+ text: () => Promise.resolve(data),
20
+ json: () => Promise.resolve(JSON.parse(data))
21
+ })
22
+ })
23
+ }).on('error', reject)
24
+ })
25
+ }
26
+ const download = (url, dest) => cp.execSync(`curl -L ${url} -o ${dest}`)
27
+
28
+ function buildFirstIssue (title, result, jarData) {
29
+ const protocolVersion = jarData?.protocol_version || 'Failed to obtain from JAR'
30
+ const name = jarData?.name || result.id
31
+ const date = result.releaseTime
32
+
33
+ return {
34
+ title,
35
+ body: `
36
+ A new Minecraft Java Edition version is available (as of ${date}), version **${result.id}**
37
+ ## Official Changelog
38
+ * ${changelogURL}
39
+ ## Protocol Details
40
+ (I will close this issue automatically if "${result.id}" is added to data/pc/common/versions.json on "master")
41
+ <table>
42
+ <tr><td><b>Name</b></td><td>${name}</td>
43
+ <tr><td><b>Protocol ID</b></td><td>${protocolVersion}</td>
44
+ <tr><td><b>Release Date</b></td><td>${date}</td>
45
+ <tr><td><b>Release Type</b></td><td>${result.type}</td>
46
+ <tr><td><b>Data Version</b></td><td>${jarData?.world_version}</td>
47
+ <tr><td><b>Java Version</b></td><td>${jarData?.java_version}</td>
48
+ </table>
49
+ <hr/>
50
+ 🤖 I am a bot, I check for updates every 2 hours without a trigger. You can close this issue to prevent any further updates.
51
+ `
52
+ }
53
+ }
54
+
55
+ const protocolVersions = {
56
+ pc: require('../../data/pc/common/protocolVersions.json'),
57
+ bedrock: require('../../data/bedrock/common/protocolVersions.json')
58
+ }
59
+ const supportedVersions = {
60
+ pc: require('../../data/pc/common/versions.json'),
61
+ bedrock: require('../../data/bedrock/common/versions.json')
62
+ }
63
+
64
+ async function updateManifestPC () {
65
+ const manifest = await fetch(pcManifestURL).then(res => res.json())
66
+ // fs.writeFileSync('./manifest.json', JSON.stringify(manifest, null, 2))
67
+ const knownVersions = protocolVersions.pc.reduce((acc, cur) => (acc[cur.minecraftVersion] = cur, acc), {})
68
+ const latestRelease = manifest.latest.release
69
+
70
+ const title = `Support Minecraft PC ${latestRelease}`
71
+ const issueStatus = await helper.getIssueStatus(title)
72
+
73
+ if (supportedVersions.pc.includes(latestRelease)) {
74
+ if (issueStatus.open) {
75
+ helper.close(issueStatus.id, `Closing as PC ${latestRelease} is now supported`)
76
+ }
77
+ console.log('Latest PC version is supported.')
78
+ return
79
+ } else if (knownVersions[latestRelease]) {
80
+ console.log(`Latest PC version ${latestRelease} is known in protocolVersions.json, but not in versions.json (protocol version ${knownVersions[latestRelease].version})`)
81
+ return
82
+ } else {
83
+ console.log(`Latest PC version ${latestRelease} is not known in protocolVersions.json, adding and making issue`)
84
+ }
85
+ const latestReleaseData = manifest.versions.find(v => v.id === latestRelease)
86
+
87
+ // Note: We don't use the below check to track if the version is supported properly or not
88
+ // (data like protocol/blocks/items/etc is present), just to make sure the known protocol version is correct.
89
+ try {
90
+ const latestReleaseManifest = await fetch(latestReleaseData.url).then(res => res.json())
91
+ // Download client jar
92
+ if (!fs.existsSync(`./${latestRelease}.jar`)) {
93
+ const clientJarUrl = latestReleaseManifest.downloads.client.url
94
+ console.log('Downloading client jar', clientJarUrl)
95
+ download(clientJarUrl, `./${latestRelease}.jar`)
96
+ }
97
+
98
+ // Log the byte size of the client jar
99
+ const clientJarSize = fs.statSync(`./${latestRelease}.jar`).size
100
+ console.log(`Downloaded client jar ${latestRelease}.jar (${clientJarSize} bytes), extracting its version.json...`)
101
+
102
+ // unzip with tar / unzip, Actions image uses 7z
103
+ if (process.platform === 'win32') cp.execSync(`tar -xf ./${latestRelease}.jar version.json`)
104
+ else cp.execSync(`7z -y e ./${latestRelease}.jar version.json`, { stdio: 'inherit' })
105
+ const versionJson = require('./version.json')
106
+
107
+ let majorVersion
108
+ try {
109
+ majorVersion = versionJson.id.split('.', 2).join('.')
110
+ } catch (e) {
111
+ console.error('Failed to get major version from version.json.id', versionJson.id, ', falling back to protocolVersions.json latest (may be incorrect)')
112
+ majorVersion = protocolVersions.pc[0].majorVersion
113
+ }
114
+
115
+ const newEntry = {
116
+ minecraftVersion: versionJson.id,
117
+ version: versionJson.protocol_version,
118
+ dataVersion: versionJson.world_version,
119
+ usesNetty: true,
120
+ majorVersion,
121
+ releaseType: latestReleaseData.type
122
+ }
123
+ console.log('Adding new entry to pc protocolVersions.json', newEntry)
124
+ const updatedProtocolVersions = [newEntry, ...protocolVersions.pc]
125
+ fs.writeFileSync('../../data/pc/common/protocolVersions.json', JSON.stringify(updatedProtocolVersions, null, 2))
126
+
127
+ if (process.env.CI) {
128
+ console.log('Committing changes to protocolVersions.json')
129
+ // https://github.com/actions/checkout/pull/1184
130
+ cp.execSync('git config user.name "github-actions[bot]"')
131
+ cp.execSync('git config user.email "41898282+github-actions[bot]@users.noreply.github.com"')
132
+ cp.execSync('git add ../../data/pc/common/protocolVersions.json')
133
+ cp.execSync(`git commit -m "Add ${versionJson.id} to pc protocolVersions.json"`)
134
+ cp.execSync('git push')
135
+ }
136
+
137
+ if (!issueStatus.open && !issueStatus.closed) {
138
+ console.log('Opening issue', versionJson)
139
+ const issuePayload = buildFirstIssue(title, latestReleaseData, versionJson)
140
+
141
+ helper.createIssue(issuePayload)
142
+
143
+ fs.writeFileSync('./issue.md', issuePayload.body)
144
+ console.log('OK, wrote to ./issue.md', issuePayload)
145
+ }
146
+ } catch (e) {
147
+ console.error(e)
148
+
149
+ console.log('Latest PC version is not supported and we failed to load data. Opening issue...')
150
+ const issuePayload = buildFirstIssue(title, latestReleaseData)
151
+ helper.createIssue(issuePayload)
152
+
153
+ fs.writeFileSync('./issue.md', issuePayload.body)
154
+ console.log('OK, wrote to ./issue.md', issuePayload)
155
+ }
156
+ }
157
+
158
+ updateManifestPC()
@@ -0,0 +1,25 @@
1
+ name: Update Helper
2
+ on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: "0 */2 * * *"
6
+
7
+ jobs:
8
+ helper:
9
+ name: update-checker
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@master
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@master
16
+ with:
17
+ node-version: 16.0.0
18
+ - name: Install Github Actions toolkit
19
+ run: npm i @actions/github
20
+ working-directory: .github/helper-bot
21
+ # The env vars contain the relevant trigger information, so we don't need to pass it
22
+ - name: Runs helper
23
+ run: cd .github/helper-bot && node index.js
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -9,8 +9,9 @@ Language independent module providing minecraft data for minecraft clients, serv
9
9
 
10
10
  Supports
11
11
  * Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
12
- 1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3)
13
- * Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80
12
+ 1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4)
13
+ * Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0
14
+
14
15
 
15
16
  ## Wrappers
16
17
 
@@ -1387,6 +1387,10 @@ packet_event:
1387
1387
  23: target_block_hit
1388
1388
  24: piglin_barter
1389
1389
  25: waxed_or_unwaxed_copper
1390
+ 26: code_builder_runtime_action
1391
+ 27: code_builder_scoreboard
1392
+ 28: strider_ridden_in_lava_in_overworld
1393
+ 29: sneak_close_to_sculk_sensor
1390
1394
  use_player_id: u8
1391
1395
  event_data: restBuffer # Unknown data, TODO: add
1392
1396
 
@@ -6137,7 +6137,11 @@
6137
6137
  "22": "honey_harvested",
6138
6138
  "23": "target_block_hit",
6139
6139
  "24": "piglin_barter",
6140
- "25": "waxed_or_unwaxed_copper"
6140
+ "25": "waxed_or_unwaxed_copper",
6141
+ "26": "code_builder_runtime_action",
6142
+ "27": "code_builder_scoreboard",
6143
+ "28": "strider_ridden_in_lava_in_overworld",
6144
+ "29": "sneak_close_to_sculk_sensor"
6141
6145
  }
6142
6146
  }
6143
6147
  ]
@@ -1438,6 +1438,10 @@ packet_event:
1438
1438
  23: target_block_hit
1439
1439
  24: piglin_barter
1440
1440
  25: waxed_or_unwaxed_copper
1441
+ 26: code_builder_runtime_action
1442
+ 27: code_builder_scoreboard
1443
+ 28: strider_ridden_in_lava_in_overworld
1444
+ 29: sneak_close_to_sculk_sensor
1441
1445
  use_player_id: u8
1442
1446
  event_data: restBuffer # Unknown data, TODO: add
1443
1447
 
@@ -6205,7 +6205,11 @@
6205
6205
  "22": "honey_harvested",
6206
6206
  "23": "target_block_hit",
6207
6207
  "24": "piglin_barter",
6208
- "25": "waxed_or_unwaxed_copper"
6208
+ "25": "waxed_or_unwaxed_copper",
6209
+ "26": "code_builder_runtime_action",
6210
+ "27": "code_builder_scoreboard",
6211
+ "28": "strider_ridden_in_lava_in_overworld",
6212
+ "29": "sneak_close_to_sculk_sensor"
6209
6213
  }
6210
6214
  }
6211
6215
  ]
@@ -1452,6 +1452,10 @@ packet_event:
1452
1452
  23: target_block_hit
1453
1453
  24: piglin_barter
1454
1454
  25: waxed_or_unwaxed_copper
1455
+ 26: code_builder_runtime_action
1456
+ 27: code_builder_scoreboard
1457
+ 28: strider_ridden_in_lava_in_overworld
1458
+ 29: sneak_close_to_sculk_sensor
1455
1459
  use_player_id: u8
1456
1460
  event_data: restBuffer # Unknown data, TODO: add
1457
1461
 
@@ -6275,7 +6275,11 @@
6275
6275
  "22": "honey_harvested",
6276
6276
  "23": "target_block_hit",
6277
6277
  "24": "piglin_barter",
6278
- "25": "waxed_or_unwaxed_copper"
6278
+ "25": "waxed_or_unwaxed_copper",
6279
+ "26": "code_builder_runtime_action",
6280
+ "27": "code_builder_scoreboard",
6281
+ "28": "strider_ridden_in_lava_in_overworld",
6282
+ "29": "sneak_close_to_sculk_sensor"
6279
6283
  }
6280
6284
  }
6281
6285
  ]
@@ -1452,6 +1452,10 @@ packet_event:
1452
1452
  23: target_block_hit
1453
1453
  24: piglin_barter
1454
1454
  25: waxed_or_unwaxed_copper
1455
+ 26: code_builder_runtime_action
1456
+ 27: code_builder_scoreboard
1457
+ 28: strider_ridden_in_lava_in_overworld
1458
+ 29: sneak_close_to_sculk_sensor
1455
1459
  use_player_id: u8
1456
1460
  event_data: restBuffer # Unknown data, TODO: add
1457
1461
 
@@ -6275,7 +6275,11 @@
6275
6275
  "22": "honey_harvested",
6276
6276
  "23": "target_block_hit",
6277
6277
  "24": "piglin_barter",
6278
- "25": "waxed_or_unwaxed_copper"
6278
+ "25": "waxed_or_unwaxed_copper",
6279
+ "26": "code_builder_runtime_action",
6280
+ "27": "code_builder_scoreboard",
6281
+ "28": "strider_ridden_in_lava_in_overworld",
6282
+ "29": "sneak_close_to_sculk_sensor"
6279
6283
  }
6280
6284
  }
6281
6285
  ]
@@ -1453,6 +1453,10 @@ packet_event:
1453
1453
  23: target_block_hit
1454
1454
  24: piglin_barter
1455
1455
  25: waxed_or_unwaxed_copper
1456
+ 26: code_builder_runtime_action
1457
+ 27: code_builder_scoreboard
1458
+ 28: strider_ridden_in_lava_in_overworld
1459
+ 29: sneak_close_to_sculk_sensor
1456
1460
  use_player_id: u8
1457
1461
  event_data: restBuffer # Unknown data, TODO: add
1458
1462
 
@@ -6375,7 +6375,11 @@
6375
6375
  "22": "honey_harvested",
6376
6376
  "23": "target_block_hit",
6377
6377
  "24": "piglin_barter",
6378
- "25": "waxed_or_unwaxed_copper"
6378
+ "25": "waxed_or_unwaxed_copper",
6379
+ "26": "code_builder_runtime_action",
6380
+ "27": "code_builder_scoreboard",
6381
+ "28": "strider_ridden_in_lava_in_overworld",
6382
+ "29": "sneak_close_to_sculk_sensor"
6379
6383
  }
6380
6384
  }
6381
6385
  ]
@@ -1463,6 +1463,10 @@ packet_event:
1463
1463
  23: target_block_hit
1464
1464
  24: piglin_barter
1465
1465
  25: waxed_or_unwaxed_copper
1466
+ 26: code_builder_runtime_action
1467
+ 27: code_builder_scoreboard
1468
+ 28: strider_ridden_in_lava_in_overworld
1469
+ 29: sneak_close_to_sculk_sensor
1466
1470
  use_player_id: u8
1467
1471
  event_data: restBuffer # Unknown data, TODO: add
1468
1472
 
@@ -6444,7 +6444,11 @@
6444
6444
  "22": "honey_harvested",
6445
6445
  "23": "target_block_hit",
6446
6446
  "24": "piglin_barter",
6447
- "25": "waxed_or_unwaxed_copper"
6447
+ "25": "waxed_or_unwaxed_copper",
6448
+ "26": "code_builder_runtime_action",
6449
+ "27": "code_builder_scoreboard",
6450
+ "28": "strider_ridden_in_lava_in_overworld",
6451
+ "29": "sneak_close_to_sculk_sensor"
6448
6452
  }
6449
6453
  }
6450
6454
  ]
@@ -1463,6 +1463,10 @@ packet_event:
1463
1463
  23: target_block_hit
1464
1464
  24: piglin_barter
1465
1465
  25: waxed_or_unwaxed_copper
1466
+ 26: code_builder_runtime_action
1467
+ 27: code_builder_scoreboard
1468
+ 28: strider_ridden_in_lava_in_overworld
1469
+ 29: sneak_close_to_sculk_sensor
1466
1470
  use_player_id: u8
1467
1471
  event_data: restBuffer # Unknown data, TODO: add
1468
1472
 
@@ -6460,7 +6460,11 @@
6460
6460
  "22": "honey_harvested",
6461
6461
  "23": "target_block_hit",
6462
6462
  "24": "piglin_barter",
6463
- "25": "waxed_or_unwaxed_copper"
6463
+ "25": "waxed_or_unwaxed_copper",
6464
+ "26": "code_builder_runtime_action",
6465
+ "27": "code_builder_scoreboard",
6466
+ "28": "strider_ridden_in_lava_in_overworld",
6467
+ "29": "sneak_close_to_sculk_sensor"
6464
6468
  }
6465
6469
  }
6466
6470
  ]
@@ -1465,6 +1465,10 @@ packet_event:
1465
1465
  23: target_block_hit
1466
1466
  24: piglin_barter
1467
1467
  25: waxed_or_unwaxed_copper
1468
+ 26: code_builder_runtime_action
1469
+ 27: code_builder_scoreboard
1470
+ 28: strider_ridden_in_lava_in_overworld
1471
+ 29: sneak_close_to_sculk_sensor
1468
1472
  use_player_id: u8
1469
1473
  event_data: restBuffer # Unknown data, TODO: add
1470
1474
 
@@ -6501,7 +6501,11 @@
6501
6501
  "22": "honey_harvested",
6502
6502
  "23": "target_block_hit",
6503
6503
  "24": "piglin_barter",
6504
- "25": "waxed_or_unwaxed_copper"
6504
+ "25": "waxed_or_unwaxed_copper",
6505
+ "26": "code_builder_runtime_action",
6506
+ "27": "code_builder_scoreboard",
6507
+ "28": "strider_ridden_in_lava_in_overworld",
6508
+ "29": "sneak_close_to_sculk_sensor"
6505
6509
  }
6506
6510
  }
6507
6511
  ]
@@ -1465,6 +1465,10 @@ packet_event:
1465
1465
  23: target_block_hit
1466
1466
  24: piglin_barter
1467
1467
  25: waxed_or_unwaxed_copper
1468
+ 26: code_builder_runtime_action
1469
+ 27: code_builder_scoreboard
1470
+ 28: strider_ridden_in_lava_in_overworld
1471
+ 29: sneak_close_to_sculk_sensor
1468
1472
  use_player_id: u8
1469
1473
  event_data: restBuffer # Unknown data, TODO: add
1470
1474
 
@@ -6505,7 +6505,11 @@
6505
6505
  "22": "honey_harvested",
6506
6506
  "23": "target_block_hit",
6507
6507
  "24": "piglin_barter",
6508
- "25": "waxed_or_unwaxed_copper"
6508
+ "25": "waxed_or_unwaxed_copper",
6509
+ "26": "code_builder_runtime_action",
6510
+ "27": "code_builder_scoreboard",
6511
+ "28": "strider_ridden_in_lava_in_overworld",
6512
+ "29": "sneak_close_to_sculk_sensor"
6509
6513
  }
6510
6514
  }
6511
6515
  ]
@@ -1465,6 +1465,10 @@ packet_event:
1465
1465
  23: target_block_hit
1466
1466
  24: piglin_barter
1467
1467
  25: waxed_or_unwaxed_copper
1468
+ 26: code_builder_runtime_action
1469
+ 27: code_builder_scoreboard
1470
+ 28: strider_ridden_in_lava_in_overworld
1471
+ 29: sneak_close_to_sculk_sensor
1468
1472
  use_player_id: u8
1469
1473
  event_data: restBuffer # Unknown data, TODO: add
1470
1474
 
@@ -6523,7 +6523,11 @@
6523
6523
  "22": "honey_harvested",
6524
6524
  "23": "target_block_hit",
6525
6525
  "24": "piglin_barter",
6526
- "25": "waxed_or_unwaxed_copper"
6526
+ "25": "waxed_or_unwaxed_copper",
6527
+ "26": "code_builder_runtime_action",
6528
+ "27": "code_builder_scoreboard",
6529
+ "28": "strider_ridden_in_lava_in_overworld",
6530
+ "29": "sneak_close_to_sculk_sensor"
6527
6531
  }
6528
6532
  }
6529
6533
  ]