minecraft-data
Version:
Provide easy access to minecraft data in node.js
446 lines • 9.79 kB
JSON
{
"types": {
"u8": "native",
"string": "native",
"i8": "native",
"i16": "native",
"byte_array": "native"
},
"toServer": {
"types": {
"packet_player_identification": [
"container",
[
{
"name": "protocol_version",
"type": "u8"
},
{
"name": "username",
"type": "string"
},
{
"name": "verification_key",
"type": "string"
},
{
"name": "unused",
"type": "i8"
}
]
],
"packet_set_block": [
"container",
[
{
"name": "x",
"type": "i16"
},
{
"name": "y",
"type": "i16"
},
{
"name": "z",
"type": "i16"
},
{
"name": "mode",
"type": "u8"
},
{
"name": "block_type",
"type": "u8"
}
]
],
"packet_position": [
"container",
[
{
"name": "player_id",
"type": "u8"
},
{
"name": "x",
"type": "i16"
},
{
"name": "y",
"type": "i16"
},
{
"name": "z",
"type": "i16"
},
{
"name": "yaw",
"type": "u8"
},
{
"name": "pitch",
"type": "u8"
}
]
],
"packet_message": [
"container",
[
{
"name": "unused",
"type": "u8"
},
{
"name": "message",
"type": "string"
}
]
],
"packet": [
"container",
[
{
"name": "name",
"type": [
"mapper",
{
"type": "u8",
"mappings": {
"0x00": "player_identification",
"0x05": "set_block",
"0x08": "position",
"0x0d": "message"
}
}
]
},
{
"name": "params",
"type": [
"switch",
{
"compareTo": "name",
"fields": {
"player_identification": "packet_player_identification",
"set_block": "packet_set_block",
"position": "packet_position",
"message": "packet_message"
}
}
]
}
]
]
}
},
"toClient": {
"types": {
"packet_server_identification": [
"container",
[
{
"name": "protocol_version",
"type": "u8"
},
{
"name": "server_name",
"type": "string"
},
{
"name": "server_motd",
"type": "string"
},
{
"name": "user_type",
"type": "i8"
}
]
],
"packet_ping": [
"container",
[]
],
"packet_level_initialize": [
"container",
[]
],
"packet_level_data_chunk": [
"container",
[
{
"name": "chunk_data",
"type": "byte_array"
},
{
"name": "percent_complete",
"type": "u8"
}
]
],
"packet_level_finalize": [
"container",
[
{
"name": "x_size",
"type": "i16"
},
{
"name": "y_size",
"type": "i16"
},
{
"name": "z_size",
"type": "i16"
}
]
],
"packet_set_block": [
"container",
[
{
"name": "x",
"type": "i16"
},
{
"name": "y",
"type": "i16"
},
{
"name": "z",
"type": "i16"
},
{
"name": "block_type",
"type": "u8"
}
]
],
"packet_spawn_player": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "player_name",
"type": "string"
},
{
"name": "x",
"type": "i16"
},
{
"name": "y",
"type": "i16"
},
{
"name": "z",
"type": "i16"
},
{
"name": "yaw",
"type": "u8"
},
{
"name": "pitch",
"type": "u8"
}
]
],
"packet_player_teleport": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "x",
"type": "i16"
},
{
"name": "y",
"type": "i16"
},
{
"name": "z",
"type": "i16"
},
{
"name": "yaw",
"type": "u8"
},
{
"name": "pitch",
"type": "u8"
}
]
],
"packet_position_and_orientation_update": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "change_in_x",
"type": "i8"
},
{
"name": "change_in_y",
"type": "i8"
},
{
"name": "change_in_z",
"type": "i8"
},
{
"name": "yaw",
"type": "i8"
},
{
"name": "pitch",
"type": "i8"
}
]
],
"packet_position_update": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "change_in_x",
"type": "i8"
},
{
"name": "change_in_y",
"type": "i8"
},
{
"name": "change_in_z",
"type": "i8"
}
]
],
"packet_orientation_update": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "yaw",
"type": "u8"
},
{
"name": "pitch",
"type": "u8"
}
]
],
"packet_despawn_player": [
"container",
[
{
"name": "player_id",
"type": "i8"
}
]
],
"packet_message": [
"container",
[
{
"name": "player_id",
"type": "i8"
},
{
"name": "message",
"type": "string"
}
]
],
"packet_disconnect_player": [
"container",
[
{
"name": "disconnect_reason",
"type": "string"
}
]
],
"packet_update_user_type": [
"container",
[
{
"name": "user_type",
"type": "u8"
}
]
],
"packet": [
"container",
[
{
"name": "name",
"type": [
"mapper",
{
"type": "u8",
"mappings": {
"0x00": "server_identification",
"0x01": "ping",
"0x02": "level_initialize",
"0x03": "level_data_chunk",
"0x04": "level_finalize",
"0x06": "set_block",
"0x07": "spawn_player",
"0x08": "player_teleport",
"0x09": "position_and_orientation_update",
"0x0a": "position_update",
"0x0b": "orientation_update",
"0x0c": "despawn_player",
"0x0d": "message",
"0x0e": "disconnect_player",
"0x0f": "update_user_type"
}
}
]
},
{
"name": "params",
"type": [
"switch",
{
"compareTo": "name",
"fields": {
"server_identification": "packet_server_identification",
"ping": "packet_ping",
"level_initialize": "packet_level_initialize",
"level_data_chunk": "packet_level_data_chunk",
"level_finalize": "packet_level_finalize",
"set_block": "packet_set_block",
"spawn_player": "packet_spawn_player",
"player_teleport": "packet_player_teleport",
"position_and_orientation_update": "packet_position_and_orientation_update",
"position_update": "packet_position_update",
"orientation_update": "packet_orientation_update",
"despawn_player": "packet_despawn_player",
"message": "packet_message",
"disconnect_player": "packet_disconnect_player",
"update_user_type": "packet_update_user_type"
}
}
]
}
]
]
}
}
}