Advertisement
Skylinerw

15w41 - All command-relevant NBT data

Oct 7th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 83.37 KB | None | 0 0
  1. /****
  2. Differences in NBT data between 15w38 and 15w41.
  3.  
  4. Update (October 9th, 2015): Forgot about boats. Added "Type" to "Boat" entity.
  5.  
  6. ADDITIONS:
  7.  
  8. 1. Added "Passengers" list (compound) tag to "Entity".
  9. 2. Added "RootVehicle" compound tag to "Player", along with "AttachLeast" (long), "AttachMost" (long), and "Entity" (compound).
  10. 3. Added "Type" string tag to "Boat".
  11.  
  12. CHANGES:
  13.  
  14. 1. "Riding" under "Entity" is now deprecated.
  15.  
  16. ****/
  17.  
  18. {
  19.     "entity": [
  20.         {
  21.             "name": "Entity",
  22.             "savegame": false,
  23.             "tags": [
  24.                 {
  25.                     "id": "id",
  26.                     "type": "String"
  27.                 },
  28.                 {
  29.                     "id": "Pos",
  30.                     "type": "List/Double",
  31.                     "keyLimit": 3
  32.                 },
  33.                 {
  34.                     "id": "Motion",
  35.                     "type": "List/Double",
  36.                     "keyLimit": 3
  37.                 },
  38.                 {
  39.                     "id": "Rotation",
  40.                     "type": "List/Float",
  41.                     "keyLimit": 2
  42.                 },
  43.                 {
  44.                     "id": "FallDistance",
  45.                     "type": "Float"
  46.                 },
  47.                 {
  48.                     "id": "Fire",
  49.                     "type": "Short"
  50.                 },
  51.                 {
  52.                     "id": "Air",
  53.                     "type": "Short"
  54.                 },
  55.                 {
  56.                     "id": "OnGround",
  57.                     "type": "Boolean"
  58.                 },
  59.                 {
  60.                     "id": "Dimension",
  61.                     "type": "Integer"
  62.                 },
  63.                 {
  64.                     "id": "Invulnerable",
  65.                     "type": "Boolean"
  66.                 },
  67.                 {
  68.                     "id": "PortalCooldown",
  69.                     "type": "Integer"
  70.                 },
  71.                 {
  72.                     "id": "UUIDLeast",
  73.                     "type": "Long",
  74.                     "forced": true,
  75.                     "helper": "UUIDPair|least"
  76.                 },
  77.                 {
  78.                     "id": "UUIDMost",
  79.                     "type": "Long",
  80.                     "forced": true,
  81.                     "helper": "UUIDPair|most"
  82.                 },
  83.                 {
  84.                     "id": "UUID",
  85.                     "type": "String",
  86.                     "deprecated": true,
  87.                     "helper": "UUID"
  88.                 },
  89.                 {
  90.                     "id": "CustomName",
  91.                     "type": "String"
  92.                 },
  93.                 {
  94.                     "id": "CustomNameVisible",
  95.                     "type": "Boolean"
  96.                 },
  97.                 {
  98.                     "id": "Silent",
  99.                     "type": "Boolean"
  100.                 },
  101.                 {
  102.                     "id": "Tags",
  103.                     "type": "List/String"
  104.                 },
  105.                 {
  106.                     "id": "CommandStats",
  107.                     "type": "Compound",
  108.                     "keyLimit": 10,
  109.                     "data": [
  110.                         {
  111.                             "id": "SuccessCountName",
  112.                             "type": "String",
  113.                             "helper": "SingleTarget"
  114.                         },
  115.                         {
  116.                             "id": "SuccessCountObjective",
  117.                             "type": "String"
  118.                         },
  119.                         {
  120.                             "id": "AffectedBlocksName",
  121.                             "type": "String",
  122.                             "helper": "SingleTarget"
  123.                         },
  124.                         {
  125.                             "id": "AffectedBlocksObjective",
  126.                             "type": "String"
  127.                         },
  128.                         {
  129.                             "id": "AffectedEntitiesName",
  130.                             "type": "String",
  131.                             "helper": "SingleTarget"
  132.                         },
  133.                         {
  134.                             "id": "AffectedEntitiesObjective",
  135.                             "type": "String"
  136.                         },
  137.                         {
  138.                             "id": "AffectedItemsName",
  139.                             "type": "String",
  140.                             "helper": "SingleTarget"
  141.                         },
  142.                         {
  143.                             "id": "AffectedItemsObjective",
  144.                             "type": "String"
  145.                         },
  146.                         {
  147.                             "id": "QueryResultName",
  148.                             "type": "String",
  149.                             "helper": "SingleTarget"
  150.                         },
  151.                         {
  152.                             "id": "QueryResultObjective",
  153.                             "type": "String"
  154.                         }
  155.                     ]
  156.                 },
  157.                 {
  158.                     "id": "Riding",
  159.                     "type": "Compound",
  160.                     "helper": "Riding",
  161.                     "deprecated": true
  162.                 },
  163.                 {
  164.                     "id": "Passengers",
  165.                     "type": "List/Compound",
  166.                     "helper": "Passengers"
  167.                 },
  168.                 {
  169.                     "id": "Glowing",
  170.                     "type": "Boolean"
  171.                 }
  172.             ]
  173.         },
  174.         {
  175.             "name": "LivingBase",
  176.             "parent": "Entity",
  177.             "savegame": false,
  178.             "tags": [
  179.                 {
  180.                     "id": "AbsorptionAmount",
  181.                     "type": "Float"
  182.                 },
  183.                 {
  184.                     "id": "Attributes",
  185.                     "type": "List/Compound",
  186.                     "data": [
  187.                         {
  188.                             "id": "Name",
  189.                             "type": "String"
  190.                         },
  191.                         {
  192.                             "id": "Base",
  193.                             "type": "Double"
  194.                         },
  195.                         {
  196.                             "id": "Modifiers",
  197.                             "type": "List/Compound",
  198.                             "helper": "AttributeModifiers",
  199.                             "data": [
  200.                                 {
  201.                                     "id": "Name",
  202.                                     "type": "String"
  203.                                 },
  204.                                 {
  205.                                     "id": "Amount",
  206.                                     "type": "Double"
  207.                                 },
  208.                                 {
  209.                                     "id": "Operation",
  210.                                     "type": "Integer"
  211.                                 },
  212.                                 {
  213.                                     "id": "UUIDLeast",
  214.                                     "type": "Long"
  215.                                 },
  216.                                 {
  217.                                     "id": "UUIDMost",
  218.                                     "type": "Long"
  219.                                 }
  220.                             ]
  221.                         }
  222.                     ]
  223.                 },
  224.                 {
  225.                     "id": "ActiveEffects",
  226.                     "type": "List/Compound",
  227.                     "data": [
  228.                         {
  229.                             "id": "Id",
  230.                             "type": "Byte"
  231.                         },
  232.                         {
  233.                             "id": "Amplifier",
  234.                             "type": "Byte"
  235.                         },
  236.                         {
  237.                             "id": "Duration",
  238.                             "type": "Integer"
  239.                         },
  240.                         {
  241.                             "id": "Ambient",
  242.                             "type": "Boolean"
  243.                         },
  244.                         {
  245.                             "id": "ShowParticles",
  246.                             "type": "Boolean",
  247.                             "forced": true
  248.                         }
  249.                     ]
  250.                 },
  251.                 {
  252.                     "id": "HealF",
  253.                     "type": "Float"
  254.                 },
  255.                 {
  256.                     "id": "Health",
  257.                     "type": "Float"
  258.                 },
  259.                 {
  260.                     "id": "HurtTime",
  261.                     "type": "Short"
  262.                 },
  263.                 {
  264.                     "id": "DeathTime",
  265.                     "type": "Short"
  266.                 },
  267.                 {
  268.                     "id": "HurtByTimestamp",
  269.                     "type": "Integer"
  270.                 },
  271.                 {
  272.                     "id": "Team",
  273.                     "type": "String"
  274.                 }
  275.             ]
  276.         },
  277.         {
  278.             "name": "Living",
  279.             "parent": "LivingBase",
  280.             "savegame": false,
  281.             "tags": [
  282.                 {
  283.                     "id": "PersistenceRequired",
  284.                     "type": "Boolean"
  285.                 },
  286.                 {
  287.                     "id": "CanPickUpLoot",
  288.                     "type": "Boolean",
  289.                     "forced": true
  290.                 },
  291.                 {
  292.                     "id": "Equipment",
  293.                     "type": "List/Compound",
  294.                     "keyLimit": 5,
  295.                     "deprecated": true,
  296.                     "helper": "ItemNBT"
  297.                 },
  298.                 {
  299.                     "id": "DropChances",
  300.                     "type": "List/Float",
  301.                     "keyLimit": 5,
  302.                     "deprecated": true
  303.                 },
  304.                 {
  305.                     "id": "HandItems",
  306.                     "type": "List/Compound",
  307.                     "keyLimit": 2,
  308.                     "helper": "ItemNBT"
  309.                 },
  310.                 {
  311.                     "id": "ArmorItems",
  312.                     "type": "List/Compound",
  313.                     "keyLimit": 4,
  314.                     "helper": "ItemNBT"
  315.                 },
  316.                 {
  317.                     "id": "HandDropChances",
  318.                     "type": "List/Float",
  319.                     "keyLimit": 2
  320.                 },
  321.                 {
  322.                     "id": "ArmorDropChances",
  323.                     "type": "List/Float",
  324.                     "keyLimit": 4
  325.                 },
  326.                 {
  327.                     "id": "Leashed",
  328.                     "type": "Boolean"
  329.                 },
  330.                 {
  331.                     "id": "Leash",
  332.                     "type": "Compound",
  333.                     "helper": "Leash",
  334.                     "data": [
  335.                         {
  336.                             "id": "X",
  337.                             "type": "Integer"
  338.                         },
  339.                         {
  340.                             "id": "Y",
  341.                             "type": "Integer"
  342.                         },
  343.                         {
  344.                             "id": "Z",
  345.                             "type": "Integer"
  346.                         },
  347.                         {
  348.                             "id": "UUIDLeast",
  349.                             "type": "Long",
  350.                             "forced": true,
  351.                             "helper": "UUIDPair|least"
  352.                         },
  353.                         {
  354.                             "id": "UUIDMost",
  355.                             "type": "Long",
  356.                             "forced": true,
  357.                             "helper": "UUIDPair|most"
  358.                         }
  359.                     ]
  360.                 },
  361.                 {
  362.                     "id": "NoAI",
  363.                     "type": "Boolean"
  364.                 }
  365.             ]
  366.         },
  367.         {
  368.             "name": "Ageable",
  369.             "parent": "Living",
  370.             "savegame": false,
  371.             "tags": [
  372.                 {
  373.                     "id": "Age",
  374.                     "type": "Integer"
  375.                 },
  376.                 {
  377.                     "id": "ForcedAge",
  378.                     "type": "Integer"
  379.                 }
  380.             ]
  381.         },
  382.         {
  383.             "name": "Animal",
  384.             "parent": "Ageable",
  385.             "savegame": false,
  386.             "tags": [
  387.                 {
  388.                     "id": "InLove",
  389.                     "type": "Integer"
  390.                 }
  391.             ]
  392.         },
  393.         {
  394.             "name": "Tameable",
  395.             "parent": "Animal",
  396.             "savegame": false,
  397.             "tags": [
  398.                 {
  399.                     "id": "OwnerUUID",
  400.                     "type": "String",
  401.                     "helper": "UUID"
  402.                 },
  403.                 {
  404.                     "id": "Owner",
  405.                     "type": "String",
  406.                     "deprecated": true
  407.                 },
  408.                 {
  409.                     "id": "Sitting",
  410.                     "type": "Boolean"
  411.                 }
  412.             ]
  413.         },
  414.         {
  415.             "name": "Player",
  416.             "parent": "LivingBase",
  417.             "savegame": false,
  418.             "tags": [
  419.                 {
  420.                     "id": "DataVersion",
  421.                     "type": "Integer"
  422.                 },
  423.                 {
  424.                     "id": "Inventory",
  425.                     "type": "List/Compound",
  426.                     "keyLimit": 40,
  427.                     "helper": "ItemNBT|true"
  428.                 },
  429.                 {
  430.                     "id": "SelectedItemSlot",
  431.                     "type": "Integer"
  432.                 },
  433.                 {
  434.                     "id": "Sleeping",
  435.                     "type": "Boolean"
  436.                 },
  437.                 {
  438.                     "id": "SleepTimer",
  439.                     "type": "Short"
  440.                 },
  441.                 {
  442.                     "id": "XpP",
  443.                     "type": "Float"
  444.                 },
  445.                 {
  446.                     "id": "XpLevel",
  447.                     "type": "Integer"
  448.                 },
  449.                 {
  450.                     "id": "XpTotal",
  451.                     "type": "Integer"
  452.                 },
  453.                 {
  454.                     "id": "XpSeed",
  455.                     "type": "Integer"
  456.                 },
  457.                 {
  458.                     "id": "Score",
  459.                     "type": "Integer"
  460.                 },
  461.                 {
  462.                     "id": "SpawnX",
  463.                     "type": "Integer"
  464.                 },
  465.                 {
  466.                     "id": "SpawnY",
  467.                     "type": "Integer"
  468.                 },
  469.                 {
  470.                     "id": "SpawnZ",
  471.                     "type": "Integer"
  472.                 },
  473.                 {
  474.                     "id": "SpawnForced",
  475.                     "type": "Boolean"
  476.                 },
  477.                 {
  478.                     "id": "EnderItems",
  479.                     "type": "List/Compound",
  480.                     "keyLimit": 27,
  481.                     "helper": "ItemNBT|true"
  482.                 },
  483.                 {
  484.                     "id": "SelectedItem",
  485.                     "type": "Compound",
  486.                     "helper": "ItemNBT"
  487.                 },
  488.                 {
  489.                     "id": "RootVehicle",
  490.                     "type": "Compound",
  491.                     "data": [
  492.                         {
  493.                             "id": "AttachLeast",
  494.                             "type": "Long",
  495.                             "helper": "UUIDPair|least"
  496.                         },
  497.                         {
  498.                             "id": "AttachMost",
  499.                             "type": "Long",
  500.                             "helper": "UUIDPair|most"
  501.                         },
  502.                         {
  503.                             "id": "Entity",
  504.                             "type": "Compound",
  505.                             "helper": "EntityNBT"
  506.                         }
  507.                     ]
  508.                 },
  509.                 {
  510.                     "id": "abilities",
  511.                     "type": "Compound",
  512.                     "data": [
  513.                         {
  514.                             "id": "invulnerable",
  515.                             "type": "Boolean"
  516.                         },
  517.                         {
  518.                             "id": "flying",
  519.                             "type": "Boolean"
  520.                         },
  521.                         {
  522.                             "id": "mayfly",
  523.                             "type": "Boolean"
  524.                         },
  525.                         {
  526.                             "id": "instabuild",
  527.                             "type": "Boolean"
  528.                         },
  529.                         {
  530.                             "id": "mayBuild",
  531.                             "type": "Boolean"
  532.                         },
  533.                         {
  534.                             "id": "flySpeed",
  535.                             "type": "Float"
  536.                         },
  537.                         {
  538.                             "id": "walkSpeed",
  539.                             "type": "Float"
  540.                         }
  541.                     ]
  542.                 }
  543.             ]
  544.         },
  545.         {
  546.             "name": "Throwable",
  547.             "parent": "Entity",
  548.             "savegame": false,
  549.             "tags": [
  550.                 {
  551.                     "id": "xTile",
  552.                     "type": "Short"
  553.                 },
  554.                 {
  555.                     "id": "yTile",
  556.                     "type": "Short"
  557.                 },
  558.                 {
  559.                     "id": "zTile",
  560.                     "type": "Short"
  561.                 },
  562.                 {
  563.                     "id": "inTile",
  564.                     "type": "String"
  565.                 },
  566.                 {
  567.                     "id": "inTile",
  568.                     "deprecated": true,
  569.                     "type": "Byte"
  570.                 },
  571.                 {
  572.                     "id": "shake",
  573.                     "type": "Byte"
  574.                 },
  575.                 {
  576.                     "id": "inGround",
  577.                     "type": "Byte"
  578.                 },
  579.                 {
  580.                     "id": "ownerName",
  581.                     "type": "String",
  582.                     "helper": "UUID"
  583.                 }
  584.             ]
  585.         },
  586.         {
  587.             "name": "Hanging",
  588.             "parent": "Entity",
  589.             "savegame": false,
  590.             "tags": [
  591.                 {
  592.                     "id": "Facing",
  593.                     "type": "Byte"
  594.                 },
  595.                 {
  596.                     "id": "Direction",
  597.                     "deprecated": true,
  598.                     "type": "Byte"
  599.                 },
  600.                 {
  601.                     "id": "Dir",
  602.                     "deprecated": true,
  603.                     "type": "Byte"
  604.                 },
  605.                 {
  606.                     "id": "TileX",
  607.                     "type": "Integer"
  608.                 },
  609.                 {
  610.                     "id": "TileY",
  611.                     "type": "Integer"
  612.                 },
  613.                 {
  614.                     "id": "TileZ",
  615.                     "type": "Integer"
  616.                 }
  617.             ]
  618.         },
  619.         {
  620.             "id": "FireballBase",
  621.             "parent": "Entity",
  622.             "savegame": false,
  623.             "tags": [
  624.                 {
  625.                     "id": "xTile",
  626.                     "type": "Short"
  627.                 },
  628.                 {
  629.                     "id": "yTile",
  630.                     "type": "Short"
  631.                 },
  632.                 {
  633.                     "id": "zTile",
  634.                     "type": "Short"
  635.                 },
  636.                 {
  637.                     "id": "inTile",
  638.                     "type": "String"
  639.                 },
  640.                 {
  641.                     "id": "inTile",
  642.                     "type": "Byte",
  643.                     "deprecated": true
  644.                 },
  645.                 {
  646.                     "id": "inGround",
  647.                     "type": "Byte"
  648.                 },
  649.                 {
  650.                     "id": "direction",
  651.                     "type": "List/Double",
  652.                     "keyLimit": 3
  653.                 },
  654.                 {
  655.                     "id": "life",
  656.                     "type": "Integer"
  657.                 },
  658.                 {
  659.                     "id": "power",
  660.                     "type": "List/Double",
  661.                     "keyLimit": 3
  662.                 }
  663.             ]
  664.         },
  665.         {
  666.             "name": "Minecart",
  667.             "parent": "Entity",
  668.             "savegame": false,
  669.             "tags": [
  670.                 {
  671.                     "id": "CustomDisplayTile",
  672.                     "type": "Boolean"
  673.                 },
  674.                 {
  675.                     "id": "DisplayTile",
  676.                     "type": "String"
  677.                 },
  678.                 {
  679.                     "id": "DisplayTile",
  680.                     "type": "Integer"
  681.                 },
  682.                 {
  683.                     "id": "DisplayData",
  684.                     "type": "Integer"
  685.                 },
  686.                 {
  687.                     "id": "DisplayOffset",
  688.                     "type": "Integer"
  689.                 }
  690.             ]
  691.         },
  692.         {
  693.             "name": "MinecartRideable",
  694.             "id": 42,
  695.             "parent": "Minecart"
  696.         },
  697.         {
  698.             "name": "MinecartFurnace",
  699.             "id": 44,
  700.             "parent": "Minecart",
  701.             "tags": [
  702.                 {
  703.                     "id": "PushX",
  704.                     "type": "Double"
  705.                 },
  706.                 {
  707.                     "id": "PushZ",
  708.                     "type": "Double"
  709.                 },
  710.                 {
  711.                     "id": "Fuel",
  712.                     "type": "Short"
  713.                 }
  714.             ]
  715.         },
  716.         {
  717.             "name": "MinecartChest",
  718.             "id": 43,
  719.             "parent": "Minecart",
  720.             "tags": [
  721.                 {
  722.                     "id": "Items",
  723.                     "type": "List/Compound",
  724.                     "keyLimit": 27,
  725.                     "helper": "ItemNBT|true"
  726.                 }
  727.             ]
  728.         },
  729.         {
  730.             "name": "MinecartHopper",
  731.             "id": 46,
  732.             "parent": "Minecart",
  733.             "tags": [
  734.                 {
  735.                     "id": "Items",
  736.                     "type": "List/Compound",
  737.                     "keyLimit": 5,
  738.                     "helper": "ItemNBT|true"
  739.                 },
  740.                 {
  741.                     "id": "TransferCooldown",
  742.                     "type": "Integer"
  743.                 },
  744.                 {
  745.                     "id": "Enabled",
  746.                     "type": "Boolean"
  747.                 }
  748.             ]
  749.         },
  750.         {
  751.             "name": "MinecartSpawner",
  752.             "id": 47,
  753.             "parent": "Minecart",
  754.             "tags": [
  755.                 {
  756.                     "id": "EntityId",
  757.                     "type": "String",
  758.                     "deprecated": true
  759.                 },
  760.                 {
  761.                     "id": "Delay",
  762.                     "type": "Short"
  763.                 },
  764.                 {
  765.                     "id": "SpawnPotentials",
  766.                     "type": "List/Compound",
  767.                     "data": [
  768.                         {
  769.                             "id": "Type",
  770.                             "type": "String"
  771.                         },
  772.                         {
  773.                             "id": "Weight",
  774.                             "type": "Integer"
  775.                         },
  776.                         {
  777.                             "id": "Properties",
  778.                             "type": "Compound",
  779.                             "helper": "EntityNBT"
  780.                         }
  781.                     ]
  782.                 },
  783.                 {
  784.                     "id": "SpawnData",
  785.                     "type": "Compound",
  786.                     "helper": "EntityNBT",
  787.                     "data": [
  788.                         {
  789.                             "id": "id",
  790.                             "type": "String"
  791.                         }
  792.                     ]
  793.                 },
  794.                 {
  795.                     "id": "MinSpawnDelay",
  796.                     "type": "Short"
  797.                 },
  798.                 {
  799.                     "id": "MaxSpawnDelay",
  800.                     "type": "Short"
  801.                 },
  802.                 {
  803.                     "id": "SpawnCount",
  804.                     "type": "Short"
  805.                 },
  806.                 {
  807.                     "id": "MaxNearbyEntities",
  808.                     "type": "Short"
  809.                 },
  810.                 {
  811.                     "id": "RequiredPlayerRange",
  812.                     "type": "Short"
  813.                 },
  814.                 {
  815.                     "id": "SpawnRange",
  816.                     "type": "Short"
  817.                 }
  818.             ]
  819.         },
  820.         {
  821.             "name": "MinecartTNT",
  822.             "id": 45,
  823.             "parent": "Minecart",
  824.             "tags": [
  825.                 {
  826.                     "id": "TNTFuse",
  827.                     "type": "Integer"
  828.                 }
  829.             ]
  830.         },
  831.         {
  832.             "name": "MinecartCommandBlock",
  833.             "id": 40,
  834.             "parent": "Minecart",
  835.             "tags": [
  836.                 {
  837.                     "id": "Command",
  838.                     "type": "String"
  839.                 },
  840.                 {
  841.                     "id": "SuccessCount",
  842.                     "type": "Integer"
  843.                 },
  844.                 {
  845.                     "id": "TrackOutput",
  846.                     "type": "Boolean",
  847.                     "forced": true
  848.                 },
  849.                 {
  850.                     "id": "LastOutput",
  851.                     "type": "String"
  852.                 }
  853.             ]
  854.         },
  855.         {
  856.             "name": "ShulkerBullet",
  857.             "id": 25,
  858.             "parent": "Entity",
  859.             "tags": [
  860.                 {
  861.                     "id": "Steps",
  862.                     "type": "Integer"
  863.                 },
  864.                 {
  865.                     "id": "TXD",
  866.                     "type": "Double"
  867.                 },
  868.                 {
  869.                     "id": "TXY",
  870.                     "type": "Double"
  871.                 },
  872.                 {
  873.                     "id": "TXZ",
  874.                     "type": "Double"
  875.                 },
  876.                 {
  877.                     "id": "Dir",
  878.                     "type": "Integer"
  879.                 },
  880.                 {
  881.                     "id": "Owner",
  882.                     "type": "Compound",
  883.                     "data": [
  884.                         {
  885.                             "id": "X",
  886.                             "type": "Integer"
  887.                         },
  888.                         {
  889.                             "id": "Y",
  890.                             "type": "Integer"
  891.                         },
  892.                         {
  893.                             "id": "Z",
  894.                             "type": "Integer"
  895.                         },
  896.                         {
  897.                             "id": "L",
  898.                             "type": "Long"
  899.                         },
  900.                         {
  901.                             "id": "M",
  902.                             "type": "Long"
  903.                         }
  904.                     ]
  905.                 },
  906.                 {
  907.                     "id": "Target",
  908.                     "type": "Compound",
  909.                     "data": [
  910.                         {
  911.                             "id": "X",
  912.                             "type": "Integer"
  913.                         },
  914.                         {
  915.                             "id": "Y",
  916.                             "type": "Integer"
  917.                         },
  918.                         {
  919.                             "id": "Z",
  920.                             "type": "Integer"
  921.                         },
  922.                         {
  923.                             "id": "L",
  924.                             "type": "Long"
  925.                         },
  926.                         {
  927.                             "id": "M",
  928.                             "type": "Long"
  929.                         }
  930.                     ]
  931.                 }
  932.             ]
  933.         },
  934.         {
  935.             "name": "LeashKnot",
  936.             "id": 8,
  937.             "parent": "Entity"
  938.         },
  939.         {
  940.             "name": "WitherSkull",
  941.             "id": 19,
  942.             "parent": "FireballBase"
  943.         },
  944.         {
  945.             "name": "SmallFireball",
  946.             "id": 13,
  947.             "parent": "FireballBase"
  948.         },
  949.         {
  950.             "name": "Fireball",
  951.             "id": 12,
  952.             "parent": "FireballBase",
  953.             "tags": [
  954.                 {
  955.                     "id": "ExplosionPower",
  956.                     "type": "Integer"
  957.                 }
  958.             ]
  959.         },
  960.         {
  961.             "name": "DragonFireball",
  962.             "id": 26,
  963.             "parent": "FireballBase"
  964.         },
  965.         {
  966.             "name": "Snowball",
  967.             "id": 11,
  968.             "parent": "Throwable"
  969.         },
  970.         {
  971.             "name": "AreaEffectCloud",
  972.             "id": 3,
  973.             "parent": "Entity",
  974.             "tags": [
  975.                 {
  976.                     "id": "Age",
  977.                     "type": "Integer"
  978.                 },
  979.                 {
  980.                     "id": "Duration",
  981.                     "type": "Integer"
  982.                 },
  983.                 {
  984.                     "id": "WaitTime",
  985.                     "type": "Integer"
  986.                 },
  987.                 {
  988.                     "id": "ReapplicationDelay",
  989.                     "type": "Integer"
  990.                 },
  991.                 {
  992.                     "id": "DurationOnUse",
  993.                     "type": "Float"
  994.                 },
  995.                 {
  996.                     "id": "RadiusOnUse",
  997.                     "type": "Float"
  998.                 },
  999.                 {
  1000.                     "id": "RadiusPerTick",
  1001.                     "type": "Float"
  1002.                 },
  1003.                 {
  1004.                     "id": "Radius",
  1005.                     "type": "Float"
  1006.                 },
  1007.                 {
  1008.                     "id": "OwnerUUIDLeast",
  1009.                     "type": "Long"
  1010.                 },
  1011.                 {
  1012.                     "id": "OwnerUUIDMost",
  1013.                     "type": "Long"
  1014.                 },
  1015.                 {
  1016.                     "id": "Particle",
  1017.                     "type": "String"
  1018.                 },
  1019.                 {
  1020.                     "id": "Color",
  1021.                     "type": "Integer"
  1022.                 },
  1023.                 {
  1024.                     "id": "Effects",
  1025.                     "type": "List/Compound"
  1026.                 }
  1027.             ]
  1028.         },
  1029.         {
  1030.             "name": "ThrownPotion",
  1031.             "id": 16,
  1032.             "parent": "Throwable",
  1033.             "tags": [
  1034.                 {
  1035.                     "id": "Potion",
  1036.                     "type": "Compound",
  1037.                     "helper": "ItemNBT"
  1038.                 },
  1039.                 {
  1040.                     "id": "potionValue",
  1041.                     "type": "Integer",
  1042.                     "deprecated": true
  1043.                 },
  1044.                 {
  1045.                     "id": "Linger",
  1046.                     "type": "Boolean"
  1047.                 }
  1048.             ]
  1049.         },
  1050.         {
  1051.             "name": "ThrownEgg",
  1052.             "id": 7,
  1053.             "parent": "Throwable"
  1054.         },
  1055.         {
  1056.             "name": "Arrow",
  1057.             "id": 10,
  1058.             "parent": "Throwable",
  1059.             "tags": [
  1060.                 {
  1061.                     "id": "life",
  1062.                     "type": "Short"
  1063.                 },
  1064.                 {
  1065.                     "id": "damage",
  1066.                     "type": "Double"
  1067.                 },
  1068.                 {
  1069.                     "id": "pickup",
  1070.                     "type": "Byte"
  1071.                 },
  1072.                 {
  1073.                     "id": "player",
  1074.                     "type": "Boolean",
  1075.                     "deprecated": true
  1076.                 }
  1077.             ]
  1078.         },
  1079.         {
  1080.             "name": "TippedArrow",
  1081.             "id": 23,
  1082.             "parent": "Arrow",
  1083.             "tags": [
  1084.                 {
  1085.                     "id": "Item",
  1086.                     "type": "Compound",
  1087.                     "helper": "ItemNBT"
  1088.                 }
  1089.             ]
  1090.         },
  1091.         {
  1092.             "name": "SpectralArrow",
  1093.             "id": 24,
  1094.             "parent": "Arrow",
  1095.             "tags": [
  1096.                 {
  1097.                     "id": "Duration",
  1098.                     "type": "Integer"
  1099.                 }
  1100.             ]
  1101.         },
  1102.         {
  1103.             "name": "XPOrb",
  1104.             "id": 2,
  1105.             "parent": "Entity",
  1106.             "tags": [
  1107.                 {
  1108.                     "id": "Health",
  1109.                     "type": "Short"
  1110.                 },
  1111.                 {
  1112.                     "id": "Age",
  1113.                     "type": "Short"
  1114.                 },
  1115.                 {
  1116.                     "id": "Value",
  1117.                     "type": "Short"
  1118.                 }
  1119.             ]
  1120.         },
  1121.         {
  1122.             "name": "PrimedTnt",
  1123.             "id": 20,
  1124.             "parent": "Entity",
  1125.             "tags": [
  1126.                 {
  1127.                     "id": "Fuse",
  1128.                     "type": "Short"
  1129.                 }
  1130.             ]
  1131.         },
  1132.         {
  1133.             "name": "Painting",
  1134.             "id": 9,
  1135.             "parent": "Hanging",
  1136.             "tags": [
  1137.                 {
  1138.                     "id": "Motive",
  1139.                     "type": "String"
  1140.                 }
  1141.             ]
  1142.         },
  1143.         {
  1144.             "name": "ItemFrame",
  1145.             "id": 18,
  1146.             "parent": "Hanging",
  1147.             "tags": [
  1148.                 {
  1149.                     "id": "ItemRotation",
  1150.                     "type": "Byte"
  1151.                 },
  1152.                 {
  1153.                     "id": "ItemDropChance",
  1154.                     "type": "Float"
  1155.                 },
  1156.                 {
  1157.                     "id": "Item",
  1158.                     "type": "Compound",
  1159.                     "helper": "ItemNBT"
  1160.                 }
  1161.             ]
  1162.         },
  1163.         {
  1164.             "name": "Item",
  1165.             "id": 1,
  1166.             "parent": "Entity",
  1167.             "tags": [
  1168.                 {
  1169.                     "id": "Health",
  1170.                     "type": "Short"
  1171.                 },
  1172.                 {
  1173.                     "id": "Age",
  1174.                     "type": "Short"
  1175.                 },
  1176.                 {
  1177.                     "id": "PickupDelay",
  1178.                     "type": "Short"
  1179.                 },
  1180.                 {
  1181.                     "id": "Owner",
  1182.                     "type": "String"
  1183.                 },
  1184.                 {
  1185.                     "id": "Thrower",
  1186.                     "type": "String"
  1187.                 },
  1188.                 {
  1189.                     "id": "Item",
  1190.                     "type": "Compound",
  1191.                     "helper": "ItemNBT"
  1192.                 }
  1193.             ]
  1194.         },
  1195.         {
  1196.             "name": "FireworksRocketEntity",
  1197.             "id": 22,
  1198.             "parent": "Entity",
  1199.             "tags": [
  1200.                 {
  1201.                     "id": "Life",
  1202.                     "type": "Integer"
  1203.                 },
  1204.                 {
  1205.                     "id": "LifeTime",
  1206.                     "type": "Integer"
  1207.                 },
  1208.                 {
  1209.                     "id": "FireworksItem",
  1210.                     "type": "Compound",
  1211.                     "helper": "ItemNBT"
  1212.                 }
  1213.             ]
  1214.         },
  1215.         {
  1216.             "name": "FallingSand",
  1217.             "id": 21,
  1218.             "parent": "Entity",
  1219.             "tags": [
  1220.                 {
  1221.                     "id": "Block",
  1222.                     "type": "String"
  1223.                 },
  1224.                 {
  1225.                     "id": "TileID",
  1226.                     "type": "Integer",
  1227.                     "deprecated": true
  1228.                 },
  1229.                 {
  1230.                     "id": "Tile",
  1231.                     "type": "Byte",
  1232.                     "deprecated": true
  1233.                 },
  1234.                 {
  1235.                     "id": "Data",
  1236.                     "type": "Byte"
  1237.                 },
  1238.                 {
  1239.                     "id": "Time",
  1240.                     "type": "Byte"
  1241.                 },
  1242.                 {
  1243.                     "id": "HurtEntities",
  1244.                     "type": "Boolean"
  1245.                 },
  1246.                 {
  1247.                     "id": "FallHurtAmount",
  1248.                     "type": "Float"
  1249.                 },
  1250.                 {
  1251.                     "id": "FallHurtMax",
  1252.                     "type": "Integer"
  1253.                 },
  1254.                 {
  1255.                     "id": "DropItem",
  1256.                     "type": "Boolean"
  1257.                 },
  1258.                 {
  1259.                     "id": "TileEntityData",
  1260.                     "type": "Compound",
  1261.                     "helper": "BlockNBT"
  1262.                 }
  1263.             ]
  1264.         },
  1265.         {
  1266.             "name": "ThrownExpBottle",
  1267.             "id": 17,
  1268.             "parent": "Throwable"
  1269.         },
  1270.         {
  1271.             "name": "ThrownEnderpearl",
  1272.             "id": 14,
  1273.             "parent": "Throwable"
  1274.         },
  1275.         {
  1276.             "name": "EyeOfEnderSignal",
  1277.             "id": 15,
  1278.             "parent": "Entity"
  1279.         },
  1280.         {
  1281.             "name": "EnderCrystal",
  1282.             "id": 200,
  1283.             "parent": "Entity"
  1284.         },
  1285.         {
  1286.             "name": "Boat",
  1287.             "id": 41,
  1288.             "parent": "Entity",
  1289.             "tags": [
  1290.                 {
  1291.                     "id": "Type",
  1292.                     "type": "String",
  1293.                     "helper": "BoatType"
  1294.                 }
  1295.             ]
  1296.         },
  1297.         {
  1298.             "name": "ArmorStand",
  1299.             "id": 30,
  1300.             "parent": "LivingBase",
  1301.             "tags": [
  1302.                 {
  1303.                     "id": "Equipment",
  1304.                     "type": "List/Compound",
  1305.                     "keyLimit": 5,
  1306.                     "deprecated": true,
  1307.                     "helper": "ItemNBT"
  1308.                 },
  1309.                 {
  1310.                     "id": "HandItems",
  1311.                     "type": "List/Compound",
  1312.                     "keyLimit": 2,
  1313.                     "helper": "ItemNBT"
  1314.                 },
  1315.                 {
  1316.                     "id": "ArmorItems",
  1317.                     "type": "List/Compound",
  1318.                     "keyLimit": 4,
  1319.                     "helper": "ItemNBT"
  1320.                 },
  1321.                 {
  1322.                     "id": "Invisible",
  1323.                     "type": "Boolean"
  1324.                 },
  1325.                 {
  1326.                     "id": "Small",
  1327.                     "type": "Boolean"
  1328.                 },
  1329.                 {
  1330.                     "id": "ShowArms",
  1331.                     "type": "Boolean"
  1332.                 },
  1333.                 {
  1334.                     "id": "DisabledSlots",
  1335.                     "type": "Integer"
  1336.                 },
  1337.                 {
  1338.                     "id": "NoGravity",
  1339.                     "type": "Boolean"
  1340.                 },
  1341.                 {
  1342.                     "id": "NoBasePlate",
  1343.                     "type": "Boolean"
  1344.                 },
  1345.                 {
  1346.                     "id": "Marker",
  1347.                     "type": "Boolean"
  1348.                 },
  1349.                 {
  1350.                     "id": "Pose",
  1351.                     "type": "Compound",
  1352.                     "data": [
  1353.                         {
  1354.                             "id": "Head",
  1355.                             "type": "List/Float",
  1356.                             "keyLimit": 3
  1357.                         },
  1358.                         {
  1359.                             "id": "Body",
  1360.                             "type": "List/Float",
  1361.                             "keyLimit": 3
  1362.                         },
  1363.                         {
  1364.                             "id": "LeftArm",
  1365.                             "type": "List/Float",
  1366.                             "keyLimit": 3
  1367.                         },
  1368.                         {
  1369.                             "id": "RightArm",
  1370.                             "type": "List/Float",
  1371.                             "keyLimit": 3
  1372.                         },
  1373.                         {
  1374.                             "id": "LeftLeg",
  1375.                             "type": "List/Float",
  1376.                             "keyLimit": 3
  1377.                         },
  1378.                         {
  1379.                             "id": "RightLeg",
  1380.                             "type": "List/Float",
  1381.                             "keyLimit": 3
  1382.                         }
  1383.                     ]
  1384.                 }
  1385.             ]
  1386.         },
  1387.         {
  1388.             "name": "LightningBolt",
  1389.             "parent": "Entity",
  1390.             "savegame": false
  1391.         },
  1392.         {
  1393.             "name": "EnderDragon",
  1394.             "id": 63,
  1395.             "parent": "Living",
  1396.             "tags": [
  1397.                 {
  1398.                     "id": "DragonPhase",
  1399.                     "type": "Integer"
  1400.                 }
  1401.             ]
  1402.         },
  1403.         {
  1404.             "name": "WitherBoss",
  1405.             "id": 64,
  1406.             "parent": "Living",
  1407.             "tags": [
  1408.                 {
  1409.                     "id": "Invul",
  1410.                     "type": "Integer"
  1411.                 }
  1412.             ]
  1413.         },
  1414.         {
  1415.             "name": "Wolf",
  1416.             "id": 95,
  1417.             "parent": "Tameable",
  1418.             "eggColors": [
  1419.                 14144467,
  1420.                 13545366
  1421.             ],
  1422.             "tags": [
  1423.                 {
  1424.                     "id": "Angry",
  1425.                     "type": "Boolean"
  1426.                 },
  1427.                 {
  1428.                     "id": "CollarColor",
  1429.                     "type": "Byte"
  1430.                 }
  1431.             ]
  1432.         },
  1433.         {
  1434.             "name": "Villager",
  1435.             "id": 120,
  1436.             "parent": "Ageable",
  1437.             "eggColors": [
  1438.                 5651507,
  1439.                 12422002
  1440.             ],
  1441.             "tags": [
  1442.                 {
  1443.                     "id": "Profession",
  1444.                     "type": "Integer"
  1445.                 },
  1446.                 {
  1447.                     "id": "Riches",
  1448.                     "type": "Integer"
  1449.                 },
  1450.                 {
  1451.                     "id": "Career",
  1452.                     "type": "Integer"
  1453.                 },
  1454.                 {
  1455.                     "id": "CareerLevel",
  1456.                     "type": "Integer"
  1457.                 },
  1458.                 {
  1459.                     "id": "Willing",
  1460.                     "type": "Boolean"
  1461.                 },
  1462.                 {
  1463.                     "id": "Offers",
  1464.                     "type": "Compound",
  1465.                     "data": [
  1466.                         {
  1467.                             "id": "Recipes",
  1468.                             "type": "List/Compound",
  1469.                             "helper": "TradeOffers",
  1470.                             "data": [
  1471.                                 {
  1472.                                     "id": "rewardExp",
  1473.                                     "type": "Boolean"
  1474.                                 },
  1475.                                 {
  1476.                                     "id": "uses",
  1477.                                     "type": "Integer"
  1478.                                 },
  1479.                                 {
  1480.                                     "id": "maxUses",
  1481.                                     "type": "Integer"
  1482.                                 },
  1483.                                 {
  1484.                                     "id": "buy",
  1485.                                     "type": "Compound",
  1486.                                     "helper": "ItemNBT|true"
  1487.                                 },
  1488.                                 {
  1489.                                     "id": "buyB",
  1490.                                     "type": "Compound",
  1491.                                     "helper": "ItemNBT"
  1492.                                 },
  1493.                                 {
  1494.                                     "id": "sell",
  1495.                                     "type": "Compound",
  1496.                                     "helper": "ItemNBT"
  1497.                                 }
  1498.                             ]
  1499.                         }
  1500.                     ]
  1501.                 },
  1502.                 {
  1503.                     "id": "Inventory",
  1504.                     "type": "List/Compound",
  1505.                     "helper": "ItemNBT"
  1506.                 }
  1507.             ]
  1508.         },
  1509.         {
  1510.             "name": "Squid",
  1511.             "id": 94,
  1512.             "parent": "Living",
  1513.             "eggColors": [
  1514.                 2243405,
  1515.                 7375001
  1516.             ]
  1517.         },
  1518.         {
  1519.             "name": "Sheep",
  1520.             "id": 91,
  1521.             "parent": "Animal",
  1522.             "eggColors": [
  1523.                 15198183,
  1524.                 16758197
  1525.             ],
  1526.             "tags": [
  1527.                 {
  1528.                     "id": "Sheared",
  1529.                     "type": "Boolean"
  1530.                 },
  1531.                 {
  1532.                     "id": "Color",
  1533.                     "type": "Byte"
  1534.                 }
  1535.             ]
  1536.         },
  1537.         {
  1538.             "name": "Rabbit",
  1539.             "id": 101,
  1540.             "parent": "Animal",
  1541.             "eggColors": [
  1542.                 10051392,
  1543.                 7555121
  1544.             ],
  1545.             "tags": [
  1546.                 {
  1547.                     "id": "RabbitType",
  1548.                     "type": "Integer"
  1549.                 },
  1550.                 {
  1551.                     "id": "MoreCarrotTicks",
  1552.                     "type": "Integer"
  1553.                 }
  1554.             ]
  1555.         },
  1556.         {
  1557.             "name": "Pig",
  1558.             "id": 90,
  1559.             "parent": "Animal",
  1560.             "eggColors": [
  1561.                 15771042,
  1562.                 14377823
  1563.             ],
  1564.             "tags": [
  1565.                 {
  1566.                     "id": "Saddle",
  1567.                     "type": "Boolean"
  1568.                 }
  1569.             ]
  1570.         },
  1571.         {
  1572.             "name": "Ozelot",
  1573.             "id": 98,
  1574.             "parent": "Tameable",
  1575.             "eggColors": [
  1576.                 15720061,
  1577.                 5653556
  1578.             ],
  1579.             "tags": [
  1580.                 {
  1581.                     "id": "CatType",
  1582.                     "type": "Integer"
  1583.                 }
  1584.             ]
  1585.         },
  1586.         {
  1587.             "name": "MushroomCow",
  1588.             "id": 96,
  1589.             "parent": "Cow",
  1590.             "eggColors": [
  1591.                 10489616,
  1592.                 12040119
  1593.             ]
  1594.         },
  1595.         {
  1596.             "name": "EntityHorse",
  1597.             "id": 100,
  1598.             "parent": "Animal",
  1599.             "eggColors": [
  1600.                 12623485,
  1601.                 15656192
  1602.             ],
  1603.             "tags": [
  1604.                 {
  1605.                     "id": "EatingHaystack",
  1606.                     "type": "Boolean"
  1607.                 },
  1608.                 {
  1609.                     "id": "Bred",
  1610.                     "type": "Boolean"
  1611.                 },
  1612.                 {
  1613.                     "id": "ChestedHorse",
  1614.                     "type": "Boolean"
  1615.                 },
  1616.                 {
  1617.                     "id": "HasReproduced",
  1618.                     "type": "Boolean"
  1619.                 },
  1620.                 {
  1621.                     "id": "Type",
  1622.                     "type": "Integer"
  1623.                 },
  1624.                 {
  1625.                     "id": "Variant",
  1626.                     "type": "Integer"
  1627.                 },
  1628.                 {
  1629.                     "id": "Temper",
  1630.                     "type": "Integer"
  1631.                 },
  1632.                 {
  1633.                     "id": "Tame",
  1634.                     "type": "Boolean"
  1635.                 },
  1636.                 {
  1637.                     "id": "OwnerUUID",
  1638.                     "type": "String",
  1639.                     "helper": "UUID"
  1640.                 },
  1641.                 {
  1642.                     "id": "Owner",
  1643.                     "type": "String",
  1644.                     "deprecated": true
  1645.                 },
  1646.                 {
  1647.                     "id": "Items",
  1648.                     "type": "List/Compound",
  1649.                     "keyLimit": 17,
  1650.                     "helper": "ItemNBT|true"
  1651.                 },
  1652.                 {
  1653.                     "id": "ArmorItem",
  1654.                     "type": "Compound",
  1655.                     "helper": "ItemNBT"
  1656.                 },
  1657.                 {
  1658.                     "id": "SaddleItem",
  1659.                     "type": "Compound",
  1660.                     "helper": "ItemNBT"
  1661.                 },
  1662.                 {
  1663.                     "id": "Saddle",
  1664.                     "type": "Boolean",
  1665.                     "deprecated": true
  1666.                 },
  1667.                 {
  1668.                     "id": "SkeletonTrap",
  1669.                     "type": "Boolean"
  1670.                 },
  1671.                 {
  1672.                     "id": "SkeletonTrapTime",
  1673.                     "type": "Integer"
  1674.                 }
  1675.             ]
  1676.         },
  1677.         {
  1678.             "name": "Cow",
  1679.             "id": 92,
  1680.             "parent": "Animal",
  1681.             "eggColors": [
  1682.                 4470310,
  1683.                 10592673
  1684.             ]
  1685.         },
  1686.         {
  1687.             "name": "Chicken",
  1688.             "id": 93,
  1689.             "parent": "Animal",
  1690.             "eggColors": [
  1691.                 10592673,
  1692.                 16711680
  1693.             ],
  1694.             "tags": [
  1695.                 {
  1696.                     "id": "IsChickenJockey",
  1697.                     "type": "Boolean"
  1698.                 },
  1699.                 {
  1700.                     "id": "EggLayTime",
  1701.                     "type": "Integer"
  1702.                 }
  1703.             ]
  1704.         },
  1705.         {
  1706.             "name": "Bat",
  1707.             "id": 65,
  1708.             "parent": "Living",
  1709.             "eggColors": [
  1710.                 4996656,
  1711.                 986895
  1712.             ],
  1713.             "tags": [
  1714.                 {
  1715.                     "id": "BatFlags",
  1716.                     "type": "Byte"
  1717.                 }
  1718.             ]
  1719.         },
  1720.         {
  1721.             "name": "Zombie",
  1722.             "id": 54,
  1723.             "parent": "Living",
  1724.             "eggColors": [
  1725.                 44975,
  1726.                 7969893
  1727.             ],
  1728.             "tags": [
  1729.                 {
  1730.                     "id": "IsBaby",
  1731.                     "type": "Boolean"
  1732.                 },
  1733.                 {
  1734.                     "id": "IsVillager",
  1735.                     "type": "Boolean"
  1736.                 },
  1737.                 {
  1738.                     "id": "ConversionTime",
  1739.                     "type": "Integer"
  1740.                 },
  1741.                 {
  1742.                     "id": "CanBreakDoors",
  1743.                     "type": "Boolean"
  1744.                 }
  1745.             ]
  1746.         },
  1747.         {
  1748.             "name": "Witch",
  1749.             "id": 66,
  1750.             "parent": "Living",
  1751.             "eggColors": [
  1752.                 3407872,
  1753.                 5349438
  1754.             ]
  1755.         },
  1756.         {
  1757.             "name": "Spider",
  1758.             "id": 52,
  1759.             "parent": "Living",
  1760.             "eggColors": [
  1761.                 3419431,
  1762.                 11013646
  1763.             ]
  1764.         },
  1765.         {
  1766.             "name": "SnowMan",
  1767.             "id": 97,
  1768.             "parent": "Living"
  1769.         },
  1770.         {
  1771.             "name": "Shulker",
  1772.             "id": 69,
  1773.             "parent": "SnowMan",
  1774.             "eggColors": [
  1775.                 9725844,
  1776.                 5060690
  1777.             ],
  1778.             "tags": [
  1779.                 {
  1780.                     "id": "Peek",
  1781.                     "type": "Byte"
  1782.                 },
  1783.                 {
  1784.                     "id": "AttachFace",
  1785.                     "type": "Byte"
  1786.                 },
  1787.                 {
  1788.                     "id": "APX",
  1789.                     "type": "Integer"
  1790.                 },
  1791.                 {
  1792.                     "id": "APY",
  1793.                     "type": "Integer"
  1794.                 },
  1795.                 {
  1796.                     "id": "APZ",
  1797.                     "type": "Integer"
  1798.                 }
  1799.             ]
  1800.         },
  1801.         {
  1802.             "name": "Slime",
  1803.             "id": 55,
  1804.             "parent": "Living",
  1805.             "eggColors": [
  1806.                 5349438,
  1807.                 8306542
  1808.             ],
  1809.             "tags": [
  1810.                 {
  1811.                     "id": "Size",
  1812.                     "type": "Integer"
  1813.                 },
  1814.                 {
  1815.                     "id": "wasOnGround",
  1816.                     "type": "Boolean"
  1817.                 }
  1818.             ]
  1819.         },
  1820.         {
  1821.             "name": "Skeleton",
  1822.             "id": 51,
  1823.             "parent": "Living",
  1824.             "eggColors": [
  1825.                 12698049,
  1826.                 4802889
  1827.             ],
  1828.             "tags": [
  1829.                 {
  1830.                     "id": "SkeletonType",
  1831.                     "type": "Byte"
  1832.                 }
  1833.             ]
  1834.         },
  1835.         {
  1836.             "name": "Silverfish",
  1837.             "id": 60,
  1838.             "parent": "Living",
  1839.             "eggColors": [
  1840.                 7237230,
  1841.                 3158064
  1842.             ]
  1843.         },
  1844.         {
  1845.             "name": "PigZombie",
  1846.             "id": 57,
  1847.             "parent": "Zombie",
  1848.             "eggColors": [
  1849.                 15373203,
  1850.                 5009705
  1851.             ],
  1852.             "tags": [
  1853.                 {
  1854.                     "id": "Anger",
  1855.                     "type": "Short"
  1856.                 },
  1857.                 {
  1858.                     "id": "HurtBy",
  1859.                     "type": "String"
  1860.                 }
  1861.             ]
  1862.         },
  1863.         {
  1864.             "name": "LavaSlime",
  1865.             "id": 62,
  1866.             "parent": "Slime",
  1867.             "eggColors": [
  1868.                 3407872,
  1869.                 16579584
  1870.             ]
  1871.         },
  1872.         {
  1873.             "name": "VillagerGolem",
  1874.             "id": 99,
  1875.             "parent": "Living",
  1876.             "tags": [
  1877.                 {
  1878.                     "id": "PlayerCreated",
  1879.                     "type": "Boolean"
  1880.                 }
  1881.             ]
  1882.         },
  1883.         {
  1884.             "name": "Guardian",
  1885.             "id": 68,
  1886.             "parent": "Living",
  1887.             "eggColors": [
  1888.                 5931634,
  1889.                 15826224
  1890.             ],
  1891.             "tags": [
  1892.                 {
  1893.                     "id": "Elder",
  1894.                     "type": "Boolean"
  1895.                 }
  1896.             ]
  1897.         },
  1898.         {
  1899.             "name": "Giant",
  1900.             "id": 53,
  1901.             "parent": "Living"
  1902.         },
  1903.         {
  1904.             "name": "Ghast",
  1905.             "id": 56,
  1906.             "parent": "Living",
  1907.             "eggColors": [
  1908.                 16382457,
  1909.                 12369084
  1910.             ],
  1911.             "tags": [
  1912.                 {
  1913.                     "id": "ExplosionPower",
  1914.                     "type": "Integer"
  1915.                 }
  1916.             ]
  1917.         },
  1918.         {
  1919.             "name": "Endermite",
  1920.             "id": 67,
  1921.             "parent": "Living",
  1922.             "eggColors": [
  1923.                 1447446,
  1924.                 7237230
  1925.             ],
  1926.             "tags": [
  1927.                 {
  1928.                     "id": "Lifetime",
  1929.                     "type": "Integer"
  1930.                 },
  1931.                 {
  1932.                     "id": "PlayerSpawned",
  1933.                     "type": "Boolean"
  1934.                 }
  1935.             ]
  1936.         },
  1937.         {
  1938.             "name": "Enderman",
  1939.             "id": 58,
  1940.             "parent": "Living",
  1941.             "eggColors": [
  1942.                 1447446,
  1943.                 0
  1944.             ],
  1945.             "tags": [
  1946.                 {
  1947.                     "id": "carried",
  1948.                     "type": "String"
  1949.                 },
  1950.                 {
  1951.                     "id": "carried",
  1952.                     "type": "Short",
  1953.                     "deprecated": true
  1954.                 },
  1955.                 {
  1956.                     "id": "carriedData",
  1957.                     "type": "Short"
  1958.                 }
  1959.             ]
  1960.         },
  1961.         {
  1962.             "name": "Creeper",
  1963.             "id": 50,
  1964.             "parent": "Living",
  1965.             "eggColors": [
  1966.                 894731,
  1967.                 0
  1968.             ],
  1969.             "tags": [
  1970.                 {
  1971.                     "id": "Fuse",
  1972.                     "type": "Short"
  1973.                 },
  1974.                 {
  1975.                     "id": "ExplosionRadius",
  1976.                     "type": "Byte"
  1977.                 },
  1978.                 {
  1979.                     "id": "ignited",
  1980.                     "type": "Boolean"
  1981.                 },
  1982.                 {
  1983.                     "id": "powered",
  1984.                     "type": "Boolean"
  1985.                 }
  1986.             ]
  1987.         },
  1988.         {
  1989.             "name": "CaveSpider",
  1990.             "id": 59,
  1991.             "parent": "Spider",
  1992.             "eggColors": [
  1993.                 803406,
  1994.                 11013646
  1995.             ]
  1996.         },
  1997.         {
  1998.             "name": "Blaze",
  1999.             "id": 61,
  2000.             "parent": "Living",
  2001.             "eggColors": [
  2002.                 16167425,
  2003.                 16775294
  2004.             ]
  2005.         }
  2006.     ],
  2007.     "block": [
  2008.         {
  2009.             "id": "TileEntity",
  2010.             "tags": [
  2011.                 {
  2012.                     "id": "id",
  2013.                     "type": "String"
  2014.                 },
  2015.                 {
  2016.                     "id": "x",
  2017.                     "type": "Integer"
  2018.                 },
  2019.                 {
  2020.                     "id": "y",
  2021.                     "type": "Integer"
  2022.                 },
  2023.                 {
  2024.                     "id": "z",
  2025.                     "type": "Integer"
  2026.                 }
  2027.             ]
  2028.         },
  2029.         {
  2030.             "id": "Lockable",
  2031.             "parent": "TileEntity",
  2032.             "tags": [
  2033.                 {
  2034.                     "id": "Lock",
  2035.                     "type": "String"
  2036.                 }
  2037.             ]
  2038.         },
  2039.         {
  2040.             "id": "Structure",
  2041.             "parent": "TileEntity",
  2042.             "tags": [
  2043.                 {
  2044.                     "id": "name",
  2045.                     "type": "String"
  2046.                 },
  2047.                 {
  2048.                     "id": "author",
  2049.                     "type": "String"
  2050.                 },
  2051.                 {
  2052.                     "id": "metadata",
  2053.                     "type": "String"
  2054.                 },
  2055.                 {
  2056.                     "id": "posX",
  2057.                     "type": "Integer"
  2058.                 },
  2059.                 {
  2060.                     "id": "posY",
  2061.                     "type": "Integer"
  2062.                 },
  2063.                 {
  2064.                     "id": "posZ",
  2065.                     "type": "Integer"
  2066.                 },
  2067.                 {
  2068.                     "id": "sizeX",
  2069.                     "type": "Integer"
  2070.                 },
  2071.                 {
  2072.                     "id": "sizeY",
  2073.                     "type": "Integer"
  2074.                 },
  2075.                 {
  2076.                     "id": "sizeZ",
  2077.                     "type": "Integer"
  2078.                 },
  2079.                 {
  2080.                     "id": "mode",
  2081.                     "type": "String"
  2082.                 },
  2083.                 {
  2084.                     "id": "mirror",
  2085.                     "type": "String"
  2086.                 },
  2087.                 {
  2088.                     "id": "rotation",
  2089.                     "type": "String"
  2090.                 },
  2091.                 {
  2092.                     "id": "ignoreEntities",
  2093.                     "type": "Boolean"
  2094.                 }
  2095.             ]
  2096.         },
  2097.         {
  2098.             "id": "Skull",
  2099.             "parent": "TileEntity",
  2100.             "tags": [
  2101.                 {
  2102.                     "id": "SkullType",
  2103.                     "type": "Byte"
  2104.                 },
  2105.                 {
  2106.                     "id": "Rot",
  2107.                     "type": "Byte"
  2108.                 },
  2109.                 {
  2110.                     "id": "ExtraType",
  2111.                     "type": "String",
  2112.                     "deprecated": true
  2113.                 },
  2114.                 {
  2115.                     "id": "Owner",
  2116.                     "type": "Compound",
  2117.                     "data": [
  2118.                         {
  2119.                             "id": "Properties",
  2120.                             "type": "Compound",
  2121.                             "data": [
  2122.                                 {
  2123.                                     "id": "textures",
  2124.                                     "type": "List/Compound",
  2125.                                     "data": [
  2126.                                         {
  2127.                                             "id": "Signature",
  2128.                                             "type": "String"
  2129.                                         },
  2130.                                         {
  2131.                                             "id": "Value",
  2132.                                             "type": "String"
  2133.                                         }
  2134.                                     ]
  2135.                                 }
  2136.                             ]
  2137.                         }
  2138.                     ]
  2139.                 }
  2140.             ]
  2141.         },
  2142.         {
  2143.             "id": "Sign",
  2144.             "parent": "TileEntity",
  2145.             "tags": [
  2146.                 {
  2147.                     "id": "Text1",
  2148.                     "type": "String"
  2149.                 },
  2150.                 {
  2151.                     "id": "Text2",
  2152.                     "type": "String"
  2153.                 },
  2154.                 {
  2155.                     "id": "Text3",
  2156.                     "type": "String"
  2157.                 },
  2158.                 {
  2159.                     "id": "Text4",
  2160.                     "type": "String"
  2161.                 }
  2162.             ]
  2163.         },
  2164.         {
  2165.             "id": "Piston",
  2166.             "parent": "TileEntity",
  2167.             "tags": [
  2168.                 {
  2169.                     "id": "blockId",
  2170.                     "type": "Integer"
  2171.                 },
  2172.                 {
  2173.                     "id": "blockData",
  2174.                     "type": "Integer"
  2175.                 },
  2176.                 {
  2177.                     "id": "facing",
  2178.                     "type": "Integer"
  2179.                 },
  2180.                 {
  2181.                     "id": "progress",
  2182.                     "type": "Float"
  2183.                 },
  2184.                 {
  2185.                     "id": "extending",
  2186.                     "type": "Boolean"
  2187.                 }
  2188.             ]
  2189.         },
  2190.         {
  2191.             "id": "Music",
  2192.             "parent": "TileEntity",
  2193.             "tags": [
  2194.                 {
  2195.                     "id": "note",
  2196.                     "type": "Byte"
  2197.                 },
  2198.                 {
  2199.                     "id": "powered",
  2200.                     "type": "Boolean"
  2201.                 }
  2202.             ]
  2203.         },
  2204.         {
  2205.             "id": "MobSpawner",
  2206.             "parent": "TileEntity",
  2207.             "tags": [
  2208.                 {
  2209.                     "id": "EntityId",
  2210.                     "type": "String"
  2211.                 },
  2212.                 {
  2213.                     "id": "Delay",
  2214.                     "type": "Short"
  2215.                 },
  2216.                 {
  2217.                     "id": "SpawnPotentials",
  2218.                     "type": "List/Compound",
  2219.                     "data": [
  2220.                         {
  2221.                             "id": "Type",
  2222.                             "type": "String"
  2223.                         },
  2224.                         {
  2225.                             "id": "Weight",
  2226.                             "type": "Integer"
  2227.                         },
  2228.                         {
  2229.                             "id": "Properties",
  2230.                             "type": "Compound",
  2231.                             "helper": "EntityNBT"
  2232.                         }
  2233.                     ]
  2234.                 },
  2235.                 {
  2236.                     "id": "SpawnData",
  2237.                     "type": "Compound",
  2238.                     "helper": "EntityNBT"
  2239.                 },
  2240.                 {
  2241.                     "id": "MinSpawnDelay",
  2242.                     "type": "Short"
  2243.                 },
  2244.                 {
  2245.                     "id": "MaxSpawnDelay",
  2246.                     "type": "Short"
  2247.                 },
  2248.                 {
  2249.                     "id": "SpawnCount",
  2250.                     "type": "Short"
  2251.                 },
  2252.                 {
  2253.                     "id": "MaxNearbyEntities",
  2254.                     "type": "Short"
  2255.                 },
  2256.                 {
  2257.                     "id": "RequiredPlayerRange",
  2258.                     "type": "Short"
  2259.                 },
  2260.                 {
  2261.                     "id": "SpawnRange",
  2262.                     "type": "Short"
  2263.                 }
  2264.             ]
  2265.         },
  2266.         {
  2267.             "id": "Jukebox",
  2268.             "parent": "TileEntity",
  2269.             "tags": [
  2270.                 {
  2271.                     "id": "RecordItem",
  2272.                     "type": "Compound",
  2273.                     "helper": "ItemNBT"
  2274.                 },
  2275.                 {
  2276.                     "id": "Record",
  2277.                     "type": "Integer",
  2278.                     "deprecated": true
  2279.                 }
  2280.             ]
  2281.         },
  2282.         {
  2283.             "id": "Hopper",
  2284.             "parent": "Lockable",
  2285.             "tags": [
  2286.                 {
  2287.                     "id": "CustomName",
  2288.                     "type": "String"
  2289.                 },
  2290.                 {
  2291.                     "id": "Items",
  2292.                     "type": "List/Compound",
  2293.                     "keyLimit": 5,
  2294.                     "helper": "ItemNBT|true"
  2295.                 },
  2296.                 {
  2297.                     "id": "TransferCooldown",
  2298.                     "type": "Integer"
  2299.                 }
  2300.             ]
  2301.         },
  2302.         {
  2303.             "id": "Furnace",
  2304.             "parent": "Lockable",
  2305.             "tags": [
  2306.                 {
  2307.                     "id": "CustomName",
  2308.                     "type": "String"
  2309.                 },
  2310.                 {
  2311.                     "id": "BurnTime",
  2312.                     "type": "Short"
  2313.                 },
  2314.                 {
  2315.                     "id": "CookTime",
  2316.                     "type": "Short"
  2317.                 },
  2318.                 {
  2319.                     "id": "CookTimeTotal",
  2320.                     "type": "Short"
  2321.                 },
  2322.                 {
  2323.                     "id": "Items",
  2324.                     "type": "List/Compound",
  2325.                     "keyLimit": 3,
  2326.                     "helper": "ItemNBT|true"
  2327.                 }
  2328.             ]
  2329.         },
  2330.         {
  2331.             "id": "FlowerPot",
  2332.             "parent": "TileEntity",
  2333.             "tags": [
  2334.                 {
  2335.                     "id": "Item",
  2336.                     "type": "String"
  2337.                 },
  2338.                 {
  2339.                     "id": "Item",
  2340.                     "type": "Short",
  2341.                     "deprecated": true
  2342.                 },
  2343.                 {
  2344.                     "id": "Data",
  2345.                     "type": "Integer"
  2346.                 }
  2347.             ]
  2348.         },
  2349.         {
  2350.             "id": "AirPortal",
  2351.             "parent": "TileEntity"
  2352.         },
  2353.         {
  2354.             "id": "EnderChest",
  2355.             "parent": "TileEntity"
  2356.         },
  2357.         {
  2358.             "id": "EndGateway",
  2359.             "parent": "TileEntity",
  2360.             "tags": [
  2361.                 {
  2362.                     "id": "Age",
  2363.                     "type": "Long"
  2364.                 },
  2365.                 {
  2366.                     "id": "ExactTeleport",
  2367.                     "type": "Boolean"
  2368.                 },
  2369.                 {
  2370.                     "id": "ExitPortal",
  2371.                     "type": "Compound",
  2372.                     "data": [
  2373.                         {
  2374.                             "id": "X",
  2375.                             "type": "Integer"
  2376.                         },
  2377.                         {
  2378.                             "id": "Y",
  2379.                             "type": "Integer"
  2380.                         },
  2381.                         {
  2382.                             "id": "Z",
  2383.                             "type": "Integer"
  2384.                         }
  2385.                     ]
  2386.                 }
  2387.             ]
  2388.         },
  2389.         {
  2390.             "id": "EnchantTable",
  2391.             "parent": "TileEntity",
  2392.             "tags": [
  2393.                 {
  2394.                     "id": "CustomName",
  2395.                     "type": "String"
  2396.                 }
  2397.             ]
  2398.         },
  2399.         {
  2400.             "id": "Dropper",
  2401.             "parent": "Trap"
  2402.         },
  2403.         {
  2404.             "id": "Trap",
  2405.             "parent": "Lockable",
  2406.             "tags": [
  2407.                 {
  2408.                     "id": "CustomName",
  2409.                     "type": "String"
  2410.                 },
  2411.                 {
  2412.                     "id": "Items",
  2413.                     "type": "List/Compound",
  2414.                     "keyLimit": 9,
  2415.                     "helper": "ItemNBT|true"
  2416.                 }
  2417.             ]
  2418.         },
  2419.         {
  2420.             "id": "DLDetector",
  2421.             "parent": "TileEntity"
  2422.         },
  2423.         {
  2424.             "id": "Comparator",
  2425.             "parent": "TileEntity",
  2426.             "tags": [
  2427.                 {
  2428.                     "id": "OutputSignal",
  2429.                     "type": "Integer"
  2430.                 }
  2431.             ]
  2432.         },
  2433.         {
  2434.             "id": "Control",
  2435.             "parent": "TileEntity",
  2436.             "tags": [
  2437.                 {
  2438.                     "id": "CustomName",
  2439.                     "type": "String"
  2440.                 },
  2441.                 {
  2442.                     "id": "Command",
  2443.                     "type": "String"
  2444.                 },
  2445.                 {
  2446.                     "id": "SuccessCount",
  2447.                     "type": "Integer"
  2448.                 },
  2449.                 {
  2450.                     "id": "TrackOutput",
  2451.                     "type": "Boolean",
  2452.                     "forced": true
  2453.                 },
  2454.                 {
  2455.                     "id": "LastOutput",
  2456.                     "type": "String"
  2457.                 },
  2458.                 {
  2459.                     "id": "powered",
  2460.                     "type": "Boolean"
  2461.                 },
  2462.                 {
  2463.                     "id": "conditional",
  2464.                     "type": "Boolean"
  2465.                 }
  2466.             ]
  2467.         },
  2468.         {
  2469.             "id": "Chest",
  2470.             "parent": "Lockable",
  2471.             "tags": [
  2472.                 {
  2473.                     "id": "CustomName",
  2474.                     "type": "String"
  2475.                 },
  2476.                 {
  2477.                     "id": "Items",
  2478.                     "type": "List/Compound",
  2479.                     "keyLimit": 27,
  2480.                     "helper": "ItemNBT|true"
  2481.                 }
  2482.             ]
  2483.         },
  2484.         {
  2485.             "id": "Cauldron",
  2486.             "parent": "Lockable",
  2487.             "tags": [
  2488.                 {
  2489.                     "id": "CustomName",
  2490.                     "type": "String"
  2491.                 },
  2492.                 {
  2493.                     "id": "BrewTime",
  2494.                     "type": "Short"
  2495.                 },
  2496.                 {
  2497.                     "id": "Items",
  2498.                     "type": "List/Compound",
  2499.                     "keyLimit": 4,
  2500.                     "helper": "ItemNBT|true"
  2501.                 }
  2502.             ]
  2503.         },
  2504.         {
  2505.             "id": "Beacon",
  2506.             "parent": "Lockable",
  2507.             "tags": [
  2508.                 {
  2509.                     "id": "Primary",
  2510.                     "type": "Integer"
  2511.                 },
  2512.                 {
  2513.                     "id": "Secondary",
  2514.                     "type": "Integer"
  2515.                 },
  2516.                 {
  2517.                     "id": "Levels",
  2518.                     "type": "Integer"
  2519.                 }
  2520.             ]
  2521.         },
  2522.         {
  2523.             "id": "Banner",
  2524.             "parent": "TileEntity",
  2525.             "tags": [
  2526.                 {
  2527.                     "id": "Base",
  2528.                     "type": "Integer"
  2529.                 },
  2530.                 {
  2531.                     "id": "Patterns",
  2532.                     "type": "List/Compound",
  2533.                     "data": [
  2534.                         {
  2535.                             "id": "Pattern",
  2536.                             "type": "String"
  2537.                         },
  2538.                         {
  2539.                             "id": "Color",
  2540.                             "type": "Integer"
  2541.                         }
  2542.                     ]
  2543.                 }
  2544.             ]
  2545.         }
  2546.     ],
  2547.     "item": [
  2548.         {
  2549.             "id": "Item",
  2550.             "tags": [
  2551.                 {
  2552.                     "id": "id",
  2553.                     "type": "String"
  2554.                 },
  2555.                 {
  2556.                     "id": "id",
  2557.                     "type": "Short",
  2558.                     "deprecated": true
  2559.                 },
  2560.                 {
  2561.                     "id": "Damage",
  2562.                     "type": "Short"
  2563.                 },
  2564.                 {
  2565.                     "id": "Count",
  2566.                     "type": "Byte"
  2567.                 },
  2568.                 {
  2569.                     "id": "tag",
  2570.                     "type": "Compound",
  2571.                     "data": [
  2572.                         {
  2573.                             "id": "Potion",
  2574.                             "type": "String"
  2575.                         },
  2576.                         {
  2577.                             "id": "Unbreakable",
  2578.                             "type": "Boolean"
  2579.                         },
  2580.                         {
  2581.                             "id": "CanDestroy",
  2582.                             "type": "List/String"
  2583.                         },
  2584.                         {
  2585.                             "id": "CanPlaceOn",
  2586.                             "type": "List/String"
  2587.                         },
  2588.                         {
  2589.                             "id": "BlockEntityTag",
  2590.                             "type": "Compound"
  2591.                         },
  2592.                         {
  2593.                             "id": "EntityTag",
  2594.                             "type": "Compound"
  2595.                         },
  2596.                         {
  2597.                             "id": "ench",
  2598.                             "type": "List/Compound",
  2599.                             "data": [
  2600.                                 {
  2601.                                     "id": "id",
  2602.                                     "type": "Short"
  2603.                                 },
  2604.                                 {
  2605.                                     "id": "lvl",
  2606.                                     "type": "Short"
  2607.                                 }
  2608.                             ]
  2609.                         },
  2610.                         {
  2611.                             "id": "StoredEnchantments",
  2612.                             "type": "List/Compound",
  2613.                             "data": [
  2614.                                 {
  2615.                                     "id": "id",
  2616.                                     "type": "Short"
  2617.                                 },
  2618.                                 {
  2619.                                     "id": "lvl",
  2620.                                     "type": "Short"
  2621.                                 }
  2622.                             ]
  2623.                         },
  2624.                         {
  2625.                             "id": "RepairCost",
  2626.                             "type": "Integer"
  2627.                         },
  2628.                         {
  2629.                             "id": "AttributeModifiers",
  2630.                             "type": "List/Compound",
  2631.                             "data": [
  2632.                                 {
  2633.                                     "id": "AttributeName",
  2634.                                     "type": "String"
  2635.                                 },
  2636.                                 {
  2637.                                     "id": "Name",
  2638.                                     "type": "String"
  2639.                                 },
  2640.                                 {
  2641.                                     "id": "Amount",
  2642.                                     "type": "Double"
  2643.                                 },
  2644.                                 {
  2645.                                     "id": "Operation",
  2646.                                     "type": "Integer"
  2647.                                 },
  2648.                                 {
  2649.                                     "id": "UUIDLeast",
  2650.                                     "type": "Long"
  2651.                                 },
  2652.                                 {
  2653.                                     "id": "UUIDMost",
  2654.                                     "type": "Long"
  2655.                                 }
  2656.                             ]
  2657.                         },
  2658.                         {
  2659.                             "id": "CustomPotionEffects",
  2660.                             "type": "List/Compound",
  2661.                             "data": [
  2662.                                 {
  2663.                                     "id": "Id",
  2664.                                     "type": "Byte"
  2665.                                 },
  2666.                                 {
  2667.                                     "id": "Amplifier",
  2668.                                     "type": "Byte"
  2669.                                 },
  2670.                                 {
  2671.                                     "id": "Duration",
  2672.                                     "type": "Integer"
  2673.                                 },
  2674.                                 {
  2675.                                     "id": "Ambient",
  2676.                                     "type": "Boolean"
  2677.                                 },
  2678.                                 {
  2679.                                     "id": "ShowParticles",
  2680.                                     "type": "Boolean"
  2681.                                 }
  2682.                             ]
  2683.                         },
  2684.                         {
  2685.                             "id": "display",
  2686.                             "type": "Compound",
  2687.                             "data": [
  2688.                                 {
  2689.                                     "id": "Name",
  2690.                                     "type": "String"
  2691.                                 },
  2692.                                 {
  2693.                                     "id": "Lore",
  2694.                                     "type": "List/String"
  2695.                                 }
  2696.                             ]
  2697.                         },
  2698.                         {
  2699.                             "id": "HideFlags",
  2700.                             "type": "Integer"
  2701.                         },
  2702.                         {
  2703.                             "id": "resolved",
  2704.                             "type": "Boolean"
  2705.                         },
  2706.                         {
  2707.                             "id": "generation",
  2708.                             "type": "Integer"
  2709.                         },
  2710.                         {
  2711.                             "id": "author",
  2712.                             "type": "String"
  2713.                         },
  2714.                         {
  2715.                             "id": "title",
  2716.                             "type": "String"
  2717.                         },
  2718.                         {
  2719.                             "id": "pages",
  2720.                             "type": "List/String"
  2721.                         },
  2722.                         {
  2723.                             "id": "SkullOwner",
  2724.                             "type": "String",
  2725.                             "deprecated": true
  2726.                         },
  2727.                         {
  2728.                             "id": "SkullOwner",
  2729.                             "type": "Compound",
  2730.                             "data": [
  2731.                                 {
  2732.                                     "id": "Id",
  2733.                                     "type": "String"
  2734.                                 },
  2735.                                 {
  2736.                                     "id": "Name",
  2737.                                     "type": "String"
  2738.                                 },
  2739.                                 {
  2740.                                     "id": "Properties",
  2741.                                     "type": "Compound",
  2742.                                     "data": [
  2743.                                         {
  2744.                                             "id": "textures",
  2745.                                             "type": "List/Compound",
  2746.                                             "data": [
  2747.                                                 {
  2748.                                                     "id": "Signature",
  2749.                                                     "type": "String"
  2750.                                                 },
  2751.                                                 {
  2752.                                                     "id": "Value",
  2753.                                                     "type": "String"
  2754.                                                 }
  2755.                                             ]
  2756.                                         }
  2757.                                     ]
  2758.                                 }
  2759.                             ]
  2760.                         },
  2761.                         {
  2762.                             "id": "Explosion",
  2763.                             "type": "Compound",
  2764.                             "data": [
  2765.                                 {
  2766.                                     "id": "Flicker",
  2767.                                     "type": "Boolean"
  2768.                                 },
  2769.                                 {
  2770.                                     "id": "Trail",
  2771.                                     "type": "Boolean"
  2772.                                 },
  2773.                                 {
  2774.                                     "id": "Type",
  2775.                                     "type": "Byte"
  2776.                                 },
  2777.                                 {
  2778.                                     "id": "Colors",
  2779.                                     "type": "IntArray"
  2780.                                 },
  2781.                                 {
  2782.                                     "id": "FadeColors",
  2783.                                     "type": "IntArray"
  2784.                                 }
  2785.                             ]
  2786.                         },
  2787.                         {
  2788.                             "id": "Fireworks",
  2789.                             "type": "Compound",
  2790.                             "data": [
  2791.                                 {
  2792.                                     "id": "Flight",
  2793.                                     "type": "Byte"
  2794.                                 },
  2795.                                 {
  2796.                                     "id": "Explosions",
  2797.                                     "type": "List/Compound"
  2798.                                 }
  2799.                             ]
  2800.                         },
  2801.                         {
  2802.                             "id": "map_is_scaling",
  2803.                             "type": "Boolean"
  2804.                         },
  2805.                         {
  2806.                             "id": "Decorations",
  2807.                             "type": "List/Compound",
  2808.                             "data": [
  2809.                                 {
  2810.                                     "id": "id",
  2811.                                     "type": "String"
  2812.                                 },
  2813.                                 {
  2814.                                     "id": "type",
  2815.                                     "type": "Byte"
  2816.                                 },
  2817.                                 {
  2818.                                     "id": "x",
  2819.                                     "type": "Double"
  2820.                                 },
  2821.                                 {
  2822.                                     "id": "z",
  2823.                                     "type": "Double"
  2824.                                 },
  2825.                                 {
  2826.                                     "id": "rot",
  2827.                                     "type": "Double"
  2828.                                 }
  2829.                             ]
  2830.                         }
  2831.                     ]
  2832.                 }
  2833.             ]
  2834.         },
  2835.         {
  2836.             "id": "ItemSlot",
  2837.             "parent": "Item",
  2838.             "data": [
  2839.                 {
  2840.                     "id": "Slot",
  2841.                     "type": "Byte"
  2842.                 }
  2843.             ]
  2844.         }
  2845.     ]
  2846. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement