the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 2848 lines 96 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2<xs:schema id="GameRulesDefinition" 3 targetNamespace="GameRulesDefinition.xsd" 4 elementFormDefault="qualified" 5 xmlns="GameRulesDefinition.xsd" 6 xmlns:mstns="GameRulesDefinition.xsd" 7 xmlns:xs="http://www.w3.org/2001/XMLSchema" 8> 9 <!-- 10 This document defines all the attributes and members for the various rules. This should be kept up-to-date with the C++ version 11 of these rules. 12 --> 13 <xs:element name="GameRules"> 14 <xs:complexType> 15 <xs:sequence minOccurs="1" maxOccurs="1"> 16 <xs:sequence minOccurs="0" maxOccurs="1"> 17 <xs:element ref="MapOptions"/> 18 </xs:sequence> 19 <xs:sequence minOccurs="0" maxOccurs="1"> 20 <xs:element ref="LevelRules"/> 21 </xs:sequence> 22 </xs:sequence> 23 </xs:complexType> 24 </xs:element> 25 26 <xs:element name="LevelRules"> 27 <xs:complexType> 28 <xs:sequence minOccurs="1" maxOccurs="1"> 29 <xs:sequence minOccurs="0" maxOccurs="unbounded"> 30 <xs:element ref="GameRule"/> 31 </xs:sequence> 32 </xs:sequence> 33 </xs:complexType> 34 </xs:element> 35 36 <xs:complexType name="GameRuleType"> 37 <xs:attribute name="descriptionName" type="xs:string" use="optional"/> 38 <xs:attribute name="promptName" type="xs:string" use="optional"/> 39 <xs:attribute name="dataTag" type="xs:int" use="optional"/> 40 </xs:complexType> 41 42 <xs:attributeGroup name="Coordinates"> 43 <xs:attribute name="x" type="xs:int"/> 44 <xs:attribute name="y" type="xs:int"/> 45 <xs:attribute name="z" type="xs:int"/> 46 </xs:attributeGroup> 47 48 <xs:element name="GameRule" type="GameRuleType"/> 49 <xs:element name="CompoundGameRule" type="GameRuleType" substitutionGroup="GameRule"/> 50 51 <xs:element name="MapOptions"> 52 <xs:complexType> 53 <xs:complexContent> 54 <xs:extension base="GameRuleType"> 55 <xs:sequence minOccurs="0" maxOccurs="1"> 56 <xs:sequence minOccurs="0" maxOccurs="unbounded"> 57 <xs:element ref="MapOption"/> 58 </xs:sequence> 59 <xs:sequence minOccurs="0" maxOccurs="unbounded"> 60 <xs:element ref="GenerateStructure"/> 61 </xs:sequence> 62 </xs:sequence> 63 <xs:attribute name="seed" type="xs:long" use="optional"/> 64 <xs:attribute name="spawnX" type="xs:int" use="optional"/> 65 <xs:attribute name="spawnY" type="xs:int" use="optional"/> 66 <xs:attribute name="spawnZ" type="xs:int" use="optional"/> 67 <xs:attribute name="flatworld" type="xs:boolean" use="optional"/> 68 <xs:attribute name="isTutorial" type="xs:boolean" use="optional"/> 69 </xs:extension> 70 </xs:complexContent> 71 </xs:complexType> 72 </xs:element> 73 74 <xs:element name="MapOption"/> 75 76 <xs:element name="ApplySchematic" substitutionGroup="MapOption"> 77 <xs:complexType> 78 <xs:attribute name="filename" type="xs:string" use="required"/> 79 <xs:attribute name="x" type="xs:int" use="required"/> 80 <xs:attribute name="y" type="xs:int" use="required"/> 81 <xs:attribute name="z" type="xs:int" use="required"/> 82 <xs:attribute name="rot" type="RotationType" use="optional"/> 83 <xs:attribute name="dim" type="DimensionId" use="optional"/> 84 </xs:complexType> 85 </xs:element> 86 87 <xs:element name="StartFeature" substitutionGroup="MapOption"> 88 <xs:complexType> 89 <xs:attribute name="chunkX" type="xs:int" use="required"/> 90 <xs:attribute name="chunkZ" type="xs:int" use="required"/> 91 <xs:attribute name="feature" type="FeatureType" use="required"/> 92 </xs:complexType> 93 </xs:element> 94 95 <xs:element name="NamedArea" substitutionGroup="GameRule"> 96 <xs:complexType> 97 <xs:complexContent> 98 <xs:extension base="GameRuleType"> 99 <xs:attribute name="name" type="xs:string" use="required"/> 100 <xs:attribute name="x0" type="xs:int" use="required"/> 101 <xs:attribute name="y0" type="xs:int" use="required"/> 102 <xs:attribute name="z0" type="xs:int" use="required"/> 103 <xs:attribute name="x1" type="xs:int" use="required"/> 104 <xs:attribute name="y1" type="xs:int" use="required"/> 105 <xs:attribute name="z1" type="xs:int" use="required"/> 106 </xs:extension> 107 </xs:complexContent> 108 </xs:complexType> 109 </xs:element> 110 111 <xs:element name="GenerateStructureAction"/> 112 <xs:element name="GenerateStructure"> 113 <xs:complexType> 114 <xs:sequence minOccurs="1" maxOccurs="unbounded"> 115 <xs:element ref="GenerateStructureAction"/> 116 </xs:sequence> 117 <xs:attribute name="x" type="xs:int" use="required"/> 118 <xs:attribute name="y" type="xs:int" use="required"/> 119 <xs:attribute name="z" type="xs:int" use="required"/> 120 <xs:attribute name="orientation" type="Direction" use="optional"/> 121 <xs:attribute name="dim" type="DimensionId" use="optional"/> 122 </xs:complexType> 123 </xs:element> 124 125 <xs:element name="GenerateBox" substitutionGroup="GenerateStructureAction"> 126 <xs:complexType> 127 <xs:attribute name="x0" type="xs:int" use="required"/> 128 <xs:attribute name="y0" type="xs:int" use="required"/> 129 <xs:attribute name="z0" type="xs:int" use="required"/> 130 <xs:attribute name="x1" type="xs:int" use="required"/> 131 <xs:attribute name="y1" type="xs:int" use="required"/> 132 <xs:attribute name="z1" type="xs:int" use="required"/> 133 <xs:attribute name="edgeTile" type="TileId" use="required"/> 134 <xs:attribute name="fillTile" type="TileId" use="required"/> 135 <xs:attribute name="skipAir" type="xs:boolean" use="optional"/> 136 </xs:complexType> 137 </xs:element> 138 139 <xs:element name="AddEnchantment"> 140 <xs:complexType> 141 <xs:attribute name="enchantmentId" type="EnchantmentId" use="required"/> 142 <xs:attribute name="enchantmentLevel" type="xs:int" use="required"/> 143 </xs:complexType> 144 </xs:element> 145 146 <xs:element name="AddItem"> 147 <xs:complexType> 148 <xs:sequence minOccurs="0" maxOccurs="unbounded"> 149 <xs:element ref="AddEnchantment"/> 150 </xs:sequence> 151 <xs:attribute name="itemId" type="ItemId" use="required"/> 152 <xs:attribute name="quantity" type="xs:int" use="required"/> 153 <xs:attribute name="auxValue" type="xs:byte" use="required"/> 154 <xs:attribute name="dataTag" type="xs:int" use="required"/> 155 <xs:attribute name="slot" type="xs:int" use="optional"/> 156 </xs:complexType> 157 </xs:element> 158 159 <xs:complexType name="PlaceBlockType"> 160 <xs:attribute name="block" type="TileId"/> 161 <xs:attribute name="data" type="xs:byte" use="optional"/> 162 <xs:attribute name="x" type="xs:int" use="required"/> 163 <xs:attribute name="y" type="xs:int" use="required"/> 164 <xs:attribute name="z" type="xs:int" use="required"/> 165 </xs:complexType> 166 167 <xs:element name="PlaceBlock" substitutionGroup="GenerateStructureAction"> 168 <xs:complexType> 169 <xs:complexContent> 170 <xs:restriction base="PlaceBlockType"> 171 <xs:attribute name="block" type="TileId" use="required"/> 172 </xs:restriction> 173 </xs:complexContent> 174 </xs:complexType> 175 </xs:element> 176 177 <xs:element name="PlaceContainer" substitutionGroup="GenerateStructureAction"> 178 <xs:complexType> 179 <xs:complexContent> 180 <xs:extension base="PlaceBlockType"> 181 <xs:sequence minOccurs="1" maxOccurs="36"> 182 <xs:element ref="AddItem"/> 183 </xs:sequence> 184 <xs:attribute name="block" type="TileId" use="required"/> 185 <xs:attribute name="facing" type="Facing" use="required"/> 186 </xs:extension> 187 </xs:complexContent> 188 </xs:complexType> 189 </xs:element> 190 191 <xs:element name="PlaceSpawner" substitutionGroup="GenerateStructureAction"> 192 <xs:complexType> 193 <xs:attribute name="x" type="xs:int" use="required"/> 194 <xs:attribute name="y" type="xs:int" use="required"/> 195 <xs:attribute name="z" type="xs:int" use="required"/> 196 <xs:attribute name="entity" type="SpawnableEntity" use="required"/> 197 </xs:complexType> 198 </xs:element> 199 200 <xs:element name="CompleteAll" substitutionGroup="GameRule"> 201 <xs:complexType> 202 <xs:complexContent> 203 <xs:extension base="GameRuleType"> 204 <xs:sequence minOccurs="1" maxOccurs="unbounded"> 205 <xs:element ref="GameRule"/> 206 </xs:sequence> 207 <xs:attribute name="goalType" type="CompleteAllGoalType" use="required"/> 208 </xs:extension> 209 </xs:complexContent> 210 </xs:complexType> 211 </xs:element> 212 213 <xs:element name="UseTile" substitutionGroup="GameRule"> 214 <xs:complexType> 215 <xs:complexContent> 216 <xs:extension base="GameRuleType"> 217 <xs:attribute name="tileId" type="TileId" use="required"/> 218 <xs:attribute name="useCoords" type="xs:boolean" use="required"/> 219 <xs:attributeGroup ref="Coordinates"/> 220 </xs:extension> 221 </xs:complexContent> 222 </xs:complexType> 223 </xs:element> 224 225 <xs:element name="OpenContainer" substitutionGroup="GameRule"> 226 <xs:complexType> 227 <xs:complexContent> 228 <xs:extension base="GameRuleType"> 229 <xs:attribute name="containerId" type="ContainerType" use="required"/> 230 <xs:attribute name="useCoords" type="xs:boolean" use="required"/> 231 <xs:attributeGroup ref="Coordinates"/> 232 </xs:extension> 233 </xs:complexContent> 234 </xs:complexType> 235 </xs:element> 236 237 <xs:element name="CollectItem" substitutionGroup="GameRule"> 238 <xs:complexType> 239 <xs:complexContent> 240 <xs:extension base="GameRuleType"> 241 <xs:sequence minOccurs="0" maxOccurs="1"> 242 <xs:element ref="OpenContainer"/> 243 </xs:sequence> 244 <xs:attribute name="itemId" type="ItemId" use="required"/> 245 <xs:attribute name="auxValue" type="xs:byte" use="optional"/> 246 <xs:attribute name="quantity" type="xs:int" use="required"/> 247 </xs:extension> 248 </xs:complexContent> 249 </xs:complexType> 250 </xs:element> 251 252 <xs:element name="UpdatePlayer" substitutionGroup="GameRule"> 253 <xs:complexType> 254 <xs:complexContent> 255 <xs:extension base="GameRuleType"> 256 <xs:sequence minOccurs="0" maxOccurs="36"> 257 <xs:element ref="AddItem"/> 258 </xs:sequence> 259 <xs:attribute name="spawnX" type="xs:int" use="optional"/> 260 <xs:attribute name="spawnY" type="xs:int" use="optional"/> 261 <xs:attribute name="spawnZ" type="xs:int" use="optional"/> 262 <xs:attribute name="food" type="FoodType" use="optional"/> 263 <xs:attribute name="health" type="HealthType" use="optional"/> 264 <xs:attribute name="yRot" type="FloatRotationType" use="optional"/> 265 </xs:extension> 266 </xs:complexContent> 267 </xs:complexType> 268 </xs:element> 269 270 <xs:simpleType name="HealthType"> 271 <xs:restriction base="xs:integer"> 272 <xs:minInclusive value="0"/> 273 <xs:maxInclusive value="20"/> 274 </xs:restriction> 275 </xs:simpleType> 276 277 <xs:simpleType name="FoodType"> 278 <xs:restriction base="xs:integer"> 279 <xs:minInclusive value="0"/> 280 <xs:maxInclusive value="20"/> 281 </xs:restriction> 282 </xs:simpleType> 283 284 <xs:simpleType name="FloatRotationType"> 285 <xs:restriction base="xs:float"> 286 <xs:minInclusive value="0.0"/> 287 <xs:maxExclusive value="360.0"/> 288 </xs:restriction> 289 </xs:simpleType> 290 291 <xs:simpleType name="RotationType"> 292 <xs:restriction base="xs:int"> 293 <xs:enumeration value="0"/> 294 <xs:enumeration value="90"/> 295 <xs:enumeration value="180"/> 296 <xs:enumeration value="270"/> 297 </xs:restriction> 298 </xs:simpleType> 299 300 <xs:simpleType name="SpawnableEntity"> 301 <xs:restriction base="xs:string"> 302 <xs:enumeration value="Creeper"/> 303 <xs:enumeration value="Skeleton"/> 304 <xs:enumeration value="Spider"/> 305 <xs:enumeration value="Giant"/> 306 <xs:enumeration value="Zombie"/> 307 <xs:enumeration value="Slime"/> 308 <xs:enumeration value="Ghast"/> 309 <xs:enumeration value="PigZombie"/> 310 <xs:enumeration value="Enderman"/> 311 <xs:enumeration value="CaveSpider"/> 312 <xs:enumeration value="Silverfish"/> 313 <xs:enumeration value="Blaze"/> 314 <xs:enumeration value="LavaSlime"/> 315 <xs:enumeration value="EnderDragon"/> 316 <xs:enumeration value="Pig"/> 317 <xs:enumeration value="Sheep"/> 318 <xs:enumeration value="Cow"/> 319 <xs:enumeration value="Chicken"/> 320 <xs:enumeration value="Squid"/> 321 <xs:enumeration value="Wolf"/> 322 <xs:enumeration value="MushroomCow"/> 323 <xs:enumeration value="SnowMan"/> 324 <xs:enumeration value="Villager"/> 325 </xs:restriction> 326 </xs:simpleType> 327 328 <xs:simpleType name="CompleteAllGoalType"> 329 <xs:restriction base="xs:int"> 330 <xs:enumeration value="0"> 331 <xs:annotation> 332 <xs:documentation>Count children</xs:documentation> 333 </xs:annotation> 334 </xs:enumeration> 335 <xs:enumeration value="1"> 336 <xs:annotation> 337 <xs:documentation>Accumulate childrens goals</xs:documentation> 338 </xs:annotation> 339 </xs:enumeration> 340 </xs:restriction> 341 </xs:simpleType> 342 343 <xs:simpleType name="ContainerType"> 344 <xs:restriction base="xs:int"> 345 <xs:enumeration value="0"> 346 <xs:annotation> 347 <xs:documentation>Crafting Table</xs:documentation> 348 </xs:annotation> 349 </xs:enumeration> 350 <xs:enumeration value="1"> 351 <xs:annotation> 352 <xs:documentation>Chest</xs:documentation> 353 </xs:annotation> 354 </xs:enumeration> 355 <xs:enumeration value="2"> 356 <xs:annotation> 357 <xs:documentation>Furnace</xs:documentation> 358 </xs:annotation> 359 </xs:enumeration> 360 <xs:enumeration value="3"> 361 <xs:annotation> 362 <xs:documentation>Dispenser</xs:documentation> 363 </xs:annotation> 364 </xs:enumeration> 365 </xs:restriction> 366 </xs:simpleType> 367 368 <xs:simpleType name="FeatureType"> 369 <xs:restriction base="xs:int"> 370 <xs:enumeration value="0"> 371 <xs:annotation> 372 <xs:documentation>Mineshaft</xs:documentation> 373 </xs:annotation> 374 </xs:enumeration> 375 <xs:enumeration value="1"> 376 <xs:annotation> 377 <xs:documentation>Nether Bridge</xs:documentation> 378 </xs:annotation> 379 </xs:enumeration> 380 <xs:enumeration value="2"> 381 <xs:annotation> 382 <xs:documentation>Temples</xs:documentation> 383 </xs:annotation> 384 </xs:enumeration> 385 <xs:enumeration value="3"> 386 <xs:annotation> 387 <xs:documentation>Stronghold</xs:documentation> 388 </xs:annotation> 389 </xs:enumeration> 390 <xs:enumeration value="4"> 391 <xs:annotation> 392 <xs:documentation>Village</xs:documentation> 393 </xs:annotation> 394 </xs:enumeration> 395 </xs:restriction> 396 </xs:simpleType> 397 398 <xs:simpleType name="Direction"> 399 <xs:restriction base="xs:int"> 400 <xs:enumeration value="0"> 401 <xs:annotation> 402 <xs:documentation>SOUTH</xs:documentation> 403 </xs:annotation> 404 </xs:enumeration> 405 <xs:enumeration value="1"> 406 <xs:annotation> 407 <xs:documentation>WEST</xs:documentation> 408 </xs:annotation> 409 </xs:enumeration> 410 <xs:enumeration value="2"> 411 <xs:annotation> 412 <xs:documentation>NORTH</xs:documentation> 413 </xs:annotation> 414 </xs:enumeration> 415 <xs:enumeration value="3"> 416 <xs:annotation> 417 <xs:documentation>EAST</xs:documentation> 418 </xs:annotation> 419 </xs:enumeration> 420 </xs:restriction> 421 </xs:simpleType> 422 423 <xs:simpleType name="Facing"> 424 <xs:restriction base="xs:int"> 425 <xs:enumeration value="2"> 426 <xs:annotation> 427 <xs:documentation>NORTH</xs:documentation> 428 </xs:annotation> 429 </xs:enumeration> 430 <xs:enumeration value="3"> 431 <xs:annotation> 432 <xs:documentation>SOUTH</xs:documentation> 433 </xs:annotation> 434 </xs:enumeration> 435 <xs:enumeration value="4"> 436 <xs:annotation> 437 <xs:documentation>WEST</xs:documentation> 438 </xs:annotation> 439 </xs:enumeration> 440 <xs:enumeration value="5"> 441 <xs:annotation> 442 <xs:documentation>EAST</xs:documentation> 443 </xs:annotation> 444 </xs:enumeration> 445 </xs:restriction> 446 </xs:simpleType> 447 448 <xs:simpleType name="DimensionId"> 449 <xs:restriction base="xs:int"> 450 <xs:enumeration value="0"> 451 <xs:annotation> 452 <xs:documentation>Overworld</xs:documentation> 453 </xs:annotation> 454 </xs:enumeration> 455 <xs:enumeration value="-1"> 456 <xs:annotation> 457 <xs:documentation>Nether</xs:documentation> 458 </xs:annotation> 459 </xs:enumeration> 460 <xs:enumeration value="1"> 461 <xs:annotation> 462 <xs:documentation>The End</xs:documentation> 463 </xs:annotation> 464 </xs:enumeration> 465 </xs:restriction> 466 </xs:simpleType> 467 468 <xs:simpleType name="EnchantmentId"> 469 <xs:restriction base="xs:int"> 470 <xs:enumeration value="0"> 471 <xs:annotation> 472 <xs:documentation>Protection</xs:documentation> 473 </xs:annotation> 474 </xs:enumeration> 475 <xs:enumeration value="1"> 476 <xs:annotation> 477 <xs:documentation>Fire Protection</xs:documentation> 478 </xs:annotation> 479 </xs:enumeration> 480 <xs:enumeration value="2"> 481 <xs:annotation> 482 <xs:documentation>Feather Falling</xs:documentation> 483 </xs:annotation> 484 </xs:enumeration> 485 <xs:enumeration value="3"> 486 <xs:annotation> 487 <xs:documentation>Blast Protection</xs:documentation> 488 </xs:annotation> 489 </xs:enumeration> 490 <xs:enumeration value="4"> 491 <xs:annotation> 492 <xs:documentation>Projectile Protection</xs:documentation> 493 </xs:annotation> 494 </xs:enumeration> 495 <xs:enumeration value="5"> 496 <xs:annotation> 497 <xs:documentation>Respiration</xs:documentation> 498 </xs:annotation> 499 </xs:enumeration> 500 <xs:enumeration value="6"> 501 <xs:annotation> 502 <xs:documentation>Aqua Affinity</xs:documentation> 503 </xs:annotation> 504 </xs:enumeration> 505 <xs:enumeration value="7"> 506 <xs:annotation> 507 <xs:documentation>Thorns</xs:documentation> 508 </xs:annotation> 509 </xs:enumeration> 510 <xs:enumeration value="16"> 511 <xs:annotation> 512 <xs:documentation>Sharpness</xs:documentation> 513 </xs:annotation> 514 </xs:enumeration> 515 <xs:enumeration value="17"> 516 <xs:annotation> 517 <xs:documentation>Smite</xs:documentation> 518 </xs:annotation> 519 </xs:enumeration> 520 <xs:enumeration value="18"> 521 <xs:annotation> 522 <xs:documentation>Bane of Arthropods</xs:documentation> 523 </xs:annotation> 524 </xs:enumeration> 525 <xs:enumeration value="19"> 526 <xs:annotation> 527 <xs:documentation>Knockback</xs:documentation> 528 </xs:annotation> 529 </xs:enumeration> 530 <xs:enumeration value="20"> 531 <xs:annotation> 532 <xs:documentation>Fire Aspect</xs:documentation> 533 </xs:annotation> 534 </xs:enumeration> 535 <xs:enumeration value="21"> 536 <xs:annotation> 537 <xs:documentation>Looting</xs:documentation> 538 </xs:annotation> 539 </xs:enumeration> 540 <xs:enumeration value="32"> 541 <xs:annotation> 542 <xs:documentation>Efficiency</xs:documentation> 543 </xs:annotation> 544 </xs:enumeration> 545 <xs:enumeration value="33"> 546 <xs:annotation> 547 <xs:documentation>Silk Touch</xs:documentation> 548 </xs:annotation> 549 </xs:enumeration> 550 <xs:enumeration value="34"> 551 <xs:annotation> 552 <xs:documentation>Unbreaking</xs:documentation> 553 </xs:annotation> 554 </xs:enumeration> 555 <xs:enumeration value="35"> 556 <xs:annotation> 557 <xs:documentation>Fortune</xs:documentation> 558 </xs:annotation> 559 </xs:enumeration> 560 <xs:enumeration value="48"> 561 <xs:annotation> 562 <xs:documentation>Power</xs:documentation> 563 </xs:annotation> 564 </xs:enumeration> 565 <xs:enumeration value="49"> 566 <xs:annotation> 567 <xs:documentation>Punch</xs:documentation> 568 </xs:annotation> 569 </xs:enumeration> 570 <xs:enumeration value="50"> 571 <xs:annotation> 572 <xs:documentation>Flame</xs:documentation> 573 </xs:annotation> 574 </xs:enumeration> 575 <xs:enumeration value="51"> 576 <xs:annotation> 577 <xs:documentation>Infinity</xs:documentation> 578 </xs:annotation> 579 </xs:enumeration> 580 </xs:restriction> 581 </xs:simpleType> 582 583 <xs:simpleType name="TileId"> 584 <xs:restriction base="xs:int"> 585 <xs:enumeration value="0"> 586 <xs:annotation> 587 <xs:documentation>Air</xs:documentation> 588 </xs:annotation> 589 </xs:enumeration> 590 <xs:enumeration value="1"> 591 <xs:annotation> 592 <xs:documentation>Stone</xs:documentation> 593 </xs:annotation> 594 </xs:enumeration> 595 <xs:enumeration value="2"> 596 <xs:annotation> 597 <xs:documentation>Grass Block</xs:documentation> 598 </xs:annotation> 599 </xs:enumeration> 600 <xs:enumeration value="3"> 601 <xs:annotation> 602 <xs:documentation>Dirt</xs:documentation> 603 </xs:annotation> 604 </xs:enumeration> 605 <xs:enumeration value="4"> 606 <xs:annotation> 607 <xs:documentation>Cobblestone</xs:documentation> 608 </xs:annotation> 609 </xs:enumeration> 610 <xs:enumeration value="5"> 611 <xs:annotation> 612 <xs:documentation>Wooden Planks</xs:documentation> 613 </xs:annotation> 614 </xs:enumeration> 615 <xs:enumeration value="6"> 616 <xs:annotation> 617 <xs:documentation>Sapling</xs:documentation> 618 </xs:annotation> 619 </xs:enumeration> 620 <xs:enumeration value="7"> 621 <xs:annotation> 622 <xs:documentation>Bedrock</xs:documentation> 623 </xs:annotation> 624 </xs:enumeration> 625 <xs:enumeration value="8"> 626 <xs:annotation> 627 <xs:documentation>Water</xs:documentation> 628 </xs:annotation> 629 </xs:enumeration> 630 <xs:enumeration value="9"> 631 <xs:annotation> 632 <xs:documentation>Water</xs:documentation> 633 </xs:annotation> 634 </xs:enumeration> 635 <xs:enumeration value="10"> 636 <xs:annotation> 637 <xs:documentation>Lava</xs:documentation> 638 </xs:annotation> 639 </xs:enumeration> 640 <xs:enumeration value="11"> 641 <xs:annotation> 642 <xs:documentation>Lava</xs:documentation> 643 </xs:annotation> 644 </xs:enumeration> 645 <xs:enumeration value="12"> 646 <xs:annotation> 647 <xs:documentation>Sand</xs:documentation> 648 </xs:annotation> 649 </xs:enumeration> 650 <xs:enumeration value="13"> 651 <xs:annotation> 652 <xs:documentation>Gravel</xs:documentation> 653 </xs:annotation> 654 </xs:enumeration> 655 <xs:enumeration value="14"> 656 <xs:annotation> 657 <xs:documentation>Gold Ore</xs:documentation> 658 </xs:annotation> 659 </xs:enumeration> 660 <xs:enumeration value="15"> 661 <xs:annotation> 662 <xs:documentation>Iron Ore</xs:documentation> 663 </xs:annotation> 664 </xs:enumeration> 665 <xs:enumeration value="16"> 666 <xs:annotation> 667 <xs:documentation>Coal Ore</xs:documentation> 668 </xs:annotation> 669 </xs:enumeration> 670 <xs:enumeration value="17"> 671 <xs:annotation> 672 <xs:documentation>Wood</xs:documentation> 673 </xs:annotation> 674 </xs:enumeration> 675 <xs:enumeration value="18"> 676 <xs:annotation> 677 <xs:documentation>Leaves</xs:documentation> 678 </xs:annotation> 679 </xs:enumeration> 680 <xs:enumeration value="19"> 681 <xs:annotation> 682 <xs:documentation>Sponge</xs:documentation> 683 </xs:annotation> 684 </xs:enumeration> 685 <xs:enumeration value="20"> 686 <xs:annotation> 687 <xs:documentation>Glass</xs:documentation> 688 </xs:annotation> 689 </xs:enumeration> 690 <xs:enumeration value="21"> 691 <xs:annotation> 692 <xs:documentation>Lapis Lazuli Ore</xs:documentation> 693 </xs:annotation> 694 </xs:enumeration> 695 <xs:enumeration value="22"> 696 <xs:annotation> 697 <xs:documentation>Lapis Lazuli Block</xs:documentation> 698 </xs:annotation> 699 </xs:enumeration> 700 <xs:enumeration value="23"> 701 <xs:annotation> 702 <xs:documentation>Dispenser</xs:documentation> 703 </xs:annotation> 704 </xs:enumeration> 705 <xs:enumeration value="24"> 706 <xs:annotation> 707 <xs:documentation>Sandstone</xs:documentation> 708 </xs:annotation> 709 </xs:enumeration> 710 <xs:enumeration value="25"> 711 <xs:annotation> 712 <xs:documentation>Note Block</xs:documentation> 713 </xs:annotation> 714 </xs:enumeration> 715 <xs:enumeration value="26"> 716 <xs:annotation> 717 <xs:documentation>Bed</xs:documentation> 718 </xs:annotation> 719 </xs:enumeration> 720 <xs:enumeration value="27"> 721 <xs:annotation> 722 <xs:documentation>Powered Rail</xs:documentation> 723 </xs:annotation> 724 </xs:enumeration> 725 <xs:enumeration value="28"> 726 <xs:annotation> 727 <xs:documentation>Detector Rail</xs:documentation> 728 </xs:annotation> 729 </xs:enumeration> 730 <xs:enumeration value="29"> 731 <xs:annotation> 732 <xs:documentation>Sticky Piston</xs:documentation> 733 </xs:annotation> 734 </xs:enumeration> 735 <xs:enumeration value="30"> 736 <xs:annotation> 737 <xs:documentation>Web</xs:documentation> 738 </xs:annotation> 739 </xs:enumeration> 740 <xs:enumeration value="31"> 741 <xs:annotation> 742 <xs:documentation>Shrub</xs:documentation> 743 </xs:annotation> 744 </xs:enumeration> 745 <xs:enumeration value="32"> 746 <xs:annotation> 747 <xs:documentation>Dead Bush</xs:documentation> 748 </xs:annotation> 749 </xs:enumeration> 750 <xs:enumeration value="33"> 751 <xs:annotation> 752 <xs:documentation>Piston</xs:documentation> 753 </xs:annotation> 754 </xs:enumeration> 755 <xs:enumeration value="34"> 756 <xs:annotation> 757 <xs:documentation>Piston</xs:documentation> 758 </xs:annotation> 759 </xs:enumeration> 760 <xs:enumeration value="35"> 761 <xs:annotation> 762 <xs:documentation>Wool</xs:documentation> 763 </xs:annotation> 764 </xs:enumeration> 765 <xs:enumeration value="36"> 766 <xs:annotation> 767 <xs:documentation>Piston</xs:documentation> 768 </xs:annotation> 769 </xs:enumeration> 770 <xs:enumeration value="37"> 771 <xs:annotation> 772 <xs:documentation>Flower</xs:documentation> 773 </xs:annotation> 774 </xs:enumeration> 775 <xs:enumeration value="38"> 776 <xs:annotation> 777 <xs:documentation>Rose</xs:documentation> 778 </xs:annotation> 779 </xs:enumeration> 780 <xs:enumeration value="39"> 781 <xs:annotation> 782 <xs:documentation>Mushroom</xs:documentation> 783 </xs:annotation> 784 </xs:enumeration> 785 <xs:enumeration value="40"> 786 <xs:annotation> 787 <xs:documentation>Mushroom</xs:documentation> 788 </xs:annotation> 789 </xs:enumeration> 790 <xs:enumeration value="41"> 791 <xs:annotation> 792 <xs:documentation>Block of Gold</xs:documentation> 793 </xs:annotation> 794 </xs:enumeration> 795 <xs:enumeration value="42"> 796 <xs:annotation> 797 <xs:documentation>Block of Iron</xs:documentation> 798 </xs:annotation> 799 </xs:enumeration> 800 <xs:enumeration value="43"> 801 <xs:annotation> 802 <xs:documentation>Stone Slab</xs:documentation> 803 </xs:annotation> 804 </xs:enumeration> 805 <xs:enumeration value="44"> 806 <xs:annotation> 807 <xs:documentation>Stone Slab</xs:documentation> 808 </xs:annotation> 809 </xs:enumeration> 810 <xs:enumeration value="45"> 811 <xs:annotation> 812 <xs:documentation>Bricks</xs:documentation> 813 </xs:annotation> 814 </xs:enumeration> 815 <xs:enumeration value="46"> 816 <xs:annotation> 817 <xs:documentation>TNT</xs:documentation> 818 </xs:annotation> 819 </xs:enumeration> 820 <xs:enumeration value="47"> 821 <xs:annotation> 822 <xs:documentation>Bookshelf</xs:documentation> 823 </xs:annotation> 824 </xs:enumeration> 825 <xs:enumeration value="48"> 826 <xs:annotation> 827 <xs:documentation>Moss Stone</xs:documentation> 828 </xs:annotation> 829 </xs:enumeration> 830 <xs:enumeration value="49"> 831 <xs:annotation> 832 <xs:documentation>Obsidian</xs:documentation> 833 </xs:annotation> 834 </xs:enumeration> 835 <xs:enumeration value="50"> 836 <xs:annotation> 837 <xs:documentation>Torch</xs:documentation> 838 </xs:annotation> 839 </xs:enumeration> 840 <xs:enumeration value="51"> 841 <xs:annotation> 842 <xs:documentation>Fire</xs:documentation> 843 </xs:annotation> 844 </xs:enumeration> 845 <xs:enumeration value="52"> 846 <xs:annotation> 847 <xs:documentation>Monster Spawner</xs:documentation> 848 </xs:annotation> 849 </xs:enumeration> 850 <xs:enumeration value="53"> 851 <xs:annotation> 852 <xs:documentation>Wooden Stairs</xs:documentation> 853 </xs:annotation> 854 </xs:enumeration> 855 <xs:enumeration value="54"> 856 <xs:annotation> 857 <xs:documentation>Chest</xs:documentation> 858 </xs:annotation> 859 </xs:enumeration> 860 <xs:enumeration value="55"> 861 <xs:annotation> 862 <xs:documentation>Redstone Dust</xs:documentation> 863 </xs:annotation> 864 </xs:enumeration> 865 <xs:enumeration value="56"> 866 <xs:annotation> 867 <xs:documentation>Diamond Ore</xs:documentation> 868 </xs:annotation> 869 </xs:enumeration> 870 <xs:enumeration value="57"> 871 <xs:annotation> 872 <xs:documentation>Block of Diamond</xs:documentation> 873 </xs:annotation> 874 </xs:enumeration> 875 <xs:enumeration value="58"> 876 <xs:annotation> 877 <xs:documentation>Crafting Table</xs:documentation> 878 </xs:annotation> 879 </xs:enumeration> 880 <xs:enumeration value="59"> 881 <xs:annotation> 882 <xs:documentation>Crops</xs:documentation> 883 </xs:annotation> 884 </xs:enumeration> 885 <xs:enumeration value="60"> 886 <xs:annotation> 887 <xs:documentation>Farmland</xs:documentation> 888 </xs:annotation> 889 </xs:enumeration> 890 <xs:enumeration value="61"> 891 <xs:annotation> 892 <xs:documentation>Furnace</xs:documentation> 893 </xs:annotation> 894 </xs:enumeration> 895 <xs:enumeration value="62"> 896 <xs:annotation> 897 <xs:documentation>Furnace</xs:documentation> 898 </xs:annotation> 899 </xs:enumeration> 900 <xs:enumeration value="63"> 901 <xs:annotation> 902 <xs:documentation>Sign</xs:documentation> 903 </xs:annotation> 904 </xs:enumeration> 905 <xs:enumeration value="64"> 906 <xs:annotation> 907 <xs:documentation>Wooden Door</xs:documentation> 908 </xs:annotation> 909 </xs:enumeration> 910 <xs:enumeration value="65"> 911 <xs:annotation> 912 <xs:documentation>Ladder</xs:documentation> 913 </xs:annotation> 914 </xs:enumeration> 915 <xs:enumeration value="66"> 916 <xs:annotation> 917 <xs:documentation>Rail</xs:documentation> 918 </xs:annotation> 919 </xs:enumeration> 920 <xs:enumeration value="67"> 921 <xs:annotation> 922 <xs:documentation>Stone Stairs</xs:documentation> 923 </xs:annotation> 924 </xs:enumeration> 925 <xs:enumeration value="68"> 926 <xs:annotation> 927 <xs:documentation>Sign</xs:documentation> 928 </xs:annotation> 929 </xs:enumeration> 930 <xs:enumeration value="69"> 931 <xs:annotation> 932 <xs:documentation>Lever</xs:documentation> 933 </xs:annotation> 934 </xs:enumeration> 935 <xs:enumeration value="70"> 936 <xs:annotation> 937 <xs:documentation>Pressure Plate</xs:documentation> 938 </xs:annotation> 939 </xs:enumeration> 940 <xs:enumeration value="71"> 941 <xs:annotation> 942 <xs:documentation>Iron Door</xs:documentation> 943 </xs:annotation> 944 </xs:enumeration> 945 <xs:enumeration value="72"> 946 <xs:annotation> 947 <xs:documentation>Pressure Plate</xs:documentation> 948 </xs:annotation> 949 </xs:enumeration> 950 <xs:enumeration value="73"> 951 <xs:annotation> 952 <xs:documentation>Redstone Ore</xs:documentation> 953 </xs:annotation> 954 </xs:enumeration> 955 <xs:enumeration value="74"> 956 <xs:annotation> 957 <xs:documentation>Redstone Ore</xs:documentation> 958 </xs:annotation> 959 </xs:enumeration> 960 <xs:enumeration value="75"> 961 <xs:annotation> 962 <xs:documentation>Redstone Torch</xs:documentation> 963 </xs:annotation> 964 </xs:enumeration> 965 <xs:enumeration value="76"> 966 <xs:annotation> 967 <xs:documentation>Redstone Torch</xs:documentation> 968 </xs:annotation> 969 </xs:enumeration> 970 <xs:enumeration value="77"> 971 <xs:annotation> 972 <xs:documentation>Button</xs:documentation> 973 </xs:annotation> 974 </xs:enumeration> 975 <xs:enumeration value="78"> 976 <xs:annotation> 977 <xs:documentation>Snow</xs:documentation> 978 </xs:annotation> 979 </xs:enumeration> 980 <xs:enumeration value="79"> 981 <xs:annotation> 982 <xs:documentation>Ice</xs:documentation> 983 </xs:annotation> 984 </xs:enumeration> 985 <xs:enumeration value="80"> 986 <xs:annotation> 987 <xs:documentation>Snow</xs:documentation> 988 </xs:annotation> 989 </xs:enumeration> 990 <xs:enumeration value="81"> 991 <xs:annotation> 992 <xs:documentation>Cactus</xs:documentation> 993 </xs:annotation> 994 </xs:enumeration> 995 <xs:enumeration value="82"> 996 <xs:annotation> 997 <xs:documentation>Clay</xs:documentation> 998 </xs:annotation> 999 </xs:enumeration> 1000 <xs:enumeration value="83"> 1001 <xs:annotation> 1002 <xs:documentation>Sugar Cane</xs:documentation> 1003 </xs:annotation> 1004 </xs:enumeration> 1005 <xs:enumeration value="84"> 1006 <xs:annotation> 1007 <xs:documentation>Jukebox</xs:documentation> 1008 </xs:annotation> 1009 </xs:enumeration> 1010 <xs:enumeration value="85"> 1011 <xs:annotation> 1012 <xs:documentation>Fence</xs:documentation> 1013 </xs:annotation> 1014 </xs:enumeration> 1015 <xs:enumeration value="86"> 1016 <xs:annotation> 1017 <xs:documentation>Pumpkin</xs:documentation> 1018 </xs:annotation> 1019 </xs:enumeration> 1020 <xs:enumeration value="87"> 1021 <xs:annotation> 1022 <xs:documentation>Netherrack</xs:documentation> 1023 </xs:annotation> 1024 </xs:enumeration> 1025 <xs:enumeration value="88"> 1026 <xs:annotation> 1027 <xs:documentation>Soul Sand</xs:documentation> 1028 </xs:annotation> 1029 </xs:enumeration> 1030 <xs:enumeration value="89"> 1031 <xs:annotation> 1032 <xs:documentation>Glowstone</xs:documentation> 1033 </xs:annotation> 1034 </xs:enumeration> 1035 <xs:enumeration value="90"> 1036 <xs:annotation> 1037 <xs:documentation>Portal</xs:documentation> 1038 </xs:annotation> 1039 </xs:enumeration> 1040 <xs:enumeration value="91"> 1041 <xs:annotation> 1042 <xs:documentation>Jack-O-Lantern</xs:documentation> 1043 </xs:annotation> 1044 </xs:enumeration> 1045 <xs:enumeration value="92"> 1046 <xs:annotation> 1047 <xs:documentation>Cake</xs:documentation> 1048 </xs:annotation> 1049 </xs:enumeration> 1050 <xs:enumeration value="93"> 1051 <xs:annotation> 1052 <xs:documentation>Redstone Repeater</xs:documentation> 1053 </xs:annotation> 1054 </xs:enumeration> 1055 <xs:enumeration value="94"> 1056 <xs:annotation> 1057 <xs:documentation>Redstone Repeater</xs:documentation> 1058 </xs:annotation> 1059 </xs:enumeration> 1060 <xs:enumeration value="95"> 1061 <xs:annotation> 1062 <xs:documentation>Locked Chest</xs:documentation> 1063 </xs:annotation> 1064 </xs:enumeration> 1065 <xs:enumeration value="96"> 1066 <xs:annotation> 1067 <xs:documentation>Trapdoor</xs:documentation> 1068 </xs:annotation> 1069 </xs:enumeration> 1070 <xs:enumeration value="97"> 1071 <xs:annotation> 1072 <xs:documentation>Silverfish Stone</xs:documentation> 1073 </xs:annotation> 1074 </xs:enumeration> 1075 <xs:enumeration value="98"> 1076 <xs:annotation> 1077 <xs:documentation>Stone Bricks</xs:documentation> 1078 </xs:annotation> 1079 </xs:enumeration> 1080 <xs:enumeration value="99"> 1081 <xs:annotation> 1082 <xs:documentation>Mushroom</xs:documentation> 1083 </xs:annotation> 1084 </xs:enumeration> 1085 <xs:enumeration value="100"> 1086 <xs:annotation> 1087 <xs:documentation>Mushroom</xs:documentation> 1088 </xs:annotation> 1089 </xs:enumeration> 1090 <xs:enumeration value="101"> 1091 <xs:annotation> 1092 <xs:documentation>Iron Bars</xs:documentation> 1093 </xs:annotation> 1094 </xs:enumeration> 1095 <xs:enumeration value="102"> 1096 <xs:annotation> 1097 <xs:documentation>Glass Pane</xs:documentation> 1098 </xs:annotation> 1099 </xs:enumeration> 1100 <xs:enumeration value="103"> 1101 <xs:annotation> 1102 <xs:documentation>Melon</xs:documentation> 1103 </xs:annotation> 1104 </xs:enumeration> 1105 <xs:enumeration value="104"> 1106 <xs:annotation> 1107 <xs:documentation>Pumpkin Stem</xs:documentation> 1108 </xs:annotation> 1109 </xs:enumeration> 1110 <xs:enumeration value="105"> 1111 <xs:annotation> 1112 <xs:documentation>Melon Stem</xs:documentation> 1113 </xs:annotation> 1114 </xs:enumeration> 1115 <xs:enumeration value="106"> 1116 <xs:annotation> 1117 <xs:documentation>Vines</xs:documentation> 1118 </xs:annotation> 1119 </xs:enumeration> 1120 <xs:enumeration value="107"> 1121 <xs:annotation> 1122 <xs:documentation>Fence Gate</xs:documentation> 1123 </xs:annotation> 1124 </xs:enumeration> 1125 <xs:enumeration value="108"> 1126 <xs:annotation> 1127 <xs:documentation>Brick Stairs</xs:documentation> 1128 </xs:annotation> 1129 </xs:enumeration> 1130 <xs:enumeration value="109"> 1131 <xs:annotation> 1132 <xs:documentation>Stone Brick Stairs</xs:documentation> 1133 </xs:annotation> 1134 </xs:enumeration> 1135 <xs:enumeration value="110"> 1136 <xs:annotation> 1137 <xs:documentation>Mycelium</xs:documentation> 1138 </xs:annotation> 1139 </xs:enumeration> 1140 <xs:enumeration value="111"> 1141 <xs:annotation> 1142 <xs:documentation>Lily Pad</xs:documentation> 1143 </xs:annotation> 1144 </xs:enumeration> 1145 <xs:enumeration value="112"> 1146 <xs:annotation> 1147 <xs:documentation>Nether Brick</xs:documentation> 1148 </xs:annotation> 1149 </xs:enumeration> 1150 <xs:enumeration value="113"> 1151 <xs:annotation> 1152 <xs:documentation>Nether Brick Fence</xs:documentation> 1153 </xs:annotation> 1154 </xs:enumeration> 1155 <xs:enumeration value="114"> 1156 <xs:annotation> 1157 <xs:documentation>Nether Brick Stairs</xs:documentation> 1158 </xs:annotation> 1159 </xs:enumeration> 1160 <xs:enumeration value="115"> 1161 <xs:annotation> 1162 <xs:documentation>Nether Wart</xs:documentation> 1163 </xs:annotation> 1164 </xs:enumeration> 1165 <xs:enumeration value="116"> 1166 <xs:annotation> 1167 <xs:documentation>Enchantment Table</xs:documentation> 1168 </xs:annotation> 1169 </xs:enumeration> 1170 <xs:enumeration value="117"> 1171 <xs:annotation> 1172 <xs:documentation>Brewing Stand</xs:documentation> 1173 </xs:annotation> 1174 </xs:enumeration> 1175 <xs:enumeration value="118"> 1176 <xs:annotation> 1177 <xs:documentation>Cauldron</xs:documentation> 1178 </xs:annotation> 1179 </xs:enumeration> 1180 <xs:enumeration value="119"> 1181 <xs:annotation> 1182 <xs:documentation>End Portal</xs:documentation> 1183 </xs:annotation> 1184 </xs:enumeration> 1185 <xs:enumeration value="120"> 1186 <xs:annotation> 1187 <xs:documentation>End Portal Frame</xs:documentation> 1188 </xs:annotation> 1189 </xs:enumeration> 1190 <xs:enumeration value="121"> 1191 <xs:annotation> 1192 <xs:documentation>End Stone</xs:documentation> 1193 </xs:annotation> 1194 </xs:enumeration> 1195 <xs:enumeration value="122"> 1196 <xs:annotation> 1197 <xs:documentation>Dragon Egg</xs:documentation> 1198 </xs:annotation> 1199 </xs:enumeration> 1200 <xs:enumeration value="123"> 1201 <xs:annotation> 1202 <xs:documentation>Redstone Lamp</xs:documentation> 1203 </xs:annotation> 1204 </xs:enumeration> 1205 <xs:enumeration value="124"> 1206 <xs:annotation> 1207 <xs:documentation>Redstone Lamp</xs:documentation> 1208 </xs:annotation> 1209 </xs:enumeration> 1210 <xs:enumeration value="125"> 1211 <xs:annotation> 1212 <xs:documentation>Oak Wood Slab</xs:documentation> 1213 </xs:annotation> 1214 </xs:enumeration> 1215 <xs:enumeration value="126"> 1216 <xs:annotation> 1217 <xs:documentation>Oak Wood Slab</xs:documentation> 1218 </xs:annotation> 1219 </xs:enumeration> 1220 <xs:enumeration value="127"> 1221 <xs:annotation> 1222 <xs:documentation>Cocoa</xs:documentation> 1223 </xs:annotation> 1224 </xs:enumeration> 1225 <xs:enumeration value="128"> 1226 <xs:annotation> 1227 <xs:documentation>Sandstone Stairs</xs:documentation> 1228 </xs:annotation> 1229 </xs:enumeration> 1230 <xs:enumeration value="129"> 1231 <xs:annotation> 1232 <xs:documentation>Emerald Ore</xs:documentation> 1233 </xs:annotation> 1234 </xs:enumeration> 1235 <xs:enumeration value="130"> 1236 <xs:annotation> 1237 <xs:documentation>Ender Chest</xs:documentation> 1238 </xs:annotation> 1239 </xs:enumeration> 1240 <xs:enumeration value="131"> 1241 <xs:annotation> 1242 <xs:documentation>Tripwire Hook</xs:documentation> 1243 </xs:annotation> 1244 </xs:enumeration> 1245 <xs:enumeration value="132"> 1246 <xs:annotation> 1247 <xs:documentation>Tripwire</xs:documentation> 1248 </xs:annotation> 1249 </xs:enumeration> 1250 <xs:enumeration value="133"> 1251 <xs:annotation> 1252 <xs:documentation>Block of Emerald</xs:documentation> 1253 </xs:annotation> 1254 </xs:enumeration> 1255 <xs:enumeration value="134"> 1256 <xs:annotation> 1257 <xs:documentation>Spruce Wood Stairs</xs:documentation> 1258 </xs:annotation> 1259 </xs:enumeration> 1260 <xs:enumeration value="135"> 1261 <xs:annotation> 1262 <xs:documentation>Birch Wood Stairs</xs:documentation> 1263 </xs:annotation> 1264 </xs:enumeration> 1265 <xs:enumeration value="136"> 1266 <xs:annotation> 1267 <xs:documentation>Jungle Wood Stairs</xs:documentation> 1268 </xs:annotation> 1269 </xs:enumeration> 1270 <xs:enumeration value="139"> 1271 <xs:annotation> 1272 <xs:documentation>Cobblestone Wall</xs:documentation> 1273 </xs:annotation> 1274 </xs:enumeration> 1275 <xs:enumeration value="140"> 1276 <xs:annotation> 1277 <xs:documentation>Flower Pot</xs:documentation> 1278 </xs:annotation> 1279 </xs:enumeration> 1280 <xs:enumeration value="141"> 1281 <xs:annotation> 1282 <xs:documentation>Carrots</xs:documentation> 1283 </xs:annotation> 1284 </xs:enumeration> 1285 <xs:enumeration value="142"> 1286 <xs:annotation> 1287 <xs:documentation>Potatoes</xs:documentation> 1288 </xs:annotation> 1289 </xs:enumeration> 1290 <xs:enumeration value="143"> 1291 <xs:annotation> 1292 <xs:documentation>Button</xs:documentation> 1293 </xs:annotation> 1294 </xs:enumeration> 1295 <xs:enumeration value="144"> 1296 <xs:annotation> 1297 <xs:documentation>Skull</xs:documentation> 1298 </xs:annotation> 1299 </xs:enumeration> 1300 <xs:enumeration value="145"> 1301 <xs:annotation> 1302 <xs:documentation>Anvil</xs:documentation> 1303 </xs:annotation> 1304 </xs:enumeration> 1305 <xs:enumeration value="153"> 1306 <xs:annotation> 1307 <xs:documentation>Nether Quartz Ore</xs:documentation> 1308 </xs:annotation> 1309 </xs:enumeration> 1310 <xs:enumeration value="155"> 1311 <xs:annotation> 1312 <xs:documentation>Block of Quartz</xs:documentation> 1313 </xs:annotation> 1314 </xs:enumeration> 1315 <xs:enumeration value="156"> 1316 <xs:annotation> 1317 <xs:documentation>Quartz Stairs</xs:documentation> 1318 </xs:annotation> 1319 </xs:enumeration> 1320 <xs:enumeration value="171"> 1321 <xs:annotation> 1322 <xs:documentation>Carpet</xs:documentation> 1323 </xs:annotation> 1324 </xs:enumeration> 1325 </xs:restriction> 1326 </xs:simpleType> 1327 1328 <xs:simpleType name="ItemId"> 1329 <xs:restriction base="xs:int"> 1330 <xs:enumeration value="1"> 1331 <xs:annotation> 1332 <xs:documentation>Stone</xs:documentation> 1333 </xs:annotation> 1334 </xs:enumeration> 1335 <xs:enumeration value="2"> 1336 <xs:annotation> 1337 <xs:documentation>Grass Block</xs:documentation> 1338 </xs:annotation> 1339 </xs:enumeration> 1340 <xs:enumeration value="3"> 1341 <xs:annotation> 1342 <xs:documentation>Dirt</xs:documentation> 1343 </xs:annotation> 1344 </xs:enumeration> 1345 <xs:enumeration value="4"> 1346 <xs:annotation> 1347 <xs:documentation>Cobblestone</xs:documentation> 1348 </xs:annotation> 1349 </xs:enumeration> 1350 <xs:enumeration value="5"> 1351 <xs:annotation> 1352 <xs:documentation>Wooden Planks</xs:documentation> 1353 </xs:annotation> 1354 </xs:enumeration> 1355 <xs:enumeration value="6"> 1356 <xs:annotation> 1357 <xs:documentation>Sapling</xs:documentation> 1358 </xs:annotation> 1359 </xs:enumeration> 1360 <xs:enumeration value="7"> 1361 <xs:annotation> 1362 <xs:documentation>Bedrock</xs:documentation> 1363 </xs:annotation> 1364 </xs:enumeration> 1365 <xs:enumeration value="8"> 1366 <xs:annotation> 1367 <xs:documentation>Water</xs:documentation> 1368 </xs:annotation> 1369 </xs:enumeration> 1370 <xs:enumeration value="9"> 1371 <xs:annotation> 1372 <xs:documentation>Water</xs:documentation> 1373 </xs:annotation> 1374 </xs:enumeration> 1375 <xs:enumeration value="10"> 1376 <xs:annotation> 1377 <xs:documentation>Lava</xs:documentation> 1378 </xs:annotation> 1379 </xs:enumeration> 1380 <xs:enumeration value="11"> 1381 <xs:annotation> 1382 <xs:documentation>Lava</xs:documentation> 1383 </xs:annotation> 1384 </xs:enumeration> 1385 <xs:enumeration value="12"> 1386 <xs:annotation> 1387 <xs:documentation>Sand</xs:documentation> 1388 </xs:annotation> 1389 </xs:enumeration> 1390 <xs:enumeration value="13"> 1391 <xs:annotation> 1392 <xs:documentation>Gravel</xs:documentation> 1393 </xs:annotation> 1394 </xs:enumeration> 1395 <xs:enumeration value="14"> 1396 <xs:annotation> 1397 <xs:documentation>Gold Ore</xs:documentation> 1398 </xs:annotation> 1399 </xs:enumeration> 1400 <xs:enumeration value="15"> 1401 <xs:annotation> 1402 <xs:documentation>Iron Ore</xs:documentation> 1403 </xs:annotation> 1404 </xs:enumeration> 1405 <xs:enumeration value="16"> 1406 <xs:annotation> 1407 <xs:documentation>Coal Ore</xs:documentation> 1408 </xs:annotation> 1409 </xs:enumeration> 1410 <xs:enumeration value="17"> 1411 <xs:annotation> 1412 <xs:documentation>Wood</xs:documentation> 1413 </xs:annotation> 1414 </xs:enumeration> 1415 <xs:enumeration value="18"> 1416 <xs:annotation> 1417 <xs:documentation>Leaves</xs:documentation> 1418 </xs:annotation> 1419 </xs:enumeration> 1420 <xs:enumeration value="19"> 1421 <xs:annotation> 1422 <xs:documentation>Sponge</xs:documentation> 1423 </xs:annotation> 1424 </xs:enumeration> 1425 <xs:enumeration value="20"> 1426 <xs:annotation> 1427 <xs:documentation>Glass</xs:documentation> 1428 </xs:annotation> 1429 </xs:enumeration> 1430 <xs:enumeration value="21"> 1431 <xs:annotation> 1432 <xs:documentation>Lapis Lazuli Ore</xs:documentation> 1433 </xs:annotation> 1434 </xs:enumeration> 1435 <xs:enumeration value="22"> 1436 <xs:annotation> 1437 <xs:documentation>Lapis Lazuli Block</xs:documentation> 1438 </xs:annotation> 1439 </xs:enumeration> 1440 <xs:enumeration value="23"> 1441 <xs:annotation> 1442 <xs:documentation>Dispenser</xs:documentation> 1443 </xs:annotation> 1444 </xs:enumeration> 1445 <xs:enumeration value="24"> 1446 <xs:annotation> 1447 <xs:documentation>Sandstone</xs:documentation> 1448 </xs:annotation> 1449 </xs:enumeration> 1450 <xs:enumeration value="25"> 1451 <xs:annotation> 1452 <xs:documentation>Note Block</xs:documentation> 1453 </xs:annotation> 1454 </xs:enumeration> 1455 <xs:enumeration value="26"> 1456 <xs:annotation> 1457 <xs:documentation>Bed</xs:documentation> 1458 </xs:annotation> 1459 </xs:enumeration> 1460 <xs:enumeration value="27"> 1461 <xs:annotation> 1462 <xs:documentation>Powered Rail</xs:documentation> 1463 </xs:annotation> 1464 </xs:enumeration> 1465 <xs:enumeration value="28"> 1466 <xs:annotation> 1467 <xs:documentation>Detector Rail</xs:documentation> 1468 </xs:annotation> 1469 </xs:enumeration> 1470 <xs:enumeration value="29"> 1471 <xs:annotation> 1472 <xs:documentation>Sticky Piston</xs:documentation> 1473 </xs:annotation> 1474 </xs:enumeration> 1475 <xs:enumeration value="30"> 1476 <xs:annotation> 1477 <xs:documentation>Web</xs:documentation> 1478 </xs:annotation> 1479 </xs:enumeration> 1480 <xs:enumeration value="31"> 1481 <xs:annotation> 1482 <xs:documentation>Tall Grass</xs:documentation> 1483 </xs:annotation> 1484 </xs:enumeration> 1485 <xs:enumeration value="32"> 1486 <xs:annotation> 1487 <xs:documentation>Dead Bush</xs:documentation> 1488 </xs:annotation> 1489 </xs:enumeration> 1490 <xs:enumeration value="33"> 1491 <xs:annotation> 1492 <xs:documentation>Piston</xs:documentation> 1493 </xs:annotation> 1494 </xs:enumeration> 1495 <xs:enumeration value="34"> 1496 <xs:annotation> 1497 <xs:documentation>Piston</xs:documentation> 1498 </xs:annotation> 1499 </xs:enumeration> 1500 <xs:enumeration value="35"> 1501 <xs:annotation> 1502 <xs:documentation>Wool</xs:documentation> 1503 </xs:annotation> 1504 </xs:enumeration> 1505 <xs:enumeration value="36"> 1506 <xs:annotation> 1507 <xs:documentation>Piston</xs:documentation> 1508 </xs:annotation> 1509 </xs:enumeration> 1510 <xs:enumeration value="37"> 1511 <xs:annotation> 1512 <xs:documentation>Flower</xs:documentation> 1513 </xs:annotation> 1514 </xs:enumeration> 1515 <xs:enumeration value="38"> 1516 <xs:annotation> 1517 <xs:documentation>Rose</xs:documentation> 1518 </xs:annotation> 1519 </xs:enumeration> 1520 <xs:enumeration value="39"> 1521 <xs:annotation> 1522 <xs:documentation>Mushroom</xs:documentation> 1523 </xs:annotation> 1524 </xs:enumeration> 1525 <xs:enumeration value="40"> 1526 <xs:annotation> 1527 <xs:documentation>Mushroom</xs:documentation> 1528 </xs:annotation> 1529 </xs:enumeration> 1530 <xs:enumeration value="41"> 1531 <xs:annotation> 1532 <xs:documentation>Block of Gold</xs:documentation> 1533 </xs:annotation> 1534 </xs:enumeration> 1535 <xs:enumeration value="42"> 1536 <xs:annotation> 1537 <xs:documentation>Block of Iron</xs:documentation> 1538 </xs:annotation> 1539 </xs:enumeration> 1540 <xs:enumeration value="43"> 1541 <xs:annotation> 1542 <xs:documentation>Stone Slab</xs:documentation> 1543 </xs:annotation> 1544 </xs:enumeration> 1545 <xs:enumeration value="44"> 1546 <xs:annotation> 1547 <xs:documentation>Stone Slab</xs:documentation> 1548 </xs:annotation> 1549 </xs:enumeration> 1550 <xs:enumeration value="45"> 1551 <xs:annotation> 1552 <xs:documentation>Bricks</xs:documentation> 1553 </xs:annotation> 1554 </xs:enumeration> 1555 <xs:enumeration value="46"> 1556 <xs:annotation> 1557 <xs:documentation>TNT</xs:documentation> 1558 </xs:annotation> 1559 </xs:enumeration> 1560 <xs:enumeration value="47"> 1561 <xs:annotation> 1562 <xs:documentation>Bookshelf</xs:documentation> 1563 </xs:annotation> 1564 </xs:enumeration> 1565 <xs:enumeration value="48"> 1566 <xs:annotation> 1567 <xs:documentation>Moss Stone</xs:documentation> 1568 </xs:annotation> 1569 </xs:enumeration> 1570 <xs:enumeration value="49"> 1571 <xs:annotation> 1572 <xs:documentation>Obsidian</xs:documentation> 1573 </xs:annotation> 1574 </xs:enumeration> 1575 <xs:enumeration value="50"> 1576 <xs:annotation> 1577 <xs:documentation>Torch</xs:documentation> 1578 </xs:annotation> 1579 </xs:enumeration> 1580 <xs:enumeration value="51"> 1581 <xs:annotation> 1582 <xs:documentation>Fire</xs:documentation> 1583 </xs:annotation> 1584 </xs:enumeration> 1585 <xs:enumeration value="52"> 1586 <xs:annotation> 1587 <xs:documentation>Monster Spawner</xs:documentation> 1588 </xs:annotation> 1589 </xs:enumeration> 1590 <xs:enumeration value="53"> 1591 <xs:annotation> 1592 <xs:documentation>Wooden Stairs</xs:documentation> 1593 </xs:annotation> 1594 </xs:enumeration> 1595 <xs:enumeration value="54"> 1596 <xs:annotation> 1597 <xs:documentation>Chest</xs:documentation> 1598 </xs:annotation> 1599 </xs:enumeration> 1600 <xs:enumeration value="55"> 1601 <xs:annotation> 1602 <xs:documentation>Redstone Dust</xs:documentation> 1603 </xs:annotation> 1604 </xs:enumeration> 1605 <xs:enumeration value="56"> 1606 <xs:annotation> 1607 <xs:documentation>Diamond Ore</xs:documentation> 1608 </xs:annotation> 1609 </xs:enumeration> 1610 <xs:enumeration value="57"> 1611 <xs:annotation> 1612 <xs:documentation>Block of Diamond</xs:documentation> 1613 </xs:annotation> 1614 </xs:enumeration> 1615 <xs:enumeration value="58"> 1616 <xs:annotation> 1617 <xs:documentation>Crafting Table</xs:documentation> 1618 </xs:annotation> 1619 </xs:enumeration> 1620 <xs:enumeration value="59"> 1621 <xs:annotation> 1622 <xs:documentation>Crops</xs:documentation> 1623 </xs:annotation> 1624 </xs:enumeration> 1625 <xs:enumeration value="60"> 1626 <xs:annotation> 1627 <xs:documentation>Farmland</xs:documentation> 1628 </xs:annotation> 1629 </xs:enumeration> 1630 <xs:enumeration value="61"> 1631 <xs:annotation> 1632 <xs:documentation>Furnace</xs:documentation> 1633 </xs:annotation> 1634 </xs:enumeration> 1635 <xs:enumeration value="62"> 1636 <xs:annotation> 1637 <xs:documentation>Furnace</xs:documentation> 1638 </xs:annotation> 1639 </xs:enumeration> 1640 <xs:enumeration value="63"> 1641 <xs:annotation> 1642 <xs:documentation>Sign</xs:documentation> 1643 </xs:annotation> 1644 </xs:enumeration> 1645 <xs:enumeration value="64"> 1646 <xs:annotation> 1647 <xs:documentation>Wooden Door</xs:documentation> 1648 </xs:annotation> 1649 </xs:enumeration> 1650 <xs:enumeration value="65"> 1651 <xs:annotation> 1652 <xs:documentation>Ladder</xs:documentation> 1653 </xs:annotation> 1654 </xs:enumeration> 1655 <xs:enumeration value="66"> 1656 <xs:annotation> 1657 <xs:documentation>Rail</xs:documentation> 1658 </xs:annotation> 1659 </xs:enumeration> 1660 <xs:enumeration value="67"> 1661 <xs:annotation> 1662 <xs:documentation>Stone Stairs</xs:documentation> 1663 </xs:annotation> 1664 </xs:enumeration> 1665 <xs:enumeration value="68"> 1666 <xs:annotation> 1667 <xs:documentation>Sign</xs:documentation> 1668 </xs:annotation> 1669 </xs:enumeration> 1670 <xs:enumeration value="69"> 1671 <xs:annotation> 1672 <xs:documentation>Lever</xs:documentation> 1673 </xs:annotation> 1674 </xs:enumeration> 1675 <xs:enumeration value="70"> 1676 <xs:annotation> 1677 <xs:documentation>Pressure Plate</xs:documentation> 1678 </xs:annotation> 1679 </xs:enumeration> 1680 <xs:enumeration value="71"> 1681 <xs:annotation> 1682 <xs:documentation>Iron Door</xs:documentation> 1683 </xs:annotation> 1684 </xs:enumeration> 1685 <xs:enumeration value="72"> 1686 <xs:annotation> 1687 <xs:documentation>Pressure Plate</xs:documentation> 1688 </xs:annotation> 1689 </xs:enumeration> 1690 <xs:enumeration value="73"> 1691 <xs:annotation> 1692 <xs:documentation>Redstone Ore</xs:documentation> 1693 </xs:annotation> 1694 </xs:enumeration> 1695 <xs:enumeration value="74"> 1696 <xs:annotation> 1697 <xs:documentation>Redstone Ore</xs:documentation> 1698 </xs:annotation> 1699 </xs:enumeration> 1700 <xs:enumeration value="75"> 1701 <xs:annotation> 1702 <xs:documentation>Redstone Torch</xs:documentation> 1703 </xs:annotation> 1704 </xs:enumeration> 1705 <xs:enumeration value="76"> 1706 <xs:annotation> 1707 <xs:documentation>Redstone Torch</xs:documentation> 1708 </xs:annotation> 1709 </xs:enumeration> 1710 <xs:enumeration value="77"> 1711 <xs:annotation> 1712 <xs:documentation>Button</xs:documentation> 1713 </xs:annotation> 1714 </xs:enumeration> 1715 <xs:enumeration value="78"> 1716 <xs:annotation> 1717 <xs:documentation>Snow</xs:documentation> 1718 </xs:annotation> 1719 </xs:enumeration> 1720 <xs:enumeration value="79"> 1721 <xs:annotation> 1722 <xs:documentation>Ice</xs:documentation> 1723 </xs:annotation> 1724 </xs:enumeration> 1725 <xs:enumeration value="80"> 1726 <xs:annotation> 1727 <xs:documentation>Snow</xs:documentation> 1728 </xs:annotation> 1729 </xs:enumeration> 1730 <xs:enumeration value="81"> 1731 <xs:annotation> 1732 <xs:documentation>Cactus</xs:documentation> 1733 </xs:annotation> 1734 </xs:enumeration> 1735 <xs:enumeration value="82"> 1736 <xs:annotation> 1737 <xs:documentation>Clay</xs:documentation> 1738 </xs:annotation> 1739 </xs:enumeration> 1740 <xs:enumeration value="83"> 1741 <xs:annotation> 1742 <xs:documentation>Sugar Cane</xs:documentation> 1743 </xs:annotation> 1744 </xs:enumeration> 1745 <xs:enumeration value="84"> 1746 <xs:annotation> 1747 <xs:documentation>Jukebox</xs:documentation> 1748 </xs:annotation> 1749 </xs:enumeration> 1750 <xs:enumeration value="85"> 1751 <xs:annotation> 1752 <xs:documentation>Fence</xs:documentation> 1753 </xs:annotation> 1754 </xs:enumeration> 1755 <xs:enumeration value="86"> 1756 <xs:annotation> 1757 <xs:documentation>Pumpkin</xs:documentation> 1758 </xs:annotation> 1759 </xs:enumeration> 1760 <xs:enumeration value="87"> 1761 <xs:annotation> 1762 <xs:documentation>Netherrack</xs:documentation> 1763 </xs:annotation> 1764 </xs:enumeration> 1765 <xs:enumeration value="88"> 1766 <xs:annotation> 1767 <xs:documentation>Soul Sand</xs:documentation> 1768 </xs:annotation> 1769 </xs:enumeration> 1770 <xs:enumeration value="89"> 1771 <xs:annotation> 1772 <xs:documentation>Glowstone</xs:documentation> 1773 </xs:annotation> 1774 </xs:enumeration> 1775 <xs:enumeration value="90"> 1776 <xs:annotation> 1777 <xs:documentation>Portal</xs:documentation> 1778 </xs:annotation> 1779 </xs:enumeration> 1780 <xs:enumeration value="91"> 1781 <xs:annotation> 1782 <xs:documentation>Jack-O-Lantern</xs:documentation> 1783 </xs:annotation> 1784 </xs:enumeration> 1785 <xs:enumeration value="92"> 1786 <xs:annotation> 1787 <xs:documentation>Cake</xs:documentation> 1788 </xs:annotation> 1789 </xs:enumeration> 1790 <xs:enumeration value="93"> 1791 <xs:annotation> 1792 <xs:documentation>Redstone Repeater</xs:documentation> 1793 </xs:annotation> 1794 </xs:enumeration> 1795 <xs:enumeration value="94"> 1796 <xs:annotation> 1797 <xs:documentation>Redstone Repeater</xs:documentation> 1798 </xs:annotation> 1799 </xs:enumeration> 1800 <xs:enumeration value="95"> 1801 <xs:annotation> 1802 <xs:documentation>Locked Chest</xs:documentation> 1803 </xs:annotation> 1804 </xs:enumeration> 1805 <xs:enumeration value="96"> 1806 <xs:annotation> 1807 <xs:documentation>Trapdoor</xs:documentation> 1808 </xs:annotation> 1809 </xs:enumeration> 1810 <xs:enumeration value="97"> 1811 <xs:annotation> 1812 <xs:documentation>Silverfish Stone</xs:documentation> 1813 </xs:annotation> 1814 </xs:enumeration> 1815 <xs:enumeration value="98"> 1816 <xs:annotation> 1817 <xs:documentation>Stone Bricks</xs:documentation> 1818 </xs:annotation> 1819 </xs:enumeration> 1820 <xs:enumeration value="99"> 1821 <xs:annotation> 1822 <xs:documentation>Mushroom</xs:documentation> 1823 </xs:annotation> 1824 </xs:enumeration> 1825 <xs:enumeration value="100"> 1826 <xs:annotation> 1827 <xs:documentation>Mushroom</xs:documentation> 1828 </xs:annotation> 1829 </xs:enumeration> 1830 <xs:enumeration value="101"> 1831 <xs:annotation> 1832 <xs:documentation>Iron Bars</xs:documentation> 1833 </xs:annotation> 1834 </xs:enumeration> 1835 <xs:enumeration value="102"> 1836 <xs:annotation> 1837 <xs:documentation>Glass Pane</xs:documentation> 1838 </xs:annotation> 1839 </xs:enumeration> 1840 <xs:enumeration value="103"> 1841 <xs:annotation> 1842 <xs:documentation>Melon</xs:documentation> 1843 </xs:annotation> 1844 </xs:enumeration> 1845 <xs:enumeration value="104"> 1846 <xs:annotation> 1847 <xs:documentation>Pumpkin Stem</xs:documentation> 1848 </xs:annotation> 1849 </xs:enumeration> 1850 <xs:enumeration value="105"> 1851 <xs:annotation> 1852 <xs:documentation>Melon Stem</xs:documentation> 1853 </xs:annotation> 1854 </xs:enumeration> 1855 <xs:enumeration value="106"> 1856 <xs:annotation> 1857 <xs:documentation>Vines</xs:documentation> 1858 </xs:annotation> 1859 </xs:enumeration> 1860 <xs:enumeration value="107"> 1861 <xs:annotation> 1862 <xs:documentation>Fence Gate</xs:documentation> 1863 </xs:annotation> 1864 </xs:enumeration> 1865 <xs:enumeration value="108"> 1866 <xs:annotation> 1867 <xs:documentation>Brick Stairs</xs:documentation> 1868 </xs:annotation> 1869 </xs:enumeration> 1870 <xs:enumeration value="109"> 1871 <xs:annotation> 1872 <xs:documentation>Stone Brick Stairs</xs:documentation> 1873 </xs:annotation> 1874 </xs:enumeration> 1875 <xs:enumeration value="110"> 1876 <xs:annotation> 1877 <xs:documentation>Mycelium</xs:documentation> 1878 </xs:annotation> 1879 </xs:enumeration> 1880 <xs:enumeration value="111"> 1881 <xs:annotation> 1882 <xs:documentation>Lily Pad</xs:documentation> 1883 </xs:annotation> 1884 </xs:enumeration> 1885 <xs:enumeration value="112"> 1886 <xs:annotation> 1887 <xs:documentation>Nether Brick</xs:documentation> 1888 </xs:annotation> 1889 </xs:enumeration> 1890 <xs:enumeration value="113"> 1891 <xs:annotation> 1892 <xs:documentation>Nether Brick Fence</xs:documentation> 1893 </xs:annotation> 1894 </xs:enumeration> 1895 <xs:enumeration value="114"> 1896 <xs:annotation> 1897 <xs:documentation>Nether Brick Stairs</xs:documentation> 1898 </xs:annotation> 1899 </xs:enumeration> 1900 <xs:enumeration value="115"> 1901 <xs:annotation> 1902 <xs:documentation>Nether Wart</xs:documentation> 1903 </xs:annotation> 1904 </xs:enumeration> 1905 <xs:enumeration value="116"> 1906 <xs:annotation> 1907 <xs:documentation>Enchantment Table</xs:documentation> 1908 </xs:annotation> 1909 </xs:enumeration> 1910 <xs:enumeration value="117"> 1911 <xs:annotation> 1912 <xs:documentation>Brewing Stand</xs:documentation> 1913 </xs:annotation> 1914 </xs:enumeration> 1915 <xs:enumeration value="118"> 1916 <xs:annotation> 1917 <xs:documentation>Cauldron</xs:documentation> 1918 </xs:annotation> 1919 </xs:enumeration> 1920 <xs:enumeration value="119"> 1921 <xs:annotation> 1922 <xs:documentation>End Portal</xs:documentation> 1923 </xs:annotation> 1924 </xs:enumeration> 1925 <xs:enumeration value="120"> 1926 <xs:annotation> 1927 <xs:documentation>End Portal Frame</xs:documentation> 1928 </xs:annotation> 1929 </xs:enumeration> 1930 <xs:enumeration value="121"> 1931 <xs:annotation> 1932 <xs:documentation>End Stone</xs:documentation> 1933 </xs:annotation> 1934 </xs:enumeration> 1935 <xs:enumeration value="122"> 1936 <xs:annotation> 1937 <xs:documentation>Dragon Egg</xs:documentation> 1938 </xs:annotation> 1939 </xs:enumeration> 1940 <xs:enumeration value="123"> 1941 <xs:annotation> 1942 <xs:documentation>Redstone Lamp</xs:documentation> 1943 </xs:annotation> 1944 </xs:enumeration> 1945 <xs:enumeration value="124"> 1946 <xs:annotation> 1947 <xs:documentation>Redstone Lamp</xs:documentation> 1948 </xs:annotation> 1949 </xs:enumeration> 1950 <xs:enumeration value="125"> 1951 <xs:annotation> 1952 <xs:documentation>Oak Wood Slab</xs:documentation> 1953 </xs:annotation> 1954 </xs:enumeration> 1955 <xs:enumeration value="126"> 1956 <xs:annotation> 1957 <xs:documentation>Oak Wood Slab</xs:documentation> 1958 </xs:annotation> 1959 </xs:enumeration> 1960 <xs:enumeration value="127"> 1961 <xs:annotation> 1962 <xs:documentation>Cocoa</xs:documentation> 1963 </xs:annotation> 1964 </xs:enumeration> 1965 <xs:enumeration value="128"> 1966 <xs:annotation> 1967 <xs:documentation>Sandstone Stairs</xs:documentation> 1968 </xs:annotation> 1969 </xs:enumeration> 1970 <xs:enumeration value="129"> 1971 <xs:annotation> 1972 <xs:documentation>Emerald Ore</xs:documentation> 1973 </xs:annotation> 1974 </xs:enumeration> 1975 <xs:enumeration value="130"> 1976 <xs:annotation> 1977 <xs:documentation>Ender Chest</xs:documentation> 1978 </xs:annotation> 1979 </xs:enumeration> 1980 <xs:enumeration value="131"> 1981 <xs:annotation> 1982 <xs:documentation>Tripwire Hook</xs:documentation> 1983 </xs:annotation> 1984 </xs:enumeration> 1985 <xs:enumeration value="132"> 1986 <xs:annotation> 1987 <xs:documentation>Tripwire</xs:documentation> 1988 </xs:annotation> 1989 </xs:enumeration> 1990 <xs:enumeration value="133"> 1991 <xs:annotation> 1992 <xs:documentation>Block of Emerald</xs:documentation> 1993 </xs:annotation> 1994 </xs:enumeration> 1995 <xs:enumeration value="134"> 1996 <xs:annotation> 1997 <xs:documentation>Spruce Wood Stairs</xs:documentation> 1998 </xs:annotation> 1999 </xs:enumeration> 2000 <xs:enumeration value="135"> 2001 <xs:annotation> 2002 <xs:documentation>Birch Wood Stairs</xs:documentation> 2003 </xs:annotation> 2004 </xs:enumeration> 2005 <xs:enumeration value="136"> 2006 <xs:annotation> 2007 <xs:documentation>Jungle Wood Stairs</xs:documentation> 2008 </xs:annotation> 2009 </xs:enumeration> 2010 <xs:enumeration value="139"> 2011 <xs:annotation> 2012 <xs:documentation>Cobblestone Wall</xs:documentation> 2013 </xs:annotation> 2014 </xs:enumeration> 2015 <xs:enumeration value="140"> 2016 <xs:annotation> 2017 <xs:documentation>Flower Pot</xs:documentation> 2018 </xs:annotation> 2019 </xs:enumeration> 2020 <xs:enumeration value="141"> 2021 <xs:annotation> 2022 <xs:documentation>Carrots</xs:documentation> 2023 </xs:annotation> 2024 </xs:enumeration> 2025 <xs:enumeration value="142"> 2026 <xs:annotation> 2027 <xs:documentation>Potatoes</xs:documentation> 2028 </xs:annotation> 2029 </xs:enumeration> 2030 <xs:enumeration value="143"> 2031 <xs:annotation> 2032 <xs:documentation>Button</xs:documentation> 2033 </xs:annotation> 2034 </xs:enumeration> 2035 <xs:enumeration value="144"> 2036 <xs:annotation> 2037 <xs:documentation>Skull</xs:documentation> 2038 </xs:annotation> 2039 </xs:enumeration> 2040 <xs:enumeration value="145"> 2041 <xs:annotation> 2042 <xs:documentation>Anvil</xs:documentation> 2043 </xs:annotation> 2044 </xs:enumeration> 2045 <xs:enumeration value="153"> 2046 <xs:annotation> 2047 <xs:documentation>Nether Quartz Ore</xs:documentation> 2048 </xs:annotation> 2049 </xs:enumeration> 2050 <xs:enumeration value="155"> 2051 <xs:annotation> 2052 <xs:documentation>Block of Quartz</xs:documentation> 2053 </xs:annotation> 2054 </xs:enumeration> 2055 <xs:enumeration value="156"> 2056 <xs:annotation> 2057 <xs:documentation>Quartz Stairs</xs:documentation> 2058 </xs:annotation> 2059 </xs:enumeration> 2060 <xs:enumeration value="171"> 2061 <xs:annotation> 2062 <xs:documentation>Carpet</xs:documentation> 2063 </xs:annotation> 2064 </xs:enumeration> 2065 <xs:enumeration value="256"> 2066 <xs:annotation> 2067 <xs:documentation>Iron Shovel</xs:documentation> 2068 </xs:annotation> 2069 </xs:enumeration> 2070 <xs:enumeration value="257"> 2071 <xs:annotation> 2072 <xs:documentation>Iron Pickaxe</xs:documentation> 2073 </xs:annotation> 2074 </xs:enumeration> 2075 <xs:enumeration value="258"> 2076 <xs:annotation> 2077 <xs:documentation>Iron Axe</xs:documentation> 2078 </xs:annotation> 2079 </xs:enumeration> 2080 <xs:enumeration value="259"> 2081 <xs:annotation> 2082 <xs:documentation>Flint and Steel</xs:documentation> 2083 </xs:annotation> 2084 </xs:enumeration> 2085 <xs:enumeration value="260"> 2086 <xs:annotation> 2087 <xs:documentation>Apple</xs:documentation> 2088 </xs:annotation> 2089 </xs:enumeration> 2090 <xs:enumeration value="261"> 2091 <xs:annotation> 2092 <xs:documentation>Bow</xs:documentation> 2093 </xs:annotation> 2094 </xs:enumeration> 2095 <xs:enumeration value="262"> 2096 <xs:annotation> 2097 <xs:documentation>Arrow</xs:documentation> 2098 </xs:annotation> 2099 </xs:enumeration> 2100 <xs:enumeration value="263"> 2101 <xs:annotation> 2102 <xs:documentation>Coal</xs:documentation> 2103 </xs:annotation> 2104 </xs:enumeration> 2105 <xs:enumeration value="264"> 2106 <xs:annotation> 2107 <xs:documentation>Diamond</xs:documentation> 2108 </xs:annotation> 2109 </xs:enumeration> 2110 <xs:enumeration value="265"> 2111 <xs:annotation> 2112 <xs:documentation>Iron Ingot</xs:documentation> 2113 </xs:annotation> 2114 </xs:enumeration> 2115 <xs:enumeration value="266"> 2116 <xs:annotation> 2117 <xs:documentation>Gold Ingot</xs:documentation> 2118 </xs:annotation> 2119 </xs:enumeration> 2120 <xs:enumeration value="267"> 2121 <xs:annotation> 2122 <xs:documentation>Iron Sword</xs:documentation> 2123 </xs:annotation> 2124 </xs:enumeration> 2125 <xs:enumeration value="268"> 2126 <xs:annotation> 2127 <xs:documentation>Wooden Sword</xs:documentation> 2128 </xs:annotation> 2129 </xs:enumeration> 2130 <xs:enumeration value="269"> 2131 <xs:annotation> 2132 <xs:documentation>Wooden Shovel</xs:documentation> 2133 </xs:annotation> 2134 </xs:enumeration> 2135 <xs:enumeration value="270"> 2136 <xs:annotation> 2137 <xs:documentation>Wooden Pickaxe</xs:documentation> 2138 </xs:annotation> 2139 </xs:enumeration> 2140 <xs:enumeration value="271"> 2141 <xs:annotation> 2142 <xs:documentation>Wooden Axe</xs:documentation> 2143 </xs:annotation> 2144 </xs:enumeration> 2145 <xs:enumeration value="272"> 2146 <xs:annotation> 2147 <xs:documentation>Stone Sword</xs:documentation> 2148 </xs:annotation> 2149 </xs:enumeration> 2150 <xs:enumeration value="273"> 2151 <xs:annotation> 2152 <xs:documentation>Stone Shovel</xs:documentation> 2153 </xs:annotation> 2154 </xs:enumeration> 2155 <xs:enumeration value="274"> 2156 <xs:annotation> 2157 <xs:documentation>Stone Pickaxe</xs:documentation> 2158 </xs:annotation> 2159 </xs:enumeration> 2160 <xs:enumeration value="275"> 2161 <xs:annotation> 2162 <xs:documentation>Stone Axe</xs:documentation> 2163 </xs:annotation> 2164 </xs:enumeration> 2165 <xs:enumeration value="276"> 2166 <xs:annotation> 2167 <xs:documentation>Diamond Sword</xs:documentation> 2168 </xs:annotation> 2169 </xs:enumeration> 2170 <xs:enumeration value="277"> 2171 <xs:annotation> 2172 <xs:documentation>Diamond Shovel</xs:documentation> 2173 </xs:annotation> 2174 </xs:enumeration> 2175 <xs:enumeration value="278"> 2176 <xs:annotation> 2177 <xs:documentation>Diamond Pickaxe</xs:documentation> 2178 </xs:annotation> 2179 </xs:enumeration> 2180 <xs:enumeration value="279"> 2181 <xs:annotation> 2182 <xs:documentation>Diamond Axe</xs:documentation> 2183 </xs:annotation> 2184 </xs:enumeration> 2185 <xs:enumeration value="280"> 2186 <xs:annotation> 2187 <xs:documentation>Stick</xs:documentation> 2188 </xs:annotation> 2189 </xs:enumeration> 2190 <xs:enumeration value="281"> 2191 <xs:annotation> 2192 <xs:documentation>Bowl</xs:documentation> 2193 </xs:annotation> 2194 </xs:enumeration> 2195 <xs:enumeration value="282"> 2196 <xs:annotation> 2197 <xs:documentation>Mushroom Stew</xs:documentation> 2198 </xs:annotation> 2199 </xs:enumeration> 2200 <xs:enumeration value="283"> 2201 <xs:annotation> 2202 <xs:documentation>Golden Sword</xs:documentation> 2203 </xs:annotation> 2204 </xs:enumeration> 2205 <xs:enumeration value="284"> 2206 <xs:annotation> 2207 <xs:documentation>Golden Shovel</xs:documentation> 2208 </xs:annotation> 2209 </xs:enumeration> 2210 <xs:enumeration value="285"> 2211 <xs:annotation> 2212 <xs:documentation>Golden Pickaxe</xs:documentation> 2213 </xs:annotation> 2214 </xs:enumeration> 2215 <xs:enumeration value="286"> 2216 <xs:annotation> 2217 <xs:documentation>Golden Axe</xs:documentation> 2218 </xs:annotation> 2219 </xs:enumeration> 2220 <xs:enumeration value="287"> 2221 <xs:annotation> 2222 <xs:documentation>String</xs:documentation> 2223 </xs:annotation> 2224 </xs:enumeration> 2225 <xs:enumeration value="288"> 2226 <xs:annotation> 2227 <xs:documentation>Feather</xs:documentation> 2228 </xs:annotation> 2229 </xs:enumeration> 2230 <xs:enumeration value="289"> 2231 <xs:annotation> 2232 <xs:documentation>Gunpowder</xs:documentation> 2233 </xs:annotation> 2234 </xs:enumeration> 2235 <xs:enumeration value="290"> 2236 <xs:annotation> 2237 <xs:documentation>Wooden Hoe</xs:documentation> 2238 </xs:annotation> 2239 </xs:enumeration> 2240 <xs:enumeration value="291"> 2241 <xs:annotation> 2242 <xs:documentation>Stone Hoe</xs:documentation> 2243 </xs:annotation> 2244 </xs:enumeration> 2245 <xs:enumeration value="292"> 2246 <xs:annotation> 2247 <xs:documentation>Iron Hoe</xs:documentation> 2248 </xs:annotation> 2249 </xs:enumeration> 2250 <xs:enumeration value="293"> 2251 <xs:annotation> 2252 <xs:documentation>Diamond Hoe</xs:documentation> 2253 </xs:annotation> 2254 </xs:enumeration> 2255 <xs:enumeration value="294"> 2256 <xs:annotation> 2257 <xs:documentation>Golden Hoe</xs:documentation> 2258 </xs:annotation> 2259 </xs:enumeration> 2260 <xs:enumeration value="295"> 2261 <xs:annotation> 2262 <xs:documentation>Seeds</xs:documentation> 2263 </xs:annotation> 2264 </xs:enumeration> 2265 <xs:enumeration value="296"> 2266 <xs:annotation> 2267 <xs:documentation>Wheat</xs:documentation> 2268 </xs:annotation> 2269 </xs:enumeration> 2270 <xs:enumeration value="297"> 2271 <xs:annotation> 2272 <xs:documentation>Bread</xs:documentation> 2273 </xs:annotation> 2274 </xs:enumeration> 2275 <xs:enumeration value="298"> 2276 <xs:annotation> 2277 <xs:documentation>Leather Cap</xs:documentation> 2278 </xs:annotation> 2279 </xs:enumeration> 2280 <xs:enumeration value="299"> 2281 <xs:annotation> 2282 <xs:documentation>Leather Tunic</xs:documentation> 2283 </xs:annotation> 2284 </xs:enumeration> 2285 <xs:enumeration value="300"> 2286 <xs:annotation> 2287 <xs:documentation>Leather Pants</xs:documentation> 2288 </xs:annotation> 2289 </xs:enumeration> 2290 <xs:enumeration value="301"> 2291 <xs:annotation> 2292 <xs:documentation>Leather Boots</xs:documentation> 2293 </xs:annotation> 2294 </xs:enumeration> 2295 <xs:enumeration value="302"> 2296 <xs:annotation> 2297 <xs:documentation>Chain Helmet</xs:documentation> 2298 </xs:annotation> 2299 </xs:enumeration> 2300 <xs:enumeration value="303"> 2301 <xs:annotation> 2302 <xs:documentation>Chain Chestplate</xs:documentation> 2303 </xs:annotation> 2304 </xs:enumeration> 2305 <xs:enumeration value="304"> 2306 <xs:annotation> 2307 <xs:documentation>Chain Leggings</xs:documentation> 2308 </xs:annotation> 2309 </xs:enumeration> 2310 <xs:enumeration value="305"> 2311 <xs:annotation> 2312 <xs:documentation>Chain Boots</xs:documentation> 2313 </xs:annotation> 2314 </xs:enumeration> 2315 <xs:enumeration value="306"> 2316 <xs:annotation> 2317 <xs:documentation>Iron Helmet</xs:documentation> 2318 </xs:annotation> 2319 </xs:enumeration> 2320 <xs:enumeration value="307"> 2321 <xs:annotation> 2322 <xs:documentation>Iron Chestplate</xs:documentation> 2323 </xs:annotation> 2324 </xs:enumeration> 2325 <xs:enumeration value="308"> 2326 <xs:annotation> 2327 <xs:documentation>Iron Leggings</xs:documentation> 2328 </xs:annotation> 2329 </xs:enumeration> 2330 <xs:enumeration value="309"> 2331 <xs:annotation> 2332 <xs:documentation>Iron Boots</xs:documentation> 2333 </xs:annotation> 2334 </xs:enumeration> 2335 <xs:enumeration value="310"> 2336 <xs:annotation> 2337 <xs:documentation>Diamond Helmet</xs:documentation> 2338 </xs:annotation> 2339 </xs:enumeration> 2340 <xs:enumeration value="311"> 2341 <xs:annotation> 2342 <xs:documentation>Diamond Chestplate</xs:documentation> 2343 </xs:annotation> 2344 </xs:enumeration> 2345 <xs:enumeration value="312"> 2346 <xs:annotation> 2347 <xs:documentation>Diamond Leggings</xs:documentation> 2348 </xs:annotation> 2349 </xs:enumeration> 2350 <xs:enumeration value="313"> 2351 <xs:annotation> 2352 <xs:documentation>Diamond Boots</xs:documentation> 2353 </xs:annotation> 2354 </xs:enumeration> 2355 <xs:enumeration value="314"> 2356 <xs:annotation> 2357 <xs:documentation>Golden Helmet</xs:documentation> 2358 </xs:annotation> 2359 </xs:enumeration> 2360 <xs:enumeration value="315"> 2361 <xs:annotation> 2362 <xs:documentation>Golden Chestplate</xs:documentation> 2363 </xs:annotation> 2364 </xs:enumeration> 2365 <xs:enumeration value="316"> 2366 <xs:annotation> 2367 <xs:documentation>Golden Leggings</xs:documentation> 2368 </xs:annotation> 2369 </xs:enumeration> 2370 <xs:enumeration value="317"> 2371 <xs:annotation> 2372 <xs:documentation>Golden Boots</xs:documentation> 2373 </xs:annotation> 2374 </xs:enumeration> 2375 <xs:enumeration value="318"> 2376 <xs:annotation> 2377 <xs:documentation>Flint</xs:documentation> 2378 </xs:annotation> 2379 </xs:enumeration> 2380 <xs:enumeration value="319"> 2381 <xs:annotation> 2382 <xs:documentation>Raw Porkchop</xs:documentation> 2383 </xs:annotation> 2384 </xs:enumeration> 2385 <xs:enumeration value="320"> 2386 <xs:annotation> 2387 <xs:documentation>Cooked Porkchop</xs:documentation> 2388 </xs:annotation> 2389 </xs:enumeration> 2390 <xs:enumeration value="321"> 2391 <xs:annotation> 2392 <xs:documentation>Painting</xs:documentation> 2393 </xs:annotation> 2394 </xs:enumeration> 2395 <xs:enumeration value="322"> 2396 <xs:annotation> 2397 <xs:documentation>Golden Apple</xs:documentation> 2398 </xs:annotation> 2399 </xs:enumeration> 2400 <xs:enumeration value="323"> 2401 <xs:annotation> 2402 <xs:documentation>Sign</xs:documentation> 2403 </xs:annotation> 2404 </xs:enumeration> 2405 <xs:enumeration value="324"> 2406 <xs:annotation> 2407 <xs:documentation>Wooden Door</xs:documentation> 2408 </xs:annotation> 2409 </xs:enumeration> 2410 <xs:enumeration value="325"> 2411 <xs:annotation> 2412 <xs:documentation>Bucket</xs:documentation> 2413 </xs:annotation> 2414 </xs:enumeration> 2415 <xs:enumeration value="326"> 2416 <xs:annotation> 2417 <xs:documentation>Water Bucket</xs:documentation> 2418 </xs:annotation> 2419 </xs:enumeration> 2420 <xs:enumeration value="327"> 2421 <xs:annotation> 2422 <xs:documentation>Lava Bucket</xs:documentation> 2423 </xs:annotation> 2424 </xs:enumeration> 2425 <xs:enumeration value="328"> 2426 <xs:annotation> 2427 <xs:documentation>Minecart</xs:documentation> 2428 </xs:annotation> 2429 </xs:enumeration> 2430 <xs:enumeration value="329"> 2431 <xs:annotation> 2432 <xs:documentation>Saddle</xs:documentation> 2433 </xs:annotation> 2434 </xs:enumeration> 2435 <xs:enumeration value="330"> 2436 <xs:annotation> 2437 <xs:documentation>Iron Door</xs:documentation> 2438 </xs:annotation> 2439 </xs:enumeration> 2440 <xs:enumeration value="331"> 2441 <xs:annotation> 2442 <xs:documentation>Redstone</xs:documentation> 2443 </xs:annotation> 2444 </xs:enumeration> 2445 <xs:enumeration value="332"> 2446 <xs:annotation> 2447 <xs:documentation>Snowball</xs:documentation> 2448 </xs:annotation> 2449 </xs:enumeration> 2450 <xs:enumeration value="333"> 2451 <xs:annotation> 2452 <xs:documentation>Boat</xs:documentation> 2453 </xs:annotation> 2454 </xs:enumeration> 2455 <xs:enumeration value="334"> 2456 <xs:annotation> 2457 <xs:documentation>Leather</xs:documentation> 2458 </xs:annotation> 2459 </xs:enumeration> 2460 <xs:enumeration value="335"> 2461 <xs:annotation> 2462 <xs:documentation>Milk Bucket</xs:documentation> 2463 </xs:annotation> 2464 </xs:enumeration> 2465 <xs:enumeration value="336"> 2466 <xs:annotation> 2467 <xs:documentation>Brick</xs:documentation> 2468 </xs:annotation> 2469 </xs:enumeration> 2470 <xs:enumeration value="337"> 2471 <xs:annotation> 2472 <xs:documentation>Clay</xs:documentation> 2473 </xs:annotation> 2474 </xs:enumeration> 2475 <xs:enumeration value="338"> 2476 <xs:annotation> 2477 <xs:documentation>Sugar Canes</xs:documentation> 2478 </xs:annotation> 2479 </xs:enumeration> 2480 <xs:enumeration value="339"> 2481 <xs:annotation> 2482 <xs:documentation>Paper</xs:documentation> 2483 </xs:annotation> 2484 </xs:enumeration> 2485 <xs:enumeration value="340"> 2486 <xs:annotation> 2487 <xs:documentation>Book</xs:documentation> 2488 </xs:annotation> 2489 </xs:enumeration> 2490 <xs:enumeration value="341"> 2491 <xs:annotation> 2492 <xs:documentation>Slimeball</xs:documentation> 2493 </xs:annotation> 2494 </xs:enumeration> 2495 <xs:enumeration value="342"> 2496 <xs:annotation> 2497 <xs:documentation>Minecart with Chest</xs:documentation> 2498 </xs:annotation> 2499 </xs:enumeration> 2500 <xs:enumeration value="343"> 2501 <xs:annotation> 2502 <xs:documentation>Minecart with Furnace</xs:documentation> 2503 </xs:annotation> 2504 </xs:enumeration> 2505 <xs:enumeration value="344"> 2506 <xs:annotation> 2507 <xs:documentation>Egg</xs:documentation> 2508 </xs:annotation> 2509 </xs:enumeration> 2510 <xs:enumeration value="345"> 2511 <xs:annotation> 2512 <xs:documentation>Compass</xs:documentation> 2513 </xs:annotation> 2514 </xs:enumeration> 2515 <xs:enumeration value="346"> 2516 <xs:annotation> 2517 <xs:documentation>Fishing Rod</xs:documentation> 2518 </xs:annotation> 2519 </xs:enumeration> 2520 <xs:enumeration value="347"> 2521 <xs:annotation> 2522 <xs:documentation>Clock</xs:documentation> 2523 </xs:annotation> 2524 </xs:enumeration> 2525 <xs:enumeration value="348"> 2526 <xs:annotation> 2527 <xs:documentation>Glowstone Dust</xs:documentation> 2528 </xs:annotation> 2529 </xs:enumeration> 2530 <xs:enumeration value="349"> 2531 <xs:annotation> 2532 <xs:documentation>Raw Fish</xs:documentation> 2533 </xs:annotation> 2534 </xs:enumeration> 2535 <xs:enumeration value="350"> 2536 <xs:annotation> 2537 <xs:documentation>Cooked Fish</xs:documentation> 2538 </xs:annotation> 2539 </xs:enumeration> 2540 <xs:enumeration value="351"> 2541 <xs:annotation> 2542 <xs:documentation>Dye Powder</xs:documentation> 2543 </xs:annotation> 2544 </xs:enumeration> 2545 <xs:enumeration value="352"> 2546 <xs:annotation> 2547 <xs:documentation>Bone</xs:documentation> 2548 </xs:annotation> 2549 </xs:enumeration> 2550 <xs:enumeration value="353"> 2551 <xs:annotation> 2552 <xs:documentation>Sugar</xs:documentation> 2553 </xs:annotation> 2554 </xs:enumeration> 2555 <xs:enumeration value="354"> 2556 <xs:annotation> 2557 <xs:documentation>Cake</xs:documentation> 2558 </xs:annotation> 2559 </xs:enumeration> 2560 <xs:enumeration value="355"> 2561 <xs:annotation> 2562 <xs:documentation>Bed</xs:documentation> 2563 </xs:annotation> 2564 </xs:enumeration> 2565 <xs:enumeration value="356"> 2566 <xs:annotation> 2567 <xs:documentation>Redstone Repeater</xs:documentation> 2568 </xs:annotation> 2569 </xs:enumeration> 2570 <xs:enumeration value="357"> 2571 <xs:annotation> 2572 <xs:documentation>Cookie</xs:documentation> 2573 </xs:annotation> 2574 </xs:enumeration> 2575 <xs:enumeration value="358"> 2576 <xs:annotation> 2577 <xs:documentation>Map</xs:documentation> 2578 </xs:annotation> 2579 </xs:enumeration> 2580 <xs:enumeration value="359"> 2581 <xs:annotation> 2582 <xs:documentation>Shears</xs:documentation> 2583 </xs:annotation> 2584 </xs:enumeration> 2585 <xs:enumeration value="360"> 2586 <xs:annotation> 2587 <xs:documentation>Melon Slice</xs:documentation> 2588 </xs:annotation> 2589 </xs:enumeration> 2590 <xs:enumeration value="361"> 2591 <xs:annotation> 2592 <xs:documentation>Pumpkin Seeds</xs:documentation> 2593 </xs:annotation> 2594 </xs:enumeration> 2595 <xs:enumeration value="362"> 2596 <xs:annotation> 2597 <xs:documentation>Melon Seeds</xs:documentation> 2598 </xs:annotation> 2599 </xs:enumeration> 2600 <xs:enumeration value="363"> 2601 <xs:annotation> 2602 <xs:documentation>Raw Beef</xs:documentation> 2603 </xs:annotation> 2604 </xs:enumeration> 2605 <xs:enumeration value="364"> 2606 <xs:annotation> 2607 <xs:documentation>Steak</xs:documentation> 2608 </xs:annotation> 2609 </xs:enumeration> 2610 <xs:enumeration value="365"> 2611 <xs:annotation> 2612 <xs:documentation>Raw Chicken</xs:documentation> 2613 </xs:annotation> 2614 </xs:enumeration> 2615 <xs:enumeration value="366"> 2616 <xs:annotation> 2617 <xs:documentation>Cooked Chicken</xs:documentation> 2618 </xs:annotation> 2619 </xs:enumeration> 2620 <xs:enumeration value="367"> 2621 <xs:annotation> 2622 <xs:documentation>Rotten Flesh</xs:documentation> 2623 </xs:annotation> 2624 </xs:enumeration> 2625 <xs:enumeration value="368"> 2626 <xs:annotation> 2627 <xs:documentation>Ender Pearl</xs:documentation> 2628 </xs:annotation> 2629 </xs:enumeration> 2630 <xs:enumeration value="369"> 2631 <xs:annotation> 2632 <xs:documentation>Blaze Rod</xs:documentation> 2633 </xs:annotation> 2634 </xs:enumeration> 2635 <xs:enumeration value="370"> 2636 <xs:annotation> 2637 <xs:documentation>Ghast Tear</xs:documentation> 2638 </xs:annotation> 2639 </xs:enumeration> 2640 <xs:enumeration value="371"> 2641 <xs:annotation> 2642 <xs:documentation>Gold Nugget</xs:documentation> 2643 </xs:annotation> 2644 </xs:enumeration> 2645 <xs:enumeration value="372"> 2646 <xs:annotation> 2647 <xs:documentation>Nether Wart</xs:documentation> 2648 </xs:annotation> 2649 </xs:enumeration> 2650 <xs:enumeration value="373"> 2651 <xs:annotation> 2652 <xs:documentation>{*splash*}{*prefix*}Potion {*postfix*}</xs:documentation> 2653 </xs:annotation> 2654 </xs:enumeration> 2655 <xs:enumeration value="374"> 2656 <xs:annotation> 2657 <xs:documentation>Glass Bottle</xs:documentation> 2658 </xs:annotation> 2659 </xs:enumeration> 2660 <xs:enumeration value="375"> 2661 <xs:annotation> 2662 <xs:documentation>Spider Eye</xs:documentation> 2663 </xs:annotation> 2664 </xs:enumeration> 2665 <xs:enumeration value="376"> 2666 <xs:annotation> 2667 <xs:documentation>Fermented Spider Eye</xs:documentation> 2668 </xs:annotation> 2669 </xs:enumeration> 2670 <xs:enumeration value="377"> 2671 <xs:annotation> 2672 <xs:documentation>Blaze Powder</xs:documentation> 2673 </xs:annotation> 2674 </xs:enumeration> 2675 <xs:enumeration value="378"> 2676 <xs:annotation> 2677 <xs:documentation>Magma Cream</xs:documentation> 2678 </xs:annotation> 2679 </xs:enumeration> 2680 <xs:enumeration value="379"> 2681 <xs:annotation> 2682 <xs:documentation>Brewing Stand</xs:documentation> 2683 </xs:annotation> 2684 </xs:enumeration> 2685 <xs:enumeration value="380"> 2686 <xs:annotation> 2687 <xs:documentation>Cauldron</xs:documentation> 2688 </xs:annotation> 2689 </xs:enumeration> 2690 <xs:enumeration value="381"> 2691 <xs:annotation> 2692 <xs:documentation>Eye of Ender</xs:documentation> 2693 </xs:annotation> 2694 </xs:enumeration> 2695 <xs:enumeration value="382"> 2696 <xs:annotation> 2697 <xs:documentation>Glistering Melon</xs:documentation> 2698 </xs:annotation> 2699 </xs:enumeration> 2700 <xs:enumeration value="383"> 2701 <xs:annotation> 2702 <xs:documentation>Spawn {*CREATURE*}</xs:documentation> 2703 </xs:annotation> 2704 </xs:enumeration> 2705 <xs:enumeration value="384"> 2706 <xs:annotation> 2707 <xs:documentation>Bottle o' Enchanting</xs:documentation> 2708 </xs:annotation> 2709 </xs:enumeration> 2710 <xs:enumeration value="385"> 2711 <xs:annotation> 2712 <xs:documentation>Fire Charge</xs:documentation> 2713 </xs:annotation> 2714 </xs:enumeration> 2715 <xs:enumeration value="388"> 2716 <xs:annotation> 2717 <xs:documentation>Emerald</xs:documentation> 2718 </xs:annotation> 2719 </xs:enumeration> 2720 <xs:enumeration value="389"> 2721 <xs:annotation> 2722 <xs:documentation>Item Frame</xs:documentation> 2723 </xs:annotation> 2724 </xs:enumeration> 2725 <xs:enumeration value="390"> 2726 <xs:annotation> 2727 <xs:documentation>Flower Pot</xs:documentation> 2728 </xs:annotation> 2729 </xs:enumeration> 2730 <xs:enumeration value="391"> 2731 <xs:annotation> 2732 <xs:documentation>Carrot</xs:documentation> 2733 </xs:annotation> 2734 </xs:enumeration> 2735 <xs:enumeration value="392"> 2736 <xs:annotation> 2737 <xs:documentation>Potato</xs:documentation> 2738 </xs:annotation> 2739 </xs:enumeration> 2740 <xs:enumeration value="393"> 2741 <xs:annotation> 2742 <xs:documentation>Baked Potato</xs:documentation> 2743 </xs:annotation> 2744 </xs:enumeration> 2745 <xs:enumeration value="394"> 2746 <xs:annotation> 2747 <xs:documentation>Poisonous Potato</xs:documentation> 2748 </xs:annotation> 2749 </xs:enumeration> 2750 <xs:enumeration value="396"> 2751 <xs:annotation> 2752 <xs:documentation>Golden Carrot</xs:documentation> 2753 </xs:annotation> 2754 </xs:enumeration> 2755 <xs:enumeration value="397"> 2756 <xs:annotation> 2757 <xs:documentation>Skull</xs:documentation> 2758 </xs:annotation> 2759 </xs:enumeration> 2760 <xs:enumeration value="398"> 2761 <xs:annotation> 2762 <xs:documentation>Carrot on a Stick</xs:documentation> 2763 </xs:annotation> 2764 </xs:enumeration> 2765 <xs:enumeration value="400"> 2766 <xs:annotation> 2767 <xs:documentation>Pumpkin Pie</xs:documentation> 2768 </xs:annotation> 2769 </xs:enumeration> 2770 <xs:enumeration value="403"> 2771 <xs:annotation> 2772 <xs:documentation>Enchanted Book</xs:documentation> 2773 </xs:annotation> 2774 </xs:enumeration> 2775 <xs:enumeration value="405"> 2776 <xs:annotation> 2777 <xs:documentation>Nether Brick</xs:documentation> 2778 </xs:annotation> 2779 </xs:enumeration> 2780 <xs:enumeration value="406"> 2781 <xs:annotation> 2782 <xs:documentation>Nether Quartz</xs:documentation> 2783 </xs:annotation> 2784 </xs:enumeration> 2785 <xs:enumeration value="2256"> 2786 <xs:annotation> 2787 <xs:documentation>Music Disc - "13"</xs:documentation> 2788 </xs:annotation> 2789 </xs:enumeration> 2790 <xs:enumeration value="2257"> 2791 <xs:annotation> 2792 <xs:documentation>Music Disc - "cat"</xs:documentation> 2793 </xs:annotation> 2794 </xs:enumeration> 2795 <xs:enumeration value="2258"> 2796 <xs:annotation> 2797 <xs:documentation>Music Disc - "blocks"</xs:documentation> 2798 </xs:annotation> 2799 </xs:enumeration> 2800 <xs:enumeration value="2259"> 2801 <xs:annotation> 2802 <xs:documentation>Music Disc - "chirp"</xs:documentation> 2803 </xs:annotation> 2804 </xs:enumeration> 2805 <xs:enumeration value="2260"> 2806 <xs:annotation> 2807 <xs:documentation>Music Disc - "far"</xs:documentation> 2808 </xs:annotation> 2809 </xs:enumeration> 2810 <xs:enumeration value="2261"> 2811 <xs:annotation> 2812 <xs:documentation>Music Disc - "mall"</xs:documentation> 2813 </xs:annotation> 2814 </xs:enumeration> 2815 <xs:enumeration value="2262"> 2816 <xs:annotation> 2817 <xs:documentation>Music Disc - "mellohi"</xs:documentation> 2818 </xs:annotation> 2819 </xs:enumeration> 2820 <xs:enumeration value="2263"> 2821 <xs:annotation> 2822 <xs:documentation>Music Disc - "stal"</xs:documentation> 2823 </xs:annotation> 2824 </xs:enumeration> 2825 <xs:enumeration value="2264"> 2826 <xs:annotation> 2827 <xs:documentation>Music Disc - "strad"</xs:documentation> 2828 </xs:annotation> 2829 </xs:enumeration> 2830 <xs:enumeration value="2265"> 2831 <xs:annotation> 2832 <xs:documentation>Music Disc - "ward"</xs:documentation> 2833 </xs:annotation> 2834 </xs:enumeration> 2835 <xs:enumeration value="2266"> 2836 <xs:annotation> 2837 <xs:documentation>Music Disc - "11"</xs:documentation> 2838 </xs:annotation> 2839 </xs:enumeration> 2840 <xs:enumeration value="2267"> 2841 <xs:annotation> 2842 <xs:documentation>Music Disc - "where are we now"</xs:documentation> 2843 </xs:annotation> 2844 </xs:enumeration> 2845 </xs:restriction> 2846 </xs:simpleType> 2847 2848</xs:schema>