Advertisement
Skylinerw

16w03 - All command-relevant NBT data

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