crafting.txt 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971
  1. # This file describes the crafting recipes that Minecase knows.
  2. # The syntax is as follows:
  3. # <Line> = <Recipe>#<Comment>
  4. # <Recipe> = <Result> = <Ingredient1> | <Ingredient2> | ... | <IngredientN>
  5. # <IngredientN> = <ItemID>, <X1> : <Y1>, <X2> : <Y2>, ..., <Xn> : <Yn>
  6. # <ItemID> = <ItemType> [^<DamageValue>]
  7. # <Xn>, <Yn> = "1" .. "3", or "*" for any value. "*:*" can be replaced by a single "*".
  8. # <Result> = <ItemType> [^<DamageValue>] [, <Count>]
  9. #
  10. # The Xn, Yn coordinates are a reference to the crafting grid:
  11. # 1:1 | 2:1 | 3:1
  12. # 1:2 | 2:2 | 3:2
  13. # 1:3 | 2:3 | 3:3
  14. #
  15. # <ItemType> can be either a number, or an item name (checked against items.ini)
  16. #
  17. # ^<DamageValue> is optional, if not present, the default damage for the given item is used
  18. #
  19. # If the DamageValue in the ingredients list is set to -1, the ingredient matches the specified item with any DamageValue.
  20. # This is used e. g. for "any planks -> sticks", or beds using any color wool etc.
  21. #
  22. # Ingredients with an asterisk for a coord will not match already matched crafting grid items. This enables simplifying some of the recipes,
  23. # e. g. hoe: "Iron, 2:1, *:1"
  24. # -- this means "one iron at 2:1, and another one at either 1:1 or 3:1"
  25. #
  26. # To require multiple items of the same type in a slot, specify the slot number several times:
  27. # "Iron, 1:1, 2:2, 2:2"
  28. # -- this means "take one iron from slot 1:1 and two irons from slot 2:2"
  29. # Note that asterisked items cannot require multiple items in a single slot.
  30. #
  31. # Note that due to technical problems, it is NOT advised to use asterisked ingredients in crossing directions, such as "*:1, "2:*".
  32. # The parser may be unable to match such a recipe to the crafting grid!
  33. #
  34. # Whitespace is optional. Use it reasonably. You CAN use any whitespaces (including tabs) in the middle of lines!
  35. #******************************************************#
  36. # Basic Crafts
  37. #
  38. # Need to list each of the four log types, otherwise all logs would get converted into apple planks (^0)
  39. WoodPlanks^Acacia, 4 = Wood2^Acacia, *
  40. WoodPlanks^Birch, 4 = Wood^Birch, *
  41. Chest = WoodPlanks^-1, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  42. WoodPlanks^DarkOak, 4 = Wood2^DarkOak, *
  43. EnderChest = EyeofEnder, 2:2 | Obsidian, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  44. Furnace = Cobblestone, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  45. WoodPlanks^Jungle, 4 = Wood^Jungle, *
  46. WoodPlanks^Oak, 4 = Wood^Oak, *
  47. WoodPlanks^Spruce, 4 = Wood^Spruce, *
  48. Stick, 4 = WoodPlanks^-1, 2:2, 2:3
  49. Torch, 4 = Stick, 1:2 | Coal^-1, 1:1
  50. TrappedChest = TripwireHook, * | Chest, *
  51. CraftingTable = WoodPlanks^-1, 1:1, 1:2, 2:1, 2:2
  52. #******************************************************#
  53. # Blocks
  54. #
  55. #Andesite, 2 = Diorite, * | Cobblestone, *
  56. #BoneBlock = BoneMeal, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  57. #BookShelf = Planks^-1, 1:1, 2:1, 3:1, 1:3, 2:3, 3:3 | Book, 1:2, 2:2, 3:2
  58. #BrickBlock = Brick, 1:1, 1:2, 2:1, 2:2
  59. #ChiseledQuartzBlock = QuartzSlab, 1:1, 1:2
  60. #ChiseledRedSandstone = RedSandstoneSlab, 1:1, 1:2
  61. #ChiseledStoneBrick = StoneBrickSlab, 1:1, 1:2
  62. #ClayBlock = Clay, 1:1, 1:2, 2:1, 2:2
  63. #CoalBlock = Coal, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  64. #CoarsedDirt, 4 = Dirt, 1:1, 2:2 | Gravel, 1:2, 2:1
  65. #CoarsedDirt, 4 = Gravel, 1:1, 2:2 | Dirt, 1:2, 2:1
  66. #DarkPrismarine = PrismarineShard, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | Inksac, 2:2
  67. #DiamondBlock = Diamond, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  68. #Diorite, 2 = Cobblestone, * | NetherQuartz, *
  69. #EmeraldBlock = Emerald, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  70. #EndstoneBrick, 4 = Endstone, 1:1, 1:2, 2:1, 2:2
  71. #Glowstone = GlowstoneDust, 1:1, 1:2, 2:1, 2:2
  72. #GoldBlock = GoldIngot, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  73. #Granite, 2 = Diorite, * | NetherQuartz, *
  74. #HayBale = Wheat, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  75. #IronBlock = IronIngot, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  76. #JackOLantern = Pumpkin, 1:1 | Torch, 1:2
  77. #LapisBlock = LapisLazuli, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  78. #Leather = RabbitHide, 1:1, 1:2, 2:1, 2:2
  79. #MossyCobblestone = Cobblestone, * | Vines, *
  80. #MossyStoneBrick = Stonebrick, * | Vines, *
  81. #NetherBrickBlock = NetherBrick, 1:1, 1:2, 2:1, 2:2
  82. #NetherWartBlock = NetherWart, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  83. #OrnamentSandstone = SandstoneSlab, 1:1, 1:2
  84. #PillarQuartzBlock, 2 = QuartzBlock, 1:1, 1:2
  85. #PolishedAndesite, 4 = Andesite, 1:1, 1:2, 2:1, 2:2
  86. #PolishedDiorite, 4 = Diorite, 1:1, 1:2, 2:1, 2:2
  87. #PolishedGranite, 4 = Granite, 1:1, 1:2, 2:1, 2:2
  88. #Prismarine = PrismarineShard, 1:1, 1:2, 2:1, 2:2
  89. #PrismarineBricks = PrismarineShard, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  90. #PurpurBlock, 4 = PoppedChorusFruit, 1:1, 1:2, 2:1, 2:2
  91. #PurpurPillar, 1 = PurpurSlab, 1:1, 1:2
  92. #QuartzBlock = NetherQuartz, 1:1, 1:2, 2:1, 2:2
  93. #RedNetherBrick = NetherBrick, 1:1, 2:2 | NetherWart, 1:2, 2:1
  94. #RedNetherBrick = NetherWart, 1:1, 2:2 | NetherBrick, 1:2, 2:1
  95. #RedSandstone = RedSand, 1:1, 1:2, 2:1, 2:2
  96. #RedstoneBlock = RedstoneDust, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  97. #Sandstone = Sand, 1:1, 1:2, 2:1, 2:2
  98. #SeaLantern = PrismarineShard, 1:1, 1:3, 3:1, 3:3 | PrismarineCrystals, 1:2, 2:1, 2:2, 2:3, 3:2
  99. #SlimeBlock = Slimeball, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  100. #SmoothRedSandstone, 4 = RedSandstone, 1:1, 1:2, 2:1, 2:2
  101. #SmoothSandstone, 4 = Sandstone, 1:1, 1:2, 2:1, 2:2
  102. #SnowBlock = SnowBall, 1:1, 1:2, 2:1, 2:2
  103. #StoneBrick, 4 = Stone, 1:1, 1:2, 2:1, 2:2
  104. #TNT = Gunpowder, 1:1, 3:1, 2:2, 1:3, 3:3 | Sand, 2:1, 1:2, 3:2, 2:3
  105. #Wool = String, 1:1, 1:2, 2:1, 2:2
  106. #
  107. ## Slabs:
  108. #AcaciaWoodSlab, 6 = AcaciaPlanks, 1:1, 2:1, 3:1
  109. #BirchWoodSlab, 6 = BirchPlanks, 1:1, 2:1, 3:1
  110. #BrickSlab, 6 = BrickBlock, 1:1, 2:1, 3:1
  111. #CobblestoneSlab, 6 = Cobblestone, 1:1, 2:1, 3:1
  112. #DarkOakWoodSlab, 6 = DarkOakPlanks, 1:1, 2:1, 3:1
  113. #JungleWoodSlab, 6 = JunglePlanks, 1:1, 2:1, 3:1
  114. #NetherBrickSlab, 6 = NetherBrickBlock, 1:1, 2:1, 3:1
  115. #OakWoodSlab, 6 = OakPlanks, 1:1, 2:1, 3:1
  116. #PurpurSlab, 6 = PurpurBlock, 1:1, 2:1, 3:1
  117. #Quartzslab, 6 = QuartzBlock, 1:1, 2:1, 3:1
  118. #RedSandstoneSlab, 6 = RedSandstone^-1, 1:1, 2:1, 3:1
  119. #SandstoneSlab, 6 = OrnamentSandstone, 1:1, 2:1, 3:1
  120. #SandstoneSlab, 6 = Sandstone, 1:1, 2:1, 3:1
  121. #SandstoneSlab, 6 = SmoothSandstone, 1:1, 2:1, 3:1
  122. #SnowLayer, 6 = SnowBlock, 1:1, 2:1, 3:1
  123. #SpruceWoodSlab, 6 = SprucePlanks, 1:1, 2:1, 3:1
  124. #StonebrickSlab, 6 = StoneBrick, 1:1, 2:1, 3:1
  125. #StoneSlab, 6 = Stone, 1:1, 2:1, 3:1
  126. #
  127. ## Stairs:
  128. #AcaciaWoodStairs, 4 = AcaciaPlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  129. #AcaciaWoodStairs, 4 = AcaciaPlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  130. #BirchWoodStairs, 4 = BirchPlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  131. #BirchWoodStairs, 4 = BirchPlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  132. #BrickStairs, 4 = BrickBlock, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  133. #BrickStairs, 4 = BrickBlock, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  134. #cobblestoneStairs, 4 = Cobblestone, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  135. #cobblestoneStairs, 4 = Cobblestone, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  136. #DarkOakWoodStairs, 4 = DarkOakPlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  137. #DarkOakWoodStairs, 4 = DarkOakPlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  138. #JungleWoodStairs, 4 = JunglePlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  139. #JungleWoodStairs, 4 = JunglePlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  140. #NetherBrickStairs, 4 = NetherBrickBlock, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  141. #NetherBrickStairs, 4 = NetherBrickBlock, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  142. #PurpurStairs, 4 = PurpurBlock, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  143. #PurpurStairs, 4 = PurpurBlock, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  144. #QuartzStairs, 4 = QuartzBlock, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  145. #QuartzStairs, 4 = QuartzBlock, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  146. #RedSandstoneStairs, 4 = RedSandstone^-1, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  147. #RedSandstoneStairs, 4 = RedSandstone^-1, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  148. #SandstoneStairs, 4 = OrnamentSandstone, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  149. #SandstoneStairs, 4 = OrnamentSandstone, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  150. #SandstoneStairs, 4 = Sandstone, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  151. #SandstoneStairs, 4 = Sandstone, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  152. #SandstoneStairs, 4 = SmoothSandstone, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  153. #SandstoneStairs, 4 = SmoothSandstone, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  154. #SpruceWoodStairs, 4 = SprucePlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  155. #SpruceWoodStairs, 4 = SprucePlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  156. #StoneBrickStairs, 4 = StoneBrick, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  157. #StoneBrickStairs, 4 = StoneBrick, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  158. #WoodStairs, 4 = OakPlanks, 1:1, 1:2, 2:2, 1:3, 2:3, 3:3
  159. #WoodStairs, 4 = OakPlanks, 3:1, 2:2, 3:2, 1:3, 2:3, 3:3
  160. #
  161. #
  162. #
  163. ##******************************************************#
  164. ## Tools
  165. ##
  166. #
  167. ## Axes:
  168. #DiamondAxe = Stick, 2:2, 2:3 | Diamond, 2:1, 1:1, 1:2
  169. #DiamondAxe = Stick, 2:2, 2:3 | Diamond, 2:1, 3:1, 3:2
  170. #GoldenAxe = Stick, 2:2, 2:3 | GoldIngot, 2:1, 1:1, 1:2
  171. #GoldenAxe = Stick, 2:2, 2:3 | GoldIngot, 2:1, 3:1, 3:2
  172. #IronAxe = Stick, 2:2, 2:3 | IronIngot, 2:1, 1:1, 1:2
  173. #IronAxe = Stick, 2:2, 2:3 | IronIngot, 2:1, 3:1, 3:2
  174. #StoneAxe = Stick, 2:2, 2:3 | Cobblestone, 2:1, 1:1, 1:2
  175. #StoneAxe = Stick, 2:2, 2:3 | Cobblestone, 2:1, 3:1, 3:2
  176. #WoodenAxe = Stick, 2:2, 2:3 | Planks^-1, 2:1, 1:1, 1:2
  177. #WoodenAxe = Stick, 2:2, 2:3 | Planks^-1, 2:1, 3:1, 3:2
  178. #
  179. ## Pickaxes:
  180. #DiamondPickaxe = Stick, 2:2, 2:3 | Diamond, 1:1, 2:1, 3:1
  181. #GoldenPickaxe = Stick, 2:2, 2:3 | GoldIngot, 1:1, 2:1, 3:1
  182. #IronPickaxe = Stick, 2:2, 2:3 | IronIngot, 1:1, 2:1, 3:1
  183. #StonePickaxe = Stick, 2:2, 2:3 | Cobblestone, 1:1, 2:1, 3:1
  184. #WoodenPickaxe = Stick, 2:2, 2:3 | Planks^-1, 1:1, 2:1, 3:1
  185. #
  186. ## Shovels:
  187. #DiamondShovel = Stick, 2:2, 2:3 | Diamond, 2:1
  188. #GoldenShovel = Stick, 2:2, 2:3 | GoldIngot, 2:1
  189. #IronShovel = Stick, 2:2, 2:3 | IronIngot, 2:1
  190. #StoneShovel = Stick, 2:2, 2:3 | Cobblestone, 2:1
  191. #WoodenShovel = Stick, 2:2, 2:3 | Planks^-1, 2:1
  192. #
  193. ## Hoes:
  194. #DiamondHoe = Stick, 2:2, 2:3 | Diamond, 2:1, *:1
  195. #GoldenHoe = Stick, 2:2, 2:3 | GoldIngot, 2:1, *:1
  196. #IronHoe = Stick, 2:2, 2:3 | IronIngot, 2:1, *:1
  197. #StoneHoe = Stick, 2:2, 2:3 | Cobblestone, 2:1, *:1
  198. #WoodenHoe = Stick, 2:2, 2:3 | Planks^-1, 2:1, *:1
  199. #
  200. #Bucket = IronIngot, 1:1, 2:2, 3:1
  201. #Compass = IronIngot, 2:1, 1:2, 3:2, 2:3 | RedstoneDust, 2:2
  202. #EmptyMap = Paper, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | Compass, 2:2
  203. #FireCharge, 3 = BlazePowder, * | Coal, * | Gunpowder, *
  204. #FishingRod = Stick, 1:3, 2:2, 3:1 | String, 3:2, 3:3
  205. #FishingRod = Stick, 3:3, 2:2, 1:1 | String, 1:2, 1:3
  206. #Lead, 2 = String, 1:1, 1:2, 2:1, 3:3 | Slimeball, 2:2
  207. #Lighter = IronIngot, * | Flint, *
  208. #Shears = IronIngot, 1:1, 2:2
  209. #Shears = IronIngot, 2:1, 1:2
  210. #Watch = GoldIngot, 2:1, 1:2, 3:2, 2:3 | RedstoneDust, 2:2
  211. #
  212. #
  213. #
  214. #
  215. #
  216. ##******************************************************#
  217. ## Weapons
  218. ##
  219. #Arrow, 4 = Flint, 1:1 | Stick, 1:2 | Feather, 1:3
  220. #Bow = Stick, 2:1, 1:2, 2:3 | String, 3:1, 3:2, 3:3
  221. #Bow = Stick, 2:1, 3:2, 2:3 | String, 1:1, 1:2, 1:3
  222. #DiamondSword = Stick, 2:3 | Diamond, 2:1, 2:2
  223. #GoldenSword = Stick, 2:3 | GoldIngot, 2:1, 2:2
  224. #IronSword = Stick, 2:3 | IronIngot, 2:1, 2:2
  225. #SpectralArrow, 2 = Arrow, 2:2 | GlowstoneDust, 1:2, 2:1, 2:3, 3:2
  226. #StoneSword = Stick, 2:3 | Cobblestone, 2:1, 2:2
  227. #WoodenSword = Stick, 2:3 | Planks^-1, 2:1, 2:2
  228. #
  229. #
  230. #
  231. #
  232. #
  233. #
  234. ##******************************************************#
  235. ## Armor
  236. ##
  237. #
  238. ## Helmets:
  239. #DiamondHelmet = Diamond, 1:1, 2:1, 3:1, 1:2, 3:2
  240. #GoldenHelmet = GoldIngot, 1:1, 2:1, 3:1, 1:2, 3:2
  241. #IronHelmet = IronIngot, 1:1, 2:1, 3:1, 1:2, 3:2
  242. #LeatherHelmet = Leather, 1:1, 2:1, 3:1, 1:2, 3:2
  243. #
  244. ## Chestplates:
  245. #DiamondChestplate = Diamond, 1:1, 3:1, 1:2, 2:2, 3:2, 1:3, 2:3, 3:3
  246. #GoldenChestplate = GoldIngot, 1:1, 3:1, 1:2, 2:2, 3:2, 1:3, 2:3, 3:3
  247. #IronChestplate = IronIngot, 1:1, 3:1, 1:2, 2:2, 3:2, 1:3, 2:3, 3:3
  248. #LeatherChestplate = Leather, 1:1, 3:1, 1:2, 2:2, 3:2, 1:3, 2:3, 3:3
  249. #
  250. ## Leggings:
  251. #DiamondLeggings = Diamond, 1:1, 2:1, 3:1, 1:2, 3:2, 1:3, 3:3
  252. #GoldenLeggings = GoldIngot, 1:1, 2:1, 3:1, 1:2, 3:2, 1:3, 3:3
  253. #IronLeggings = IronIngot, 1:1, 2:1, 3:1, 1:2, 3:2, 1:3, 3:3
  254. #LeatherPants = Leather, 1:1, 2:1, 3:1, 1:2, 3:2, 1:3, 3:3
  255. #
  256. ## Boots:
  257. #DiamondBoots = Diamond, 1:1, 3:1, 1:2, 3:2
  258. #GoldenBoots = GoldIngot, 1:1, 3:1, 1:2, 3:2
  259. #IronBoots = IronIngot, 1:1, 3:1, 1:2, 3:2
  260. #LeatherBoots = Leather, 1:1, 3:1, 1:2, 3:2
  261. #
  262. ## Shield:
  263. #Shield = IronIngot, 2:1 | Planks^-1, 1:1, 3:1, 1:2, 2:2, 3:2, 2:3
  264. #
  265. #
  266. #
  267. #
  268. ##******************************************************#
  269. ## Transportation
  270. ##
  271. #AcaciaBoat = AcaciaPlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  272. #ActivatorRail, 6 = IronIngot, 1:1, 1:2, 1:3, 3:1, 3:2, 3:3 | Stick, 2:1, 2:3 | RedstoneTorchon, 2:2
  273. #BirchBoat = BirchPlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  274. #CarrotOnAStick = FishingRod, 1:2 | Carrot, 2:3
  275. #DarkOakBoat = DarkOakPlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  276. #DetectorRail, 6 = IronIngot, 1:1, 3:1, 1:2, 3:2, 1:3, 3:3 | StonePlate, 2:2 | RedstoneDust, 2:3
  277. #hopperminecart = Minecart, * | Hopper, *
  278. #JungleBoat = JunglePlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  279. #Minecart = IronIngot, 1:1, 3:1, 1:2, 2:2, 3:2
  280. #OakBoat = OakPlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  281. #PoweredMinecart = Minecart, * | Furnace, *
  282. #PoweredRail, 6 = GoldIngot, 1:1, 3:1, 1:2, 3:2, 1:3, 3:3 | Stick, 2:2 | RedstoneDust, 2:3
  283. #Rails, 16 = IronIngot, 1:1, 3:1, 1:2, 3:2, 1:3, 3:3 | Stick, 2:2
  284. #SpruceBoat = SprucePlanks, 1:1, 3:1, 1:2, 2:2, 3:2
  285. #StorageMinecart = Minecart, * | Chest, *
  286. #TNTMinecart = Minecart, * | TNT, *
  287. #
  288. #
  289. #
  290. #
  291. ##******************************************************#
  292. ## Mechanisms
  293. ##
  294. #AcaciaDoor, 3 = AcaciaPlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  295. #BirchDoor, 3 = BirchPlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  296. #Comparator = RedstoneTorchOn, 2:1, 1:2, 3:2 | NetherQuartz, 2:2 | Stone, 1:3, 2:3, 3:3
  297. #DarkOakDoor, 3 = DarkOakPlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  298. #DaylightSensor = Glass, 1:1, 2:1, 3:1 | NetherQuartz, 1:2, 2:2, 3:2 | WoodenSlab^-1, 1:3, 2:3, 3:3
  299. #Dispenser = Cobblestone, 1:1, 1:2, 1:3, 2:1, 3:1, 3:2, 3:3 | RedstoneDust, 2:3 | Bow, 2:2
  300. #Dropper = Cobblestone, 1:1, 2:1, 3:1, 1:2, 1:3, 3:2, 3:3 | RedstoneDust, 2:3
  301. #heavyweightedpressureplate = IronIngot, 1:1, 2:1
  302. #Hopper = IronIngot, 1:1, 3:1, 1:2, 3:2, 2:3 | Chest, 2:2
  303. #IronDoor, 3 = IronIngot, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  304. #IronTrapDoor = IronIngot, 1:1, 1:2, 2:1, 2:2
  305. #Jukebox = Planks^-1, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | Diamond, 2:2
  306. #JungleDoor, 3 = JunglePlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  307. #Lever = Cobblestone, 1:2 | Stick, 1:1
  308. #lightweightedpressureplate = GoldIngot, 1:1, 2:1
  309. #NoteBlock = Planks^-1, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | RedstoneDust, 2:2
  310. #Piston = Planks^-1, 1:1, 2:1, 3:1 | RedstoneDust, 2:3 | Cobblestone, 1:2, 3:2, 1:3, 3:3 | IronIngot, 2:2
  311. #RedstoneLamp = RedstoneDust, 2:1, 1:2, 3:2, 2:3 | Glowstone, 2:2
  312. #RedstoneTorchOn = Stick, 1:2 | RedstoneDust, 1:1
  313. #Repeater = Stone, 1:2, 2:2, 3:2 | RedstoneTorchOn, 1:1, 3:1 | RedstoneDust, 2:1
  314. #PurpleShulkerBox = ShulkerShell, 2:1, 2:3 | Chest, 2:2
  315. #SpruceDoor, 3 = SprucePlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  316. #StickyPiston = Piston, * | SlimeBall, *
  317. #StoneButton = Stone, 1:1
  318. #StonePlate = Stone, 1:1, 2:1
  319. #TrapDoor, 2 = Planks^-1, 1:1, 2:1, 3:1, 1:2, 2:2, 3:2
  320. #TripwireHook, 2 = Planks^-1, 2:3 | stick, 2:2 | IronIngot, 2:1
  321. #WoodenButton = Planks^-1, 1:1
  322. #WoodenDoor, 3 = OakPlanks, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3
  323. #WoodPlate = Planks^-1, 1:1, 2:1
  324. #
  325. #
  326. #
  327. #
  328. #
  329. ##******************************************************#
  330. ## Food
  331. ##
  332. #Bowl, 4 = Planks^-1, 1:1, 2:2, 3:1
  333. #Bread = Wheat, 1:1, 2:1, 3:1
  334. #Cake = MilkBucket, 1:1, 2:1, 3:1 | Sugar, 1:2, 3:2 | Egg, 2:2 | Wheat, 1:3, 2:3, 3:3
  335. #Cookie, 8 = Wheat, *, * | CocoaBeans, *
  336. #EnchantedGoldenApple = RedApple, 2:2 | GoldBlock, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  337. #GoldenApple = RedApple, 2:2 | GoldIngot, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  338. #MelonBlock = MelonSlice, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  339. #MelonSeeds = MelonSlice, *
  340. #MushroomStew = Bowl, * | BrownMushroom, * | RedMushroom, *
  341. #BeetrootSoup = Bowl, 2:3 | Beetroot, 1:1, 1:2, 2:1, 2:2, 3:1, 3:2
  342. #PumpkinPie = Pumpkin, * | Sugar, * | egg, *
  343. #PumpkinSeeds, 4 = Pumpkin, *
  344. #RabbitStew = Cooked Rabbit, 2:1 | Carrot, 1:2 | BakedPotato, 2:2 | BrownMushroom, 3:2 | Bowl, 2:3
  345. #RabbitStew = Cooked Rabbit, 2:1 | Carrot, 1:2 | BakedPotato, 2:2 | RedMushroom, 3:2 | Bowl, 2:3
  346. #Sugar = Sugarcane, *
  347. #Wheat, 9 = Haybale, *
  348. #
  349. #
  350. #
  351. #
  352. #
  353. ##******************************************************#
  354. ## Miscellaneous
  355. ##
  356. #
  357. ## Minerals:
  358. #Clay, 4 = ClayBlock, *
  359. #Coal, 9 = CoalBlock, *
  360. #Diamond, 9 = DiamondBlock, *
  361. #Emerald, 9 = EmeraldBlock, *
  362. #GoldIngot, 9 = GoldBlock, *
  363. #IronIngot = IronNugget, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  364. #IronIngot, 9 = IronBlock, *
  365. #LapisLazuli, 9 = LapisBlock, *
  366. #RedstoneDust, 9 = RedstoneBlock, *
  367. #SlimeBall, 9 = SlimeBlock, *
  368. #
  369. #AcaciaFence, 3 = AcaciaPlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  370. #AcaciaFenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | AcaciaPlanks, 2:1, 2:2
  371. #Anvil = IronBlock, 1:1, 2:1, 3:1 | IronIngot, 2:2, 1:3, 2:3, 3:3
  372. #ArmorStand = Stick, 1:1, 1:3, 2:1, 2:2, 3:1, 3:3 | StoneSlab, 2:3
  373. #Beacon = Glass, 1:1, 1:2, 2:1, 3:1, 3:2 | Obsidian, 1:3, 2:3, 3:3 | NetherStar, 2:2
  374. #BirchFence, 3 = BirchPlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  375. #BirchFenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | BirchPlanks, 2:1, 2:2
  376. #Bookandquill = Book, * | feather, * | inksac, *
  377. #Book = Paper, *, *, * | leather, *
  378. #Cobblestonewall, 6 = cobblestone, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  379. #DarkOakFence, 3 = DarkOakPlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  380. #DarkOakFenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | DarkOakPlanks, 2:1, 2:2
  381. #EndCrystal = Glass, 1:1, 1:2, 1:3, 2:1, 3:1, 3:2, 3:3 | EyeOfEnder, 2:2 | GhastTear, 2:3
  382. #EndRod, 4 = BlazeRod, 1:1 | PoppedChorusFruit, 1:2
  383. #EyeOfEnder = EnderPearl, * | BlazePowder, *
  384. #Fence, 3 = OakPlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  385. #FenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | OakPlanks, 2:1, 2:2
  386. #FlowerPot = Brick, 1:2, 2:3, 3:2
  387. #GlassPane, 16 = Glass, 1:1, 2:1, 3:1, 1:2, 2:2, 3:2
  388. #GoldIngot = GoldNugget, 1:1, 1:2, 1:3, 2:1, 2:2, 2:3, 3:1, 3:2, 3:3
  389. #IronBars, 16 = IronIngot, 1:1, 2:1, 3:1, 1:2, 2:2, 3:2
  390. #IronNugget, 9 = IronIngot, *
  391. #ItemFrame = Stick, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | Leather, 2:2
  392. #JungleFence, 3 = JunglePlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  393. #JungleFenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | JunglePlanks, 2:1, 2:2
  394. #Ladder, 3 = Stick, 1:1, 3:1, 1:2, 2:2, 3:2, 1:3, 3:3
  395. #mossycobblestonewall, 6 = mossycobblestone, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  396. #NetherBrickFence, 6 = NetherBrickBlock, 1:1, 2:1, 3:1, 1:2, 2:2, 3:2
  397. #Painting = Stick, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | Wool^-1, 2:2
  398. #Paper, 3 = Sugarcane, 1:1, 2:1, 3:1
  399. #Sign, 3 = Planks^-1, 1:1, 2:1, 3:1, 1:2, 2:2, 3:2 | Stick, 2:3
  400. #SpruceFence, 3 = SprucePlanks, 1:1, 1:2, 3:1, 3:2 | Stick, 2:1, 2:2
  401. #SpruceFenceGate = Stick, 1:1, 1:2, 3:1, 3:2 | SprucePlanks, 2:1, 2:2
  402. #
  403. ## These are just the basic ones, you can add various shapes and stuff to each of them
  404. ## ToDo: Add the various shapes (saved in NBT-Tags, not in meta)
  405. ## Banners:
  406. #
  407. #BlackBanner = Stick, 2:3 | BlackWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  408. #BlueBanner = Stick, 2:3 | BlueWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  409. #BrownBanner = Stick, 2:3 | BrownWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  410. #CyanBanner = Stick, 2:3 | CyanWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  411. #GrayBanner = Stick, 2:3 | GrayWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  412. #GreenBanner = Stick, 2:3 | GreenWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  413. #LightBlueBanner = Stick, 2:3 | LightBlueWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  414. #LightGrayBanner = Stick, 2:3 | LightGrayWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  415. #LimeBanner = Stick, 2:3 | LimeWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  416. #MagentaBanner = Stick, 2:3 | MagentaWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  417. #OrangeBanner = Stick, 2:3 | OrangeWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  418. #PinkBanner = Stick, 2:3 | PinkWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  419. #PurpleBanner = Stick, 2:3 | PurpleWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  420. #RedBanner = Stick, 2:3 | RedWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  421. #WhiteBanner = Stick, 2:3 | WhiteWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  422. #YellowBanner = Stick, 2:3 | YellowWool, 1:1, 1:2, 2:1, 2:2, 2:1, 2:2
  423. #
  424. #
  425. #
  426. #
  427. #
  428. ##******************************************************#
  429. ## Dyes
  430. ##
  431. #
  432. #RedDye, 1 = Beetroot, *
  433. #RedDye, 2 = Rose, *
  434. #WhiteDye, 3 = Bone, *
  435. #YellowDye, 2 = Dandelion, *
  436. #
  437. ## Color mixing, duals:
  438. #CyanDye, 2 = GreenDye, * | BlueDye, *
  439. #GrayDye, 2 = BlackDye, * | WhiteDye, *
  440. #LimeDye, 2 = GreenDye, * | WhiteDye, *
  441. #LtBlueDye, 2 = BlueDye, * | WhiteDye, *
  442. #LtGrayDye, 2 = GrayDye, * | WhiteDye, *
  443. #MagentaDye, 2 = PurpleDye, * | PinkDye, *
  444. #OrangeDye, 2 = YellowDye, * | RedDye, *
  445. #PinkDye, 2 = RedDye, * | WhiteDye, *
  446. #PurpleDye, 2 = RedDye, * | BlueDye, *
  447. #
  448. ## triplets:
  449. #LtGrayDye, 3 = BlackDye, * | WhiteDye, *, *
  450. #MagentaDye, 3 = BlueDye, * | PinkDye, * | RedDye, *
  451. #
  452. ## quads:
  453. #MagentaDye, 4 = BlueDye, * | WhiteDye, * | RedDye, *, *
  454. #
  455. #
  456. #
  457. #
  458. ##******************************************************#
  459. ## Concrete Powder:
  460. ##
  461. #White_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | BoneMeal, 2:2
  462. #Orange_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | OrangeDye, 2:2
  463. #Magenta_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | MagentaDye, 2:2
  464. #Light_Blue_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | LightBlueDye, 2:2
  465. #Yellow_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | YellowDye, 2:2
  466. #Lime_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | LimeDye, 2:2
  467. #Pink_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | PinkDye, 2:2
  468. #Gray_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | GrayDye, 2:2
  469. #Light_Gray_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | LightGrayDye, 2:2
  470. #Cyan_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | CyanDye, 2:2
  471. #Blue_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | BlueDye, 2:2
  472. #Brown_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | BrownDye, 2:2
  473. #Green_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | GreenDye, 2:2
  474. #Red_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | RedDye, 2:2
  475. #Black_Concrete_Powder = Sand, 1:1, 3:1, 1:3, 3:3 | Gravel, 2:1, 1:2, 3:2, 2:3 | BlackDye, 2:2
  476. #
  477. ##******************************************************#
  478. ## Colored shulker boxes:
  479. ##
  480. #BlackShulkerBox = BlackShulkerBox, * | BlackDye, *
  481. #BlackShulkerBox = BlueShulkerBox, * | BlackDye, *
  482. #BlackShulkerBox = BrownShulkerBox, * | BlackDye, *
  483. #BlackShulkerBox = CyanShulkerBox, * | BlackDye, *
  484. #BlackShulkerBox = GrayShulkerBox, * | BlackDye, *
  485. #BlackShulkerBox = GreenShulkerBox, * | BlackDye, *
  486. #BlackShulkerBox = LightBlueShulkerBox, * | BlackDye, *
  487. #BlackShulkerBox = LightGrayShulkerBox, * | BlackDye, *
  488. #BlackShulkerBox = LimeShulkerBox, * | BlackDye, *
  489. #BlackShulkerBox = MagentaShulkerBox, * | BlackDye, *
  490. #BlackShulkerBox = OrangeShulkerBox, * | BlackDye, *
  491. #BlackShulkerBox = PinkShulkerBox, * | BlackDye, *
  492. #BlackShulkerBox = PurpleShulkerBox, * | BlackDye, *
  493. #BlackShulkerBox = RedShulkerBox, * | BlackDye, *
  494. #BlackShulkerBox = WhiteShulkerBox, * | BlackDye, *
  495. #BlackShulkerBox = YellowShulkerBox, * | BlackDye, *
  496. #BlueShulkerBox = BlackShulkerBox, * | BlueDye, *
  497. #BlueShulkerBox = BlueShulkerBox, * | BlueDye, *
  498. #BlueShulkerBox = BrownShulkerBox, * | BlueDye, *
  499. #BlueShulkerBox = CyanShulkerBox, * | BlueDye, *
  500. #BlueShulkerBox = GrayShulkerBox, * | BlueDye, *
  501. #BlueShulkerBox = GreenShulkerBox, * | BlueDye, *
  502. #BlueShulkerBox = LightBlueShulkerBox, * | BlueDye, *
  503. #BlueShulkerBox = LightGrayShulkerBox, * | BlueDye, *
  504. #BlueShulkerBox = LimeShulkerBox, * | BlueDye, *
  505. #BlueShulkerBox = MagentaShulkerBox, * | BlueDye, *
  506. #BlueShulkerBox = OrangeShulkerBox, * | BlueDye, *
  507. #BlueShulkerBox = PinkShulkerBox, * | BlueDye, *
  508. #BlueShulkerBox = PurpleShulkerBox, * | BlueDye, *
  509. #BlueShulkerBox = RedShulkerBox, * | BlueDye, *
  510. #BlueShulkerBox = WhiteShulkerBox, * | BlueDye, *
  511. #BlueShulkerBox = YellowShulkerBox, * | BlueDye, *
  512. #BrownShulkerBox = BlackShulkerBox, * | BrownDye, *
  513. #BrownShulkerBox = BlueShulkerBox, * | BrownDye, *
  514. #BrownShulkerBox = BrownShulkerBox, * | BrownDye, *
  515. #BrownShulkerBox = CyanShulkerBox, * | BrownDye, *
  516. #BrownShulkerBox = GrayShulkerBox, * | BrownDye, *
  517. #BrownShulkerBox = GreenShulkerBox, * | BrownDye, *
  518. #BrownShulkerBox = LightBlueShulkerBox, * | BrownDye, *
  519. #BrownShulkerBox = LightGrayShulkerBox, * | BrownDye, *
  520. #BrownShulkerBox = LimeShulkerBox, * | BrownDye, *
  521. #BrownShulkerBox = MagentaShulkerBox, * | BrownDye, *
  522. #BrownShulkerBox = OrangeShulkerBox, * | BrownDye, *
  523. #BrownShulkerBox = PinkShulkerBox, * | BrownDye, *
  524. #BrownShulkerBox = PurpleShulkerBox, * | BrownDye, *
  525. #BrownShulkerBox = RedShulkerBox, * | BrownDye, *
  526. #BrownShulkerBox = WhiteShulkerBox, * | BrownDye, *
  527. #BrownShulkerBox = YellowShulkerBox, * | BrownDye, *
  528. #CyanShulkerBox = BlackShulkerBox, * | CyanDye, *
  529. #CyanShulkerBox = BlueShulkerBox, * | CyanDye, *
  530. #CyanShulkerBox = BrownShulkerBox, * | CyanDye, *
  531. #CyanShulkerBox = CyanShulkerBox, * | CyanDye, *
  532. #CyanShulkerBox = GrayShulkerBox, * | CyanDye, *
  533. #CyanShulkerBox = GreenShulkerBox, * | CyanDye, *
  534. #CyanShulkerBox = LightBlueShulkerBox, * | CyanDye, *
  535. #CyanShulkerBox = LightGrayShulkerBox, * | CyanDye, *
  536. #CyanShulkerBox = LimeShulkerBox, * | CyanDye, *
  537. #CyanShulkerBox = MagentaShulkerBox, * | CyanDye, *
  538. #CyanShulkerBox = OrangeShulkerBox, * | CyanDye, *
  539. #CyanShulkerBox = PinkShulkerBox, * | CyanDye, *
  540. #CyanShulkerBox = PurpleShulkerBox, * | CyanDye, *
  541. #CyanShulkerBox = RedShulkerBox, * | CyanDye, *
  542. #CyanShulkerBox = WhiteShulkerBox, * | CyanDye, *
  543. #CyanShulkerBox = YellowShulkerBox, * | CyanDye, *
  544. #GrayShulkerBox = BlackShulkerBox, * | GrayDye, *
  545. #GrayShulkerBox = BlueShulkerBox, * | GrayDye, *
  546. #GrayShulkerBox = BrownShulkerBox, * | GrayDye, *
  547. #GrayShulkerBox = CyanShulkerBox, * | GrayDye, *
  548. #GrayShulkerBox = GrayShulkerBox, * | GrayDye, *
  549. #GrayShulkerBox = GreenShulkerBox, * | GrayDye, *
  550. #GrayShulkerBox = LightBlueShulkerBox, * | GrayDye, *
  551. #GrayShulkerBox = LightGrayShulkerBox, * | GrayDye, *
  552. #GrayShulkerBox = LimeShulkerBox, * | GrayDye, *
  553. #GrayShulkerBox = MagentaShulkerBox, * | GrayDye, *
  554. #GrayShulkerBox = OrangeShulkerBox, * | GrayDye, *
  555. #GrayShulkerBox = PinkShulkerBox, * | GrayDye, *
  556. #GrayShulkerBox = PurpleShulkerBox, * | GrayDye, *
  557. #GrayShulkerBox = RedShulkerBox, * | GrayDye, *
  558. #GrayShulkerBox = WhiteShulkerBox, * | GrayDye, *
  559. #GrayShulkerBox = YellowShulkerBox, * | GrayDye, *
  560. #GreenShulkerBox = BlackShulkerBox, * | GreenDye, *
  561. #GreenShulkerBox = BlueShulkerBox, * | GreenDye, *
  562. #GreenShulkerBox = BrownShulkerBox, * | GreenDye, *
  563. #GreenShulkerBox = CyanShulkerBox, * | GreenDye, *
  564. #GreenShulkerBox = GrayShulkerBox, * | GreenDye, *
  565. #GreenShulkerBox = GreenShulkerBox, * | GreenDye, *
  566. #GreenShulkerBox = LightBlueShulkerBox, * | GreenDye, *
  567. #GreenShulkerBox = LightGrayShulkerBox, * | GreenDye, *
  568. #GreenShulkerBox = LimeShulkerBox, * | GreenDye, *
  569. #GreenShulkerBox = MagentaShulkerBox, * | GreenDye, *
  570. #GreenShulkerBox = OrangeShulkerBox, * | GreenDye, *
  571. #GreenShulkerBox = PinkShulkerBox, * | GreenDye, *
  572. #GreenShulkerBox = PurpleShulkerBox, * | GreenDye, *
  573. #GreenShulkerBox = RedShulkerBox, * | GreenDye, *
  574. #GreenShulkerBox = WhiteShulkerBox, * | GreenDye, *
  575. #GreenShulkerBox = YellowShulkerBox, * | GreenDye, *
  576. #LightBlueShulkerBox = BlackShulkerBox, * | LightBlueDye, *
  577. #LightBlueShulkerBox = BlueShulkerBox, * | LightBlueDye, *
  578. #LightBlueShulkerBox = BrownShulkerBox, * | LightBlueDye, *
  579. #LightBlueShulkerBox = CyanShulkerBox, * | LightBlueDye, *
  580. #LightBlueShulkerBox = GrayShulkerBox, * | LightBlueDye, *
  581. #LightBlueShulkerBox = GreenShulkerBox, * | LightBlueDye, *
  582. #LightBlueShulkerBox = LightBlueShulkerBox, * | LightBlueDye, *
  583. #LightBlueShulkerBox = LightGrayShulkerBox, * | LightBlueDye, *
  584. #LightBlueShulkerBox = LimeShulkerBox, * | LightBlueDye, *
  585. #LightBlueShulkerBox = MagentaShulkerBox, * | LightBlueDye, *
  586. #LightBlueShulkerBox = OrangeShulkerBox, * | LightBlueDye, *
  587. #LightBlueShulkerBox = PinkShulkerBox, * | LightBlueDye, *
  588. #LightBlueShulkerBox = PurpleShulkerBox, * | LightBlueDye, *
  589. #LightBlueShulkerBox = RedShulkerBox, * | LightBlueDye, *
  590. #LightBlueShulkerBox = WhiteShulkerBox, * | LightBlueDye, *
  591. #LightBlueShulkerBox = YellowShulkerBox, * | LightBlueDye, *
  592. #LightGrayShulkerBox = BlackShulkerBox, * | LightGrayDye, *
  593. #LightGrayShulkerBox = BlueShulkerBox, * | LightGrayDye, *
  594. #LightGrayShulkerBox = BrownShulkerBox, * | LightGrayDye, *
  595. #LightGrayShulkerBox = CyanShulkerBox, * | LightGrayDye, *
  596. #LightGrayShulkerBox = GrayShulkerBox, * | LightGrayDye, *
  597. #LightGrayShulkerBox = GreenShulkerBox, * | LightGrayDye, *
  598. #LightGrayShulkerBox = LightBlueShulkerBox, * | LightGrayDye, *
  599. #LightGrayShulkerBox = LightGrayShulkerBox, * | LightGrayDye, *
  600. #LightGrayShulkerBox = LimeShulkerBox, * | LightGrayDye, *
  601. #LightGrayShulkerBox = MagentaShulkerBox, * | LightGrayDye, *
  602. #LightGrayShulkerBox = OrangeShulkerBox, * | LightGrayDye, *
  603. #LightGrayShulkerBox = PinkShulkerBox, * | LightGrayDye, *
  604. #LightGrayShulkerBox = PurpleShulkerBox, * | LightGrayDye, *
  605. #LightGrayShulkerBox = RedShulkerBox, * | LightGrayDye, *
  606. #LightGrayShulkerBox = WhiteShulkerBox, * | LightGrayDye, *
  607. #LightGrayShulkerBox = YellowShulkerBox, * | LightGrayDye, *
  608. #LimeShulkerBox = BlackShulkerBox, * | LimeDye, *
  609. #LimeShulkerBox = BlueShulkerBox, * | LimeDye, *
  610. #LimeShulkerBox = BrownShulkerBox, * | LimeDye, *
  611. #LimeShulkerBox = CyanShulkerBox, * | LimeDye, *
  612. #LimeShulkerBox = GrayShulkerBox, * | LimeDye, *
  613. #LimeShulkerBox = GreenShulkerBox, * | LimeDye, *
  614. #LimeShulkerBox = LightBlueShulkerBox, * | LimeDye, *
  615. #LimeShulkerBox = LightGrayShulkerBox, * | LimeDye, *
  616. #LimeShulkerBox = LimeShulkerBox, * | LimeDye, *
  617. #LimeShulkerBox = MagentaShulkerBox, * | LimeDye, *
  618. #LimeShulkerBox = OrangeShulkerBox, * | LimeDye, *
  619. #LimeShulkerBox = PinkShulkerBox, * | LimeDye, *
  620. #LimeShulkerBox = PurpleShulkerBox, * | LimeDye, *
  621. #LimeShulkerBox = RedShulkerBox, * | LimeDye, *
  622. #LimeShulkerBox = WhiteShulkerBox, * | LimeDye, *
  623. #LimeShulkerBox = YellowShulkerBox, * | LimeDye, *
  624. #MagentaShulkerBox = BlackShulkerBox, * | MagentaDye, *
  625. #MagentaShulkerBox = BlueShulkerBox, * | MagentaDye, *
  626. #MagentaShulkerBox = BrownShulkerBox, * | MagentaDye, *
  627. #MagentaShulkerBox = CyanShulkerBox, * | MagentaDye, *
  628. #MagentaShulkerBox = GrayShulkerBox, * | MagentaDye, *
  629. #MagentaShulkerBox = GreenShulkerBox, * | MagentaDye, *
  630. #MagentaShulkerBox = LightBlueShulkerBox, * | MagentaDye, *
  631. #MagentaShulkerBox = LightGrayShulkerBox, * | MagentaDye, *
  632. #MagentaShulkerBox = LimeShulkerBox, * | MagentaDye, *
  633. #MagentaShulkerBox = MagentaShulkerBox, * | MagentaDye, *
  634. #MagentaShulkerBox = OrangeShulkerBox, * | MagentaDye, *
  635. #MagentaShulkerBox = PinkShulkerBox, * | MagentaDye, *
  636. #MagentaShulkerBox = PurpleShulkerBox, * | MagentaDye, *
  637. #MagentaShulkerBox = RedShulkerBox, * | MagentaDye, *
  638. #MagentaShulkerBox = WhiteShulkerBox, * | MagentaDye, *
  639. #MagentaShulkerBox = YellowShulkerBox, * | MagentaDye, *
  640. #OrangeShulkerBox = BlackShulkerBox, * | OrangeDye, *
  641. #OrangeShulkerBox = BlueShulkerBox, * | OrangeDye, *
  642. #OrangeShulkerBox = BrownShulkerBox, * | OrangeDye, *
  643. #OrangeShulkerBox = CyanShulkerBox, * | OrangeDye, *
  644. #OrangeShulkerBox = GrayShulkerBox, * | OrangeDye, *
  645. #OrangeShulkerBox = GreenShulkerBox, * | OrangeDye, *
  646. #OrangeShulkerBox = LightBlueShulkerBox, * | OrangeDye, *
  647. #OrangeShulkerBox = LightGrayShulkerBox, * | OrangeDye, *
  648. #OrangeShulkerBox = LimeShulkerBox, * | OrangeDye, *
  649. #OrangeShulkerBox = MagentaShulkerBox, * | OrangeDye, *
  650. #OrangeShulkerBox = OrangeShulkerBox, * | OrangeDye, *
  651. #OrangeShulkerBox = PinkShulkerBox, * | OrangeDye, *
  652. #OrangeShulkerBox = PurpleShulkerBox, * | OrangeDye, *
  653. #OrangeShulkerBox = RedShulkerBox, * | OrangeDye, *
  654. #OrangeShulkerBox = WhiteShulkerBox, * | OrangeDye, *
  655. #OrangeShulkerBox = YellowShulkerBox, * | OrangeDye, *
  656. #PinkShulkerBox = BlackShulkerBox, * | PinkDye, *
  657. #PinkShulkerBox = BlueShulkerBox, * | PinkDye, *
  658. #PinkShulkerBox = BrownShulkerBox, * | PinkDye, *
  659. #PinkShulkerBox = CyanShulkerBox, * | PinkDye, *
  660. #PinkShulkerBox = GrayShulkerBox, * | PinkDye, *
  661. #PinkShulkerBox = GreenShulkerBox, * | PinkDye, *
  662. #PinkShulkerBox = LightBlueShulkerBox, * | PinkDye, *
  663. #PinkShulkerBox = LightGrayShulkerBox, * | PinkDye, *
  664. #PinkShulkerBox = LimeShulkerBox, * | PinkDye, *
  665. #PinkShulkerBox = MagentaShulkerBox, * | PinkDye, *
  666. #PinkShulkerBox = OrangeShulkerBox, * | PinkDye, *
  667. #PinkShulkerBox = PinkShulkerBox, * | PinkDye, *
  668. #PinkShulkerBox = PurpleShulkerBox, * | PinkDye, *
  669. #PinkShulkerBox = RedShulkerBox, * | PinkDye, *
  670. #PinkShulkerBox = WhiteShulkerBox, * | PinkDye, *
  671. #PinkShulkerBox = YellowShulkerBox, * | PinkDye, *
  672. #PurpleShulkerBox = BlackShulkerBox, * | PurpleDye, *
  673. #PurpleShulkerBox = BlueShulkerBox, * | PurpleDye, *
  674. #PurpleShulkerBox = BrownShulkerBox, * | PurpleDye, *
  675. #PurpleShulkerBox = CyanShulkerBox, * | PurpleDye, *
  676. #PurpleShulkerBox = GrayShulkerBox, * | PurpleDye, *
  677. #PurpleShulkerBox = GreenShulkerBox, * | PurpleDye, *
  678. #PurpleShulkerBox = LightBlueShulkerBox, * | PurpleDye, *
  679. #PurpleShulkerBox = LightGrayShulkerBox, * | PurpleDye, *
  680. #PurpleShulkerBox = LimeShulkerBox, * | PurpleDye, *
  681. #PurpleShulkerBox = MagentaShulkerBox, * | PurpleDye, *
  682. #PurpleShulkerBox = OrangeShulkerBox, * | PurpleDye, *
  683. #PurpleShulkerBox = PinkShulkerBox, * | PurpleDye, *
  684. #PurpleShulkerBox = PurpleShulkerBox, * | PurpleDye, *
  685. #PurpleShulkerBox = RedShulkerBox, * | PurpleDye, *
  686. #PurpleShulkerBox = WhiteShulkerBox, * | PurpleDye, *
  687. #PurpleShulkerBox = YellowShulkerBox, * | PurpleDye, *
  688. #RedShulkerBox = BlackShulkerBox, * | RedDye, *
  689. #RedShulkerBox = BlueShulkerBox, * | RedDye, *
  690. #RedShulkerBox = BrownShulkerBox, * | RedDye, *
  691. #RedShulkerBox = CyanShulkerBox, * | RedDye, *
  692. #RedShulkerBox = GrayShulkerBox, * | RedDye, *
  693. #RedShulkerBox = GreenShulkerBox, * | RedDye, *
  694. #RedShulkerBox = LightBlueShulkerBox, * | RedDye, *
  695. #RedShulkerBox = LightGrayShulkerBox, * | RedDye, *
  696. #RedShulkerBox = LimeShulkerBox, * | RedDye, *
  697. #RedShulkerBox = MagentaShulkerBox, * | RedDye, *
  698. #RedShulkerBox = OrangeShulkerBox, * | RedDye, *
  699. #RedShulkerBox = PinkShulkerBox, * | RedDye, *
  700. #RedShulkerBox = PurpleShulkerBox, * | RedDye, *
  701. #RedShulkerBox = RedShulkerBox, * | RedDye, *
  702. #RedShulkerBox = WhiteShulkerBox, * | RedDye, *
  703. #RedShulkerBox = YellowShulkerBox, * | RedDye, *
  704. #WhiteShulkerBox = BlackShulkerBox, * | BoneMeal, *
  705. #WhiteShulkerBox = BlueShulkerBox, * | BoneMeal, *
  706. #WhiteShulkerBox = BrownShulkerBox, * | BoneMeal, *
  707. #WhiteShulkerBox = CyanShulkerBox, * | BoneMeal, *
  708. #WhiteShulkerBox = GrayShulkerBox, * | BoneMeal, *
  709. #WhiteShulkerBox = GreenShulkerBox, * | BoneMeal, *
  710. #WhiteShulkerBox = LightBlueShulkerBox, * | BoneMeal, *
  711. #WhiteShulkerBox = LightGrayShulkerBox, * | BoneMeal, *
  712. #WhiteShulkerBox = LimeShulkerBox, * | BoneMeal, *
  713. #WhiteShulkerBox = MagentaShulkerBox, * | BoneMeal, *
  714. #WhiteShulkerBox = OrangeShulkerBox, * | BoneMeal, *
  715. #WhiteShulkerBox = PinkShulkerBox, * | BoneMeal, *
  716. #WhiteShulkerBox = PurpleShulkerBox, * | BoneMeal, *
  717. #WhiteShulkerBox = RedShulkerBox, * | BoneMeal, *
  718. #WhiteShulkerBox = WhiteShulkerBox, * | BoneMeal, *
  719. #WhiteShulkerBox = YellowShulkerBox, * | BoneMeal, *
  720. #YellowShulkerBox = BlackShulkerBox, * | YellowDye, *
  721. #YellowShulkerBox = BlueShulkerBox, * | YellowDye, *
  722. #YellowShulkerBox = BrownShulkerBox, * | YellowDye, *
  723. #YellowShulkerBox = CyanShulkerBox, * | YellowDye, *
  724. #YellowShulkerBox = GrayShulkerBox, * | YellowDye, *
  725. #YellowShulkerBox = GreenShulkerBox, * | YellowDye, *
  726. #YellowShulkerBox = LightBlueShulkerBox, * | YellowDye, *
  727. #YellowShulkerBox = LightGrayShulkerBox, * | YellowDye, *
  728. #YellowShulkerBox = LimeShulkerBox, * | YellowDye, *
  729. #YellowShulkerBox = MagentaShulkerBox, * | YellowDye, *
  730. #YellowShulkerBox = OrangeShulkerBox, * | YellowDye, *
  731. #YellowShulkerBox = PinkShulkerBox, * | YellowDye, *
  732. #YellowShulkerBox = PurpleShulkerBox, * | YellowDye, *
  733. #YellowShulkerBox = RedShulkerBox, * | YellowDye, *
  734. #YellowShulkerBox = WhiteShulkerBox, * | YellowDye, *
  735. #YellowShulkerBox = YellowShulkerBox, * | YellowDye, *
  736. #
  737. ##******************************************************#
  738. ## Colored wool:
  739. ##
  740. #BlackWool = WhiteWool, * | BlackDye, *
  741. #BlueWool = WhiteWool, * | BlueDye, *
  742. #BrownWool = WhiteWool, * | BrownDye, *
  743. #CyanWool = WhiteWool, * | CyanDye, *
  744. #GrayWool = WhiteWool, * | GrayDye, *
  745. #GreenWool = WhiteWool, * | GreenDye, *
  746. #LightBlueWool = WhiteWool, * | LightBlueDye, *
  747. #LightGrayWool = WhiteWool, * | LightGrayDye, *
  748. #LimeWool = WhiteWool, * | LimeDye, *
  749. #MagentaWool = WhiteWool, * | MagentaDye, *
  750. #OrangeWool = WhiteWool, * | OrangeDye, *
  751. #PinkWool = WhiteWool, * | PinkDye, *
  752. #PurpleWool = WhiteWool, * | PurpleDye, *
  753. #RedWool = WhiteWool, * | RedDye, *
  754. #WhiteWool = Wool^-1, * | BoneMeal, *
  755. #YellowWool = WhiteWool, * | YellowDye, *
  756. #
  757. #BlackCarpet, 3 = BlackWool, 1:1, 2:1
  758. #BlueCarpet, 3 = BlueWool, 1:1, 2:1
  759. #BrownCarpet, 3 = BrownWool, 1:1, 2:1
  760. #CyanCarpet, 3 = CyanWool, 1:1, 2:1
  761. #GrayCarpet, 3 = GrayWool, 1:1, 2:1
  762. #GreenCarpet, 3 = GreenWool, 1:1, 2:1
  763. #LightBlueCarpet, 3 = LightBlueWool, 1:1, 2:1
  764. #LightGrayCarpet, 3 = LightGrayWool, 1:1, 2:1
  765. #LimeCarpet, 3 = LimeWool, 1:1, 2:1
  766. #MagentaCarpet, 3 = MagentaWool, 1:1, 2:1
  767. #OrangeCarpet, 3 = OrangeWool, 1:1, 2:1
  768. #PinkCarpet, 3 = PinkWool, 1:1, 2:1
  769. #PurpleCarpet, 3 = PurpleWool, 1:1, 2:1
  770. #RedCarpet, 3 = RedWool, 1:1, 2:1
  771. #WhiteCarpet, 3 = WhiteWool, 1:1, 2:1
  772. #YellowCarpet, 3 = YellowWool, 1:1, 2:1
  773. #
  774. ##******************************************************#
  775. ## Stained Glass:
  776. ##
  777. #BlackStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BlackDye, 2:2
  778. #BlueStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BlueDye, 2:2
  779. #BrownStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BrownDye, 2:2
  780. #CyanStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | CyanDye, 2:2
  781. #GrayStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | GrayDye, 2:2
  782. #GreenStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | GreenDye, 2:2
  783. #LightBlueStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LightBlueDye, 2:2
  784. #LightGrayStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LightGrayDye, 2:2
  785. #LimeStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LimeDye, 2:2
  786. #MagentaStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | MagentaDye, 2:2
  787. #OrangeStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | OrangeDye, 2:2
  788. #PinkStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | PinkDye, 2:2
  789. #RedStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | RedDye, 2:2
  790. #VioletStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | VioletDye, 2:2
  791. #WhiteStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BoneMeal, 2:2
  792. #YellowStainedGlass, 8 = Glass, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | YellowDye, 2:2
  793. #
  794. ##******************************************************#
  795. ## Stained Glass Pane:
  796. ##
  797. #BlackStainedGlassPane , 16 = BlackStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  798. #BlueStainedGlassPane, 16 = BlueStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  799. #BrownStainedGlassPane, 16 = BrownStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  800. #CyanStainedGlassPane, 16 = CyanStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  801. #GrayStainedGlassPane, 16 = GrayStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  802. #GreenStainedGlassPane, 16 = GreenStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  803. #LightBlueStainedGlassPane, 16 = LightBlueStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  804. #LightGrayStainedGlassPane, 16 = LightGrayStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  805. #LimeStainedGlassPane, 16 = LimeStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  806. #MagentaStainedGlassPane, 16 = MagentaStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  807. #OrangeStainedGlassPane, 16 = OrangeStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  808. #PinkStainedGlassPane, 16 = PinkStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  809. #RedStainedGlassPane, 16 = RedStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  810. #VioletStainedGlassPane, 16 = VioletStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  811. #WhiteStainedGlassPane, 16 = WhiteStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  812. #YellowStainedGlassPane, 16 = YellowStainedGlass, 1:2, 1:3, 2:2, 2:3, 3:2, 3:3
  813. #
  814. ##******************************************************#
  815. ## Stained Clay:
  816. ##
  817. #BlackStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BlackDye, 2:2
  818. #BlueStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BlueDye, 2:2
  819. #BrownStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BrownDye, 2:2
  820. #CyanStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | CyanDye, 2:2
  821. #GrayStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | GrayDye, 2:2
  822. #GreenStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | GreenDye, 2:2
  823. #LightBlueStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LightBlueDye, 2:2
  824. #LightGrayStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LightGrayDye, 2:2
  825. #LimeStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | LimeDye, 2:2
  826. #MagentaStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | MagentaDye, 2:2
  827. #OrangeStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | OrangeDye, 2:2
  828. #PinkStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | PinkDye, 2:2
  829. #RedStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | RedDye, 2:2
  830. #VioletStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | VioletDye, 2:2
  831. #WhiteStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | BoneMeal, 2:2
  832. #YellowStainedClay, 8 = HardenedClay, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3 | YellowDye, 2:2
  833. #
  834. ##******************************************************#
  835. ## Enchantment & Brewing
  836. ##
  837. #BlazePowder, 2 = BlazeRod, *
  838. #BrewingStand = Cobblestone, 1:2, 2:2, 3:2 | BlazeRod, 2:1
  839. #Cauldron = IronIngot, 1:1, 3:1, 1:2, 3:2, 1:3, 2:3, 3:3
  840. #EnchantmentTable = Obsidian, 1:3, 2:3, 3:3, 2:2 | Diamond, 1:2, 3:2 | Book, 2:1
  841. #FermentedSpiderEye = SpiderEye, * | Sugar, * | BrownMushroom, *
  842. #GlassBottle, 3 = Glass, 1:1, 2:2, 3:1
  843. #GlisteringMelon = MelonSlice, 2:2 | GoldNugget, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  844. #GoldenCarrot = Carrot, 2:2 | GoldNugget, 1:1, 1:2, 1:3, 2:1, 2:3, 3:1, 3:2, 3:3
  845. #GoldNugget, 9 = GoldIngot, *
  846. #MagmaCream = SlimeBall, * | BlazePowder, *
  847. #
  848. ##******************************************************#
  849. ## Dyed Armor
  850. ## Do not modify
  851. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, *
  852. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, *
  853. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  854. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  855. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  856. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  857. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  858. #LeatherHelmet = LeatherHelmet^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  859. #
  860. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, *
  861. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, *
  862. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  863. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  864. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  865. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  866. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  867. #LeatherChestplate = LeatherChestplate^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  868. #
  869. #LeatherPants = LeatherPants^-1, * | Dye^-1, *
  870. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, *
  871. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  872. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  873. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  874. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  875. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  876. #LeatherPants = LeatherPants^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  877. #
  878. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, *
  879. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, *
  880. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  881. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  882. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  883. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  884. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  885. #LeatherBoots = LeatherBoots^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, * | Dye^-1, *
  886. #
  887. ##******************************************************#
  888. ## Fireworks & Co.
  889. ## (Best not to add non-vanilla items to this as it will cause internal firework data handling code to log warnings)
  890. #
  891. ## Ballistic firework rockets - plain and with firework star, all with 1 - 3 gunpowder
  892. #FireworkRocket = FireworkStar, * | Paper, * | Gunpowder, *
  893. #FireworkRocket = FireworkStar, * | Paper, * | Gunpowder, * | Gunpowder, *
  894. #FireworkRocket = FireworkStar, * | Paper, * | Gunpowder, * | Gunpowder, * | Gunpowder, *
  895. #FireworkRocket = Paper, * | Gunpowder, *
  896. #FireworkRocket = Paper, * | Gunpowder, * | Gunpowder, *
  897. #FireworkRocket = Paper, * | Gunpowder, * | Gunpowder, * | Gunpowder, *
  898. #
  899. ## Radioactive firework stars
  900. ## Plain powder and dye
  901. #FireworkStar = Gunpowder, * | Dye ^-1, *
  902. #
  903. ## Powder and effect, with effect combining
  904. #FireworkStar = Gunpowder, * | Dye ^-1, * | Diamond, *
  905. #FireworkStar = Gunpowder, * | Dye ^-1, * | Glowdust, *
  906. #FireworkStar = Gunpowder, * | Dye ^-1, * | Glowdust, * | Diamond, *
  907. #
  908. ## Powder and shape (no shape combining possible)
  909. #FireworkStar = Gunpowder, * | Dye ^-1, * | Feather, *
  910. #FireworkStar = Gunpowder, * | Dye ^-1, * | Firecharge, *
  911. #FireworkStar = Gunpowder, * | Dye ^-1, * | Goldnugget, *
  912. #FireworkStar = Gunpowder, * | Dye ^-1, * | SkeletonHead ^-1, *
  913. #
  914. ## Power and shape (no shape combining possible), combined with effect
  915. #FireworkStar = Gunpowder, * | Dye ^-1, * | Feather, * | Diamond, *
  916. #FireworkStar = Gunpowder, * | Dye ^-1, * | Feather, * | Glowdust, *
  917. #FireworkStar = Gunpowder, * | Dye ^-1, * | Firecharge, * | Diamond, *
  918. #FireworkStar = Gunpowder, * | Dye ^-1, * | Firecharge, * | Glowdust, *
  919. #FireworkStar = Gunpowder, * | Dye ^-1, * | Goldnugget, * | Diamond, *
  920. #FireworkStar = Gunpowder, * | Dye ^-1, * | Goldnugget, * | Glowdust, *
  921. #FireworkStar = Gunpowder, * | Dye ^-1, * | SkeletonHead ^-1, * | Diamond, *
  922. #FireworkStar = Gunpowder, * | Dye ^-1, * | SkeletonHead ^-1, * | Glowdust, *
  923. #
  924. ## Power and shape (no shape combining possible), combined with effect (with effect combining)
  925. #FireworkStar = Gunpowder, * | Dye ^-1, * | Feather, * | Glowdust, * | Diamond, *
  926. #FireworkStar = Gunpowder, * | Dye ^-1, * | Firecharge, * | Glowdust, * | Diamond, *
  927. #FireworkStar = Gunpowder, * | Dye ^-1, * | Goldnugget, * | Glowdust, * | Diamond, *
  928. #FireworkStar = Gunpowder, * | Dye ^-1, * | SkeletonHead ^-1, * | Glowdust, * | Diamond, *
  929. #
  930. ## Star fade colour-change
  931. #FireworkStar = FireworkStar, * | Dye ^-1, *
  932. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, *
  933. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  934. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  935. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  936. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  937. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  938. #FireworkStar = FireworkStar, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, * | Dye ^-1, *
  939. #
  940. #
  941. #
  942. ##******************************************************#
  943. ## Bed different colors
  944. #Bed^0 = Planks^-1, 1:2, 2:2, 3:2 | Wool^0, 1:1, 2:1, 3:1
  945. #Bed^1 = Planks^-1, 1:2, 2:2, 3:2 | Wool^1, 1:1, 2:1, 3:1
  946. #Bed^2 = Planks^-1, 1:2, 2:2, 3:2 | Wool^2, 1:1, 2:1, 3:1
  947. #Bed^3 = Planks^-1, 1:2, 2:2, 3:2 | Wool^3, 1:1, 2:1, 3:1
  948. #Bed^4 = Planks^-1, 1:2, 2:2, 3:2 | Wool^4, 1:1, 2:1, 3:1
  949. #Bed^5 = Planks^-1, 1:2, 2:2, 3:2 | Wool^5, 1:1, 2:1, 3:1
  950. #Bed^6 = Planks^-1, 1:2, 2:2, 3:2 | Wool^6, 1:1, 2:1, 3:1
  951. #Bed^7 = Planks^-1, 1:2, 2:2, 3:2 | Wool^7, 1:1, 2:1, 3:1
  952. #Bed^8 = Planks^-1, 1:2, 2:2, 3:2 | Wool^8, 1:1, 2:1, 3:1
  953. #Bed^9 = Planks^-1, 1:2, 2:2, 3:2 | Wool^9, 1:1, 2:1, 3:1
  954. #Bed^10 = Planks^-1, 1:2, 2:2, 3:2 | Wool^10, 1:1, 2:1, 3:1
  955. #Bed^11 = Planks^-1, 1:2, 2:2, 3:2 | Wool^11, 1:1, 2:1, 3:1
  956. #Bed^12 = Planks^-1, 1:2, 2:2, 3:2 | Wool^12, 1:1, 2:1, 3:1
  957. #Bed^13 = Planks^-1, 1:2, 2:2, 3:2 | Wool^13, 1:1, 2:1, 3:1
  958. #Bed^14 = Planks^-1, 1:2, 2:2, 3:2 | Wool^14, 1:1, 2:1, 3:1
  959. #Bed^15 = Planks^-1, 1:2, 2:2, 3:2 | Wool^15, 1:1, 2:1, 3:1