minecraft-data icon indicating copy to clipboard operation
minecraft-data copied to clipboard

Language independent module providing minecraft data for minecraft clients, servers and libraries.

Results 144 minecraft-data issues
Sort by recently updated
recently updated
newest added

http://prismarinejs.github.io/minecraft-data/ is seriously outdated. It'd be nice if we could have CircleCI automatically rebuild and push the gh-pages branch whenever we push on master.

automatization

A quick start: ```ruby @type integer("i8") def_native("i8"); @type integer("u8") def_native("u8"); @type integer("i16") def_native("i16"); def_native("byte_array"); def_native("string"); namespace("to_server") { def("packet_player_identification") => container { field("protocol_version") => ::u8; field("username") => ::string; field("verification_key") => ::string;...

new data

https://github.com/PrismarineJS/mineflayer/pull/529#issuecomment-311218475 http://minecraft.gamepedia.com/Language https://github.com/PrismarineJS/minecraft-data/issues/184 https://github.com/PrismarineJS/minecraft-data/pull/183

new data

Yes mojang now store the recipes as json. Finally. So we can just take that and convert it to our format (for 1.12 at least)

extraction

http://minecraft.gamepedia.com/Resource_pack https://github.com/PrismarineJS/minecraft-data/issues/78 https://github.com/PrismarineJS/minecraft-data/pull/183 https://github.com/rom1504/minecraft-assets what is resource pack (moddable,etc), what is data, what is asset ?

question

There are block state files available by doing this : ``` bash mkdir /tmp/dminecraft cp ~/.minecraft/versions/1.8.4/1.8.4.jar /tmp/dminecraft cd /tmp/dminecraft && unzip 1.8.4.jar cd /tmp/dminecraft/assets/minecraft/blockstates ``` Example : birch_fence_gate.json : ```...

new data
extraction

Currently in blocks.json only some blocks contain their metadata display name and the such, One such example is stone. Which has multiple metadatas. Yet they are not listed but the...

new data

Clientbound `packet_held_item_slot` : ``` "packet_held_item_slot": [ "container", [ { "name": "slot", "type": "i8" } ] ], ``` Serverbound : ``` "packet_held_item_slot": [ "container", [ { "name": "slotId", "type": "i16" }...