Advertisement
Skylinerw

15w34 - All command-relevant NBT data

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