Advertisement
Skylinerw

15w50 - All command-relevant NBT data

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