minecraft-data 3.98.0 → 3.99.1
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 +27 -5
- package/doc/history.md +8 -0
- package/minecraft-data/.github/copilot-instructions.md +63 -0
- package/minecraft-data/.github/helper-bot/handleMcpcGeneratedArtifacts.js +18 -14
- package/minecraft-data/.github/helper-bot/index.js +3 -41
- package/minecraft-data/.github/helper-bot/utils.js +50 -0
- package/minecraft-data/.github/workflows/bedrock-ci.yml +3 -2
- package/minecraft-data/.github/workflows/handle-mcpc-generator.yml +11 -8
- package/minecraft-data/.github/workflows/update-helper.yml +1 -1
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.21.100/proto.yml +4573 -0
- package/minecraft-data/data/bedrock/1.21.100/types.yml +2841 -0
- package/minecraft-data/data/bedrock/1.21.111/proto.yml +4573 -0
- package/minecraft-data/data/bedrock/1.21.111/protocol.json +14380 -0
- package/minecraft-data/data/bedrock/1.21.111/types.yml +2841 -0
- package/minecraft-data/data/bedrock/1.21.111/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +37 -30
- package/minecraft-data/data/bedrock/latest/types.yml +160 -154
- package/minecraft-data/data/dataPaths.json +27 -5
- package/minecraft-data/data/pc/common/protocolVersions.json +56 -0
- package/minecraft-data/doc/history.md +8 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Created from MiNET and gophertunnel docs
|
|
2
2
|
# The version below is the latest version this protocol schema was updated for.
|
|
3
3
|
# The output protocol.json will be in the folder for the version
|
|
4
|
-
!version: 1.21.
|
|
4
|
+
!version: 1.21.111
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -340,7 +340,7 @@ packet_start_game:
|
|
|
340
340
|
# Defines game rules currently active with their respective values. The value of these game
|
|
341
341
|
# rules may be either 'bool', 'Int32' or 'Float32'. Some game rules are server side only,
|
|
342
342
|
# and don't necessarily need to be sent to the client.
|
|
343
|
-
gamerules:
|
|
343
|
+
gamerules: GameRuleVarint[]varint
|
|
344
344
|
experiments: Experiments
|
|
345
345
|
experiments_previously_used: bool
|
|
346
346
|
# Specifies if the world had the bonus map setting enabled when generating it.
|
|
@@ -724,6 +724,7 @@ packet_level_sound_event_old:
|
|
|
724
724
|
is_baby_mob: bool
|
|
725
725
|
is_global: bool
|
|
726
726
|
|
|
727
|
+
# TODO: Check and verify old versions
|
|
727
728
|
packet_level_event:
|
|
728
729
|
!id: 0x19
|
|
729
730
|
!bound: client
|
|
@@ -835,6 +836,13 @@ packet_level_event:
|
|
|
835
836
|
3613: particle_trial_spawner_ejecting
|
|
836
837
|
3614: particle_wind_explosion
|
|
837
838
|
3615: particle_wolf_armor_break
|
|
839
|
+
3616: ominous_item_spawner
|
|
840
|
+
3617: creaking_crumble
|
|
841
|
+
3618: pale_oak_leaves
|
|
842
|
+
3619: eyeblossom_open
|
|
843
|
+
3620: eyeblossom_close
|
|
844
|
+
3621: green_flame
|
|
845
|
+
#
|
|
838
846
|
4000: set_data
|
|
839
847
|
9800: players_sleeping
|
|
840
848
|
9801: sleeping_players
|
|
@@ -1679,7 +1687,7 @@ packet_chunk_radius_update:
|
|
|
1679
1687
|
packet_game_rules_changed:
|
|
1680
1688
|
!id: 0x48
|
|
1681
1689
|
!bound: client
|
|
1682
|
-
rules:
|
|
1690
|
+
rules: GameRuleI32[]varint
|
|
1683
1691
|
|
|
1684
1692
|
# Camera is sent by the server to use an Education Edition camera on a player. It produces an image
|
|
1685
1693
|
# client-side.
|
|
@@ -3320,33 +3328,16 @@ packet_item_stack_response:
|
|
|
3320
3328
|
packet_player_armor_damage:
|
|
3321
3329
|
!id: 0x95
|
|
3322
3330
|
!bound: client
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
boots_damage: type.feet ?
|
|
3334
|
-
if true: zigzag32
|
|
3335
|
-
body_damage: type.body ?
|
|
3336
|
-
if true: zigzag32
|
|
3337
|
-
|
|
3338
|
-
ArmorDamageType: [ "bitflags",
|
|
3339
|
-
{
|
|
3340
|
-
"type": "u8",
|
|
3341
|
-
"flags": {
|
|
3342
|
-
"head": 0b1,
|
|
3343
|
-
"chest": 0b10,
|
|
3344
|
-
"legs": 0b100,
|
|
3345
|
-
"feet": 0b1000,
|
|
3346
|
-
"body": 0b10000
|
|
3347
|
-
}
|
|
3348
|
-
}
|
|
3349
|
-
]
|
|
3331
|
+
entries: ArmorDamageEntry[]varint
|
|
3332
|
+
|
|
3333
|
+
ArmorDamageEntry:
|
|
3334
|
+
armor_slot: u8 =>
|
|
3335
|
+
0: helmet
|
|
3336
|
+
1: chestplate
|
|
3337
|
+
2: leggings
|
|
3338
|
+
3: boots
|
|
3339
|
+
4: body
|
|
3340
|
+
damage: li16
|
|
3350
3341
|
|
|
3351
3342
|
# CodeBuilder is an Education Edition packet sent by the server to the client to open the URL to a Code
|
|
3352
3343
|
# Builder (websocket) server.
|
|
@@ -4571,3 +4562,19 @@ packet_server_script_debug_drawer:
|
|
|
4571
4562
|
arrow_head_length?: lf32
|
|
4572
4563
|
arrow_head_radius?: lf32
|
|
4573
4564
|
segment_count?: u8
|
|
4565
|
+
|
|
4566
|
+
# ServerBoundPackSettingChange
|
|
4567
|
+
packet_serverbound_pack_setting_change:
|
|
4568
|
+
!id: 0x149
|
|
4569
|
+
!bound: server
|
|
4570
|
+
pack_id: uuid
|
|
4571
|
+
pack_setting:
|
|
4572
|
+
name: string
|
|
4573
|
+
type: u8 =>
|
|
4574
|
+
- float
|
|
4575
|
+
- bool
|
|
4576
|
+
- string
|
|
4577
|
+
value: type ?
|
|
4578
|
+
if float: lf32
|
|
4579
|
+
if bool: bool
|
|
4580
|
+
if string: string
|
|
@@ -39,19 +39,29 @@ GameMode: zigzag32 =>
|
|
|
39
39
|
5: fallback
|
|
40
40
|
6: spectator
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
42
|
+
GameRuleI32:
|
|
43
|
+
name: string
|
|
44
|
+
editable: bool
|
|
45
|
+
type: varint =>
|
|
46
|
+
1: bool
|
|
47
|
+
2: int
|
|
48
|
+
3: float
|
|
49
|
+
value: type?
|
|
50
|
+
if bool: bool
|
|
51
|
+
if int: li32
|
|
52
|
+
if float: lf32
|
|
53
|
+
|
|
54
|
+
GameRuleVarint:
|
|
55
|
+
name: string
|
|
56
|
+
editable: bool
|
|
57
|
+
type: varint =>
|
|
58
|
+
1: bool
|
|
59
|
+
2: int
|
|
60
|
+
3: float
|
|
61
|
+
value: type?
|
|
62
|
+
if bool: bool
|
|
63
|
+
if int: varint
|
|
64
|
+
if float: lf32
|
|
55
65
|
|
|
56
66
|
# CacheBlob represents a blob as used in the client side blob cache protocol. It holds a hash of its data and
|
|
57
67
|
# the full data of it.
|
|
@@ -478,7 +488,8 @@ MetadataFlags2: [ "bitflags", {
|
|
|
478
488
|
"collidable",
|
|
479
489
|
"wasd_air_controlled",
|
|
480
490
|
"does_server_auth_only_dismount",
|
|
481
|
-
"body_rotation_always_follows_head"
|
|
491
|
+
"body_rotation_always_follows_head",
|
|
492
|
+
"can_use_vertical_movement_action"
|
|
482
493
|
]
|
|
483
494
|
}]
|
|
484
495
|
|
|
@@ -548,6 +559,7 @@ TransactionUseItem:
|
|
|
548
559
|
# Block breaking like left click. When using server auth block breaking as specified in StartGamePacket this is never sent.
|
|
549
560
|
# Instead, block actions are supplied in Player Auth Input.
|
|
550
561
|
2: break_block
|
|
562
|
+
3: attack
|
|
551
563
|
# TriggerType is the type of the trigger that caused the inventory transaction. It is one of the trigger
|
|
552
564
|
# types found in the constants above. If TriggerType is TriggerTypePlayerInput, the transaction is from
|
|
553
565
|
# the initial input of the player. If it is TriggerTypeSimulationTick, the transaction is from a simulation
|
|
@@ -1650,7 +1662,7 @@ SoundType: varint =>
|
|
|
1650
1662
|
- Land
|
|
1651
1663
|
- Saddle
|
|
1652
1664
|
- Armor
|
|
1653
|
-
-
|
|
1665
|
+
- ArmorStandPlace
|
|
1654
1666
|
- AddChest
|
|
1655
1667
|
- Throw
|
|
1656
1668
|
- Attack
|
|
@@ -1673,7 +1685,7 @@ SoundType: varint =>
|
|
|
1673
1685
|
- LargeBlast
|
|
1674
1686
|
- Twinkle
|
|
1675
1687
|
- Remedy
|
|
1676
|
-
-
|
|
1688
|
+
- Unfect
|
|
1677
1689
|
- LevelUp
|
|
1678
1690
|
- BowHit
|
|
1679
1691
|
- BulletHit
|
|
@@ -1990,51 +2002,51 @@ SoundType: varint =>
|
|
|
1990
2002
|
- Listening
|
|
1991
2003
|
- Heartbeat
|
|
1992
2004
|
- HornBreak
|
|
1993
|
-
-
|
|
2005
|
+
- _
|
|
1994
2006
|
- SculkSpread
|
|
1995
2007
|
- SculkCharge
|
|
1996
2008
|
- SculkSensorPlace
|
|
1997
2009
|
- SculkShriekerPlace
|
|
1998
|
-
-
|
|
1999
|
-
-
|
|
2000
|
-
-
|
|
2001
|
-
-
|
|
2002
|
-
-
|
|
2003
|
-
-
|
|
2004
|
-
-
|
|
2005
|
-
-
|
|
2006
|
-
-
|
|
2007
|
-
-
|
|
2008
|
-
-
|
|
2009
|
-
-
|
|
2010
|
-
-
|
|
2011
|
-
-
|
|
2012
|
-
-
|
|
2013
|
-
-
|
|
2014
|
-
-
|
|
2015
|
-
-
|
|
2016
|
-
-
|
|
2017
|
-
-
|
|
2018
|
-
-
|
|
2019
|
-
-
|
|
2020
|
-
-
|
|
2021
|
-
-
|
|
2022
|
-
-
|
|
2023
|
-
-
|
|
2024
|
-
-
|
|
2025
|
-
-
|
|
2026
|
-
-
|
|
2027
|
-
-
|
|
2028
|
-
-
|
|
2029
|
-
-
|
|
2030
|
-
-
|
|
2031
|
-
-
|
|
2032
|
-
-
|
|
2033
|
-
-
|
|
2034
|
-
-
|
|
2035
|
-
-
|
|
2036
|
-
-
|
|
2037
|
-
-
|
|
2010
|
+
- GoatCall0
|
|
2011
|
+
- GoatCall1
|
|
2012
|
+
- GoatCall2
|
|
2013
|
+
- GoatCall3
|
|
2014
|
+
- GoatCall4
|
|
2015
|
+
- GoatCall5
|
|
2016
|
+
- GoatCall6
|
|
2017
|
+
- GoatCall7
|
|
2018
|
+
- GoatCall8
|
|
2019
|
+
- GoatCall9
|
|
2020
|
+
- GoatHarmony0
|
|
2021
|
+
- GoatHarmony1
|
|
2022
|
+
- GoatHarmony2
|
|
2023
|
+
- GoatHarmony3
|
|
2024
|
+
- GoatHarmony4
|
|
2025
|
+
- GoatHarmony5
|
|
2026
|
+
- GoatHarmony6
|
|
2027
|
+
- GoatHarmony7
|
|
2028
|
+
- GoatHarmony8
|
|
2029
|
+
- GoatHarmony9
|
|
2030
|
+
- GoatMelody0
|
|
2031
|
+
- GoatMelody1
|
|
2032
|
+
- GoatMelody2
|
|
2033
|
+
- GoatMelody3
|
|
2034
|
+
- GoatMelody4
|
|
2035
|
+
- GoatMelody5
|
|
2036
|
+
- GoatMelody6
|
|
2037
|
+
- GoatMelody7
|
|
2038
|
+
- GoatMelody8
|
|
2039
|
+
- GoatMelody9
|
|
2040
|
+
- GoatBass0
|
|
2041
|
+
- GoatBass1
|
|
2042
|
+
- GoatBass2
|
|
2043
|
+
- GoatBass3
|
|
2044
|
+
- GoatBass4
|
|
2045
|
+
- GoatBass5
|
|
2046
|
+
- GoatBass6
|
|
2047
|
+
- GoatBass7
|
|
2048
|
+
- GoatBass8
|
|
2049
|
+
- GoatBass9
|
|
2038
2050
|
- _
|
|
2039
2051
|
- _
|
|
2040
2052
|
- _
|
|
@@ -2089,89 +2101,95 @@ SoundType: varint =>
|
|
|
2089
2101
|
- HoglinZombified
|
|
2090
2102
|
- AmbientUnderwaterEnter
|
|
2091
2103
|
- AmbientUnderwaterExit
|
|
2092
|
-
-
|
|
2093
|
-
-
|
|
2094
|
-
-
|
|
2095
|
-
-
|
|
2096
|
-
-
|
|
2097
|
-
-
|
|
2098
|
-
-
|
|
2099
|
-
-
|
|
2100
|
-
-
|
|
2101
|
-
-
|
|
2102
|
-
-
|
|
2103
|
-
-
|
|
2104
|
-
-
|
|
2105
|
-
-
|
|
2106
|
-
-
|
|
2107
|
-
-
|
|
2108
|
-
-
|
|
2109
|
-
-
|
|
2110
|
-
-
|
|
2111
|
-
-
|
|
2112
|
-
-
|
|
2113
|
-
-
|
|
2114
|
-
-
|
|
2115
|
-
-
|
|
2116
|
-
-
|
|
2117
|
-
-
|
|
2118
|
-
-
|
|
2119
|
-
-
|
|
2120
|
-
-
|
|
2121
|
-
-
|
|
2122
|
-
-
|
|
2123
|
-
-
|
|
2124
|
-
-
|
|
2125
|
-
-
|
|
2126
|
-
-
|
|
2127
|
-
-
|
|
2128
|
-
-
|
|
2104
|
+
- BottleFill
|
|
2105
|
+
- BottleEmpty
|
|
2106
|
+
- CrafterCraft
|
|
2107
|
+
- CrafterFail
|
|
2108
|
+
- DecoratedPotInsert
|
|
2109
|
+
- DecoratedPotInsertFail
|
|
2110
|
+
- CrafterDisableSlot
|
|
2111
|
+
- TrialSpawnerOpenShutter
|
|
2112
|
+
- TrialSpawnerEjectItem
|
|
2113
|
+
- TrialSpawnerDetectPlayer
|
|
2114
|
+
- TrialSpawnerSpawnMob
|
|
2115
|
+
- TrialSpawnerCloseShutter
|
|
2116
|
+
- TrialSpawnerAmbient
|
|
2117
|
+
- CopperBulbTurnOn
|
|
2118
|
+
- CopperBulbTurnOff
|
|
2119
|
+
- AmbientInAir
|
|
2120
|
+
- BreezeWindChargeBurst
|
|
2121
|
+
- ImitateBreeze
|
|
2122
|
+
- ArmadilloBrush
|
|
2123
|
+
- ArmadilloScuteDrop
|
|
2124
|
+
- EquipWolf
|
|
2125
|
+
- UnequipWolf
|
|
2126
|
+
- Reflect
|
|
2127
|
+
- VaultOpenShutter
|
|
2128
|
+
- VaultCloseShutter
|
|
2129
|
+
- VaultEjectItem
|
|
2130
|
+
- VaultInsertItem
|
|
2131
|
+
- VaultInsertItemFail
|
|
2132
|
+
- VaultAmbient
|
|
2133
|
+
- VaultActivate
|
|
2134
|
+
- VaultDeactive
|
|
2135
|
+
- HurtReduced
|
|
2136
|
+
- WindChargeBurst
|
|
2137
|
+
- ImitateBogged
|
|
2138
|
+
- WolfArmourCrack
|
|
2139
|
+
- WolfArmourBreak
|
|
2140
|
+
- WolfArmourRepair
|
|
2141
|
+
- MaceSmashAir
|
|
2142
|
+
- MaceSmashGround
|
|
2143
|
+
- TrialSpawnerChargeActivate
|
|
2144
|
+
- TrialSpawnerAmbientOminous
|
|
2145
|
+
- OminiousItemSpawnerSpawnItem
|
|
2146
|
+
- OminousBottleEndUse
|
|
2147
|
+
- MaceHeavySmashGround
|
|
2148
|
+
- OminousItemSpawnerSpawnItemBegin
|
|
2129
2149
|
- _
|
|
2130
|
-
-
|
|
2131
|
-
-
|
|
2132
|
-
-
|
|
2133
|
-
-
|
|
2134
|
-
-
|
|
2135
|
-
-
|
|
2136
|
-
-
|
|
2137
|
-
-
|
|
2138
|
-
-
|
|
2139
|
-
-
|
|
2140
|
-
-
|
|
2141
|
-
-
|
|
2142
|
-
- imitate_guardian
|
|
2143
|
-
- imitate_ravager
|
|
2144
|
-
- imitate_pillager
|
|
2145
|
-
- place_in_water
|
|
2146
|
-
- state_change
|
|
2147
|
-
- imitate_happy_ghast
|
|
2148
|
-
- unique_generic
|
|
2149
|
-
- record_tears
|
|
2150
|
-
- the_end_light_flash
|
|
2151
|
-
- lead_leash
|
|
2152
|
-
- lead_unleash
|
|
2153
|
-
- lead_break
|
|
2154
|
-
- unsaddle
|
|
2155
|
-
- equip_copper
|
|
2156
|
-
- armor_crack_wolf
|
|
2157
|
-
- armor_break_wolf
|
|
2158
|
-
- armor_repair_wolf
|
|
2159
|
-
- mace_smash_air
|
|
2160
|
-
- mace_smash_ground
|
|
2161
|
-
- trail_spawner_charge_activate
|
|
2162
|
-
- trail_spawner_ambient_ominous
|
|
2163
|
-
- ominous_item_spawner_spawn_item
|
|
2164
|
-
- ominous_bottle_end_use
|
|
2165
|
-
- mace_smash_heavy_ground
|
|
2166
|
-
- ominous_item_spawner_spawn_item_begin
|
|
2150
|
+
- ApplyEffectBadOmen
|
|
2151
|
+
- ApplyEffectRaidOmen
|
|
2152
|
+
- ApplyEffectTrialOmen
|
|
2153
|
+
- OminousItemSpawnerAboutToSpawnItem
|
|
2154
|
+
- RecordCreator
|
|
2155
|
+
- RecordCreatorMusicBox
|
|
2156
|
+
- RecordPrecipice
|
|
2157
|
+
- VaultRejectRewardedPlayer
|
|
2158
|
+
- ImitateDrowned
|
|
2159
|
+
- ImitateCreaking
|
|
2160
|
+
- BundleInsertFailed
|
|
2161
|
+
- SpongeAbsorb
|
|
2167
2162
|
- _
|
|
2168
|
-
-
|
|
2169
|
-
-
|
|
2170
|
-
-
|
|
2171
|
-
-
|
|
2172
|
-
-
|
|
2173
|
-
-
|
|
2174
|
-
-
|
|
2163
|
+
- BlockCreakingHeartTrail
|
|
2164
|
+
- CreakingHeartSpawn
|
|
2165
|
+
- Activate
|
|
2166
|
+
- Deactivate
|
|
2167
|
+
- Freeze
|
|
2168
|
+
- Unfreeze
|
|
2169
|
+
- Open
|
|
2170
|
+
- OpenLong
|
|
2171
|
+
- Close
|
|
2172
|
+
- CloseLong
|
|
2173
|
+
- ImitatePhantom
|
|
2174
|
+
- ImitateZoglin
|
|
2175
|
+
- ImitateGuardian
|
|
2176
|
+
- ImitateRavager
|
|
2177
|
+
- ImitatePillager
|
|
2178
|
+
- PlaceInWater
|
|
2179
|
+
- StateChange
|
|
2180
|
+
- ImitateHappyGhast
|
|
2181
|
+
- UniqueGeneric
|
|
2182
|
+
- RecordTears
|
|
2183
|
+
- TheEndLightFlash
|
|
2184
|
+
- LeadLeash
|
|
2185
|
+
- LeadUnleash
|
|
2186
|
+
- LeadBreak
|
|
2187
|
+
- Unsaddle
|
|
2188
|
+
- EquipCopper
|
|
2189
|
+
- RecordLavaChicken
|
|
2190
|
+
- PlaceItem
|
|
2191
|
+
- SingleItemSwap
|
|
2192
|
+
- MultiItemSwap
|
|
2175
2193
|
|
|
2176
2194
|
# TODO: remove?
|
|
2177
2195
|
LegacyEntityType: li32 =>
|
|
@@ -2542,14 +2560,8 @@ BiomeDefinition:
|
|
|
2542
2560
|
temperature: lf32
|
|
2543
2561
|
# Downfall is the amount that precipitation affects colours and block changes.
|
|
2544
2562
|
downfall: lf32
|
|
2545
|
-
#
|
|
2546
|
-
|
|
2547
|
-
# BlueSporeDensity is the density of blue spore precipitation visuals.
|
|
2548
|
-
blue_spore_density: lf32
|
|
2549
|
-
# AshDensity is the density of ash precipitation visuals.
|
|
2550
|
-
ash_density: lf32
|
|
2551
|
-
# WhiteAshDensity is the density of white ash precipitation visuals.
|
|
2552
|
-
white_ash_density: lf32
|
|
2563
|
+
# Changes leaves turning white in snow
|
|
2564
|
+
snow_foliage: lf32
|
|
2553
2565
|
# Depth ...
|
|
2554
2566
|
depth: lf32
|
|
2555
2567
|
# Scale ...
|
|
@@ -2578,6 +2590,8 @@ BiomeChunkGeneration:
|
|
|
2578
2590
|
surface_material_adjustments?: BiomeElementData[]varint
|
|
2579
2591
|
# SurfaceMaterials is a set of materials to use for the surface layers of the biome.
|
|
2580
2592
|
surface_materials?: BiomeSurfaceMaterial
|
|
2593
|
+
# HasDefaultOverworldSurface is true if the biome has a default overworld surface.
|
|
2594
|
+
has_default_overworld_surface?: bool
|
|
2581
2595
|
# HasSwampSurface is true if the biome has a swamp surface.
|
|
2582
2596
|
has_swamp_surface: bool
|
|
2583
2597
|
# HasFrozenOceanSurface is true if the biome has a frozen ocean surface.
|
|
@@ -2602,14 +2616,6 @@ BiomeClimate:
|
|
|
2602
2616
|
temperature: lf32
|
|
2603
2617
|
# Downfall is the amount that precipitation affects colours and block changes.
|
|
2604
2618
|
downfall: lf32
|
|
2605
|
-
# RedSporeDensity is the density of red spore precipitation visuals.
|
|
2606
|
-
red_spore_density: lf32
|
|
2607
|
-
# BlueSporeDensity is the density of blue spore precipitation visuals.
|
|
2608
|
-
blue_spore_density: lf32
|
|
2609
|
-
# AshDensity is the density of ash precipitation visuals.
|
|
2610
|
-
ash_density: lf32
|
|
2611
|
-
# WhiteAshDensity is the density of white ash precipitation visuals.
|
|
2612
|
-
white_ash_density: lf32
|
|
2613
2619
|
# SnowAccumulationMin is the minimum amount of snow that can accumulate in the biome, every 0.125 is
|
|
2614
2620
|
# another layer of snow.
|
|
2615
2621
|
snow_accumulation_min: lf32
|
|
@@ -2520,7 +2520,7 @@
|
|
|
2520
2520
|
"effects": "pc/1.17",
|
|
2521
2521
|
"protocol": "bedrock/1.21.80",
|
|
2522
2522
|
"windows": "bedrock/1.16.201",
|
|
2523
|
-
"steve": "bedrock/1.21.
|
|
2523
|
+
"steve": "bedrock/1.21.70",
|
|
2524
2524
|
"blocksB2J": "bedrock/1.21.80",
|
|
2525
2525
|
"blocksJ2B": "bedrock/1.21.80",
|
|
2526
2526
|
"proto": "bedrock/1.21.80",
|
|
@@ -2542,7 +2542,7 @@
|
|
|
2542
2542
|
"effects": "pc/1.17",
|
|
2543
2543
|
"protocol": "bedrock/1.21.90",
|
|
2544
2544
|
"windows": "bedrock/1.16.201",
|
|
2545
|
-
"steve": "bedrock/1.21.
|
|
2545
|
+
"steve": "bedrock/1.21.70",
|
|
2546
2546
|
"blocksB2J": "bedrock/1.21.80",
|
|
2547
2547
|
"blocksJ2B": "bedrock/1.21.80",
|
|
2548
2548
|
"proto": "bedrock/1.21.90",
|
|
@@ -2564,7 +2564,7 @@
|
|
|
2564
2564
|
"effects": "pc/1.17",
|
|
2565
2565
|
"protocol": "bedrock/1.21.93",
|
|
2566
2566
|
"windows": "bedrock/1.16.201",
|
|
2567
|
-
"steve": "bedrock/1.21.
|
|
2567
|
+
"steve": "bedrock/1.21.70",
|
|
2568
2568
|
"blocksB2J": "bedrock/1.21.80",
|
|
2569
2569
|
"blocksJ2B": "bedrock/1.21.80",
|
|
2570
2570
|
"proto": "bedrock/1.21.93",
|
|
@@ -2586,13 +2586,35 @@
|
|
|
2586
2586
|
"effects": "pc/1.17",
|
|
2587
2587
|
"protocol": "bedrock/1.21.100",
|
|
2588
2588
|
"windows": "bedrock/1.16.201",
|
|
2589
|
-
"steve": "bedrock/1.21.
|
|
2589
|
+
"steve": "bedrock/1.21.70",
|
|
2590
2590
|
"blocksB2J": "bedrock/1.21.80",
|
|
2591
2591
|
"blocksJ2B": "bedrock/1.21.80",
|
|
2592
|
-
"proto": "bedrock/
|
|
2592
|
+
"proto": "bedrock/1.21.100",
|
|
2593
2593
|
"types": "bedrock/latest",
|
|
2594
2594
|
"version": "bedrock/1.21.100",
|
|
2595
2595
|
"language": "bedrock/1.21.70"
|
|
2596
|
+
},
|
|
2597
|
+
"1.21.111": {
|
|
2598
|
+
"blocks": "bedrock/1.21.90",
|
|
2599
|
+
"blockStates": "bedrock/1.21.80",
|
|
2600
|
+
"blockCollisionShapes": "bedrock/1.21.90",
|
|
2601
|
+
"biomes": "bedrock/1.21.60",
|
|
2602
|
+
"entities": "bedrock/1.21.80",
|
|
2603
|
+
"items": "bedrock/1.21.90",
|
|
2604
|
+
"recipes": "bedrock/1.19.10",
|
|
2605
|
+
"instruments": "bedrock/1.17.0",
|
|
2606
|
+
"materials": "pc/1.17",
|
|
2607
|
+
"enchantments": "bedrock/1.19.1",
|
|
2608
|
+
"effects": "pc/1.17",
|
|
2609
|
+
"protocol": "bedrock/1.21.111",
|
|
2610
|
+
"windows": "bedrock/1.16.201",
|
|
2611
|
+
"steve": "bedrock/1.21.70",
|
|
2612
|
+
"blocksB2J": "bedrock/1.21.80",
|
|
2613
|
+
"blocksJ2B": "bedrock/1.21.80",
|
|
2614
|
+
"proto": "bedrock/latest",
|
|
2615
|
+
"types": "bedrock/latest",
|
|
2616
|
+
"version": "bedrock/1.21.111",
|
|
2617
|
+
"language": "bedrock/1.21.70"
|
|
2596
2618
|
}
|
|
2597
2619
|
}
|
|
2598
2620
|
}
|
|
@@ -1,4 +1,60 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "1.21.9",
|
|
4
|
+
"version": 773,
|
|
5
|
+
"dataVersion": 4554,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "1.21",
|
|
8
|
+
"releaseType": "release"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"minecraftVersion": "1.21.9-rc1",
|
|
12
|
+
"version": 1073742097,
|
|
13
|
+
"dataVersion": 4553,
|
|
14
|
+
"usesNetty": true,
|
|
15
|
+
"majorVersion": "1.21",
|
|
16
|
+
"releaseType": "snapshot"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"minecraftVersion": "1.21.9-pre4",
|
|
20
|
+
"version": 1073742096,
|
|
21
|
+
"dataVersion": 4552,
|
|
22
|
+
"usesNetty": true,
|
|
23
|
+
"majorVersion": "1.21",
|
|
24
|
+
"releaseType": "snapshot"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"minecraftVersion": "1.21.9-pre3",
|
|
28
|
+
"version": 1073742095,
|
|
29
|
+
"dataVersion": 4551,
|
|
30
|
+
"usesNetty": true,
|
|
31
|
+
"majorVersion": "1.21",
|
|
32
|
+
"releaseType": "snapshot"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"minecraftVersion": "1.21.9-pre2",
|
|
36
|
+
"version": 1073742094,
|
|
37
|
+
"dataVersion": 4550,
|
|
38
|
+
"usesNetty": true,
|
|
39
|
+
"majorVersion": "1.21",
|
|
40
|
+
"releaseType": "snapshot"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"minecraftVersion": "1.21.9-pre1",
|
|
44
|
+
"version": 1073742093,
|
|
45
|
+
"dataVersion": 4549,
|
|
46
|
+
"usesNetty": true,
|
|
47
|
+
"majorVersion": "1.21",
|
|
48
|
+
"releaseType": "snapshot"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"minecraftVersion": "25w37a",
|
|
52
|
+
"version": 1073742092,
|
|
53
|
+
"dataVersion": 4547,
|
|
54
|
+
"usesNetty": true,
|
|
55
|
+
"majorVersion": "1.21",
|
|
56
|
+
"releaseType": "snapshot"
|
|
57
|
+
},
|
|
2
58
|
{
|
|
3
59
|
"minecraftVersion": "25w36b",
|
|
4
60
|
"version": 1073742091,
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 3.99.1
|
|
2
|
+
* [Fix bedrock 1.21.111 protocol version](https://github.com/PrismarineJS/minecraft-data/commit/c471c4b65e3bfc205ae47f2586aed6c2b226932b) (thanks @extremeheat)
|
|
3
|
+
|
|
4
|
+
## 3.99.0
|
|
5
|
+
* [Add bedrock 1.21.111 protocol data (#1091)](https://github.com/PrismarineJS/minecraft-data/commit/9006e979f31c246107e44180fc18024db152cf70) (thanks @extremeheat)
|
|
6
|
+
* [bedrock: fix steve skin paths in 1.21.70+ (#1084)](https://github.com/PrismarineJS/minecraft-data/commit/449328e7fec760765e4ffa6a9400b9b153a95b62) (thanks @thejfkvis)
|
|
7
|
+
* [Add to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/362b990c64251fec3be3c823b0a2f27fae05f7d4) (thanks @github-actions[bot])
|
|
8
|
+
|
|
1
9
|
## 3.98.0
|
|
2
10
|
* [🎈 Pc1.21.8 (#1070)](https://github.com/PrismarineJS/minecraft-data/commit/7bfe410e80c5332074de6726dec8df6ad8c80ae1) (thanks @extremeheat)
|
|
3
11
|
* [Add 25w36b to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/fdd13b6a4bd46a7a9de1c5de8a7cb7abf715960f) (thanks @github-actions[bot])
|