Advertisement
kssr3951

Items

Jul 2nd, 2014
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 21.11 KB | None | 0 0
  1. Disk_Drive            = { id = "Disk_Drive"           , from = "ComputerCraft", stack = 64, note = "", }
  2. Floppy_Disk           = { id = "Floppy_Disk"          , from = "ComputerCraft", stack =  1, note = "", }
  3. Wired_Modem           = { id = "Wired_Modem"          , from = "ComputerCraft", stack = 64, note = "", }
  4. Networking_Cable      = { id = "Networking_Cable"     , from = "ComputerCraft", stack = 64, note = "", }
  5. Computer              = { id = "Computer"             , from = "ComputerCraft", stack = 64, note = "", }
  6. Turtle                = { id = "Turtle"               , from = "ComputerCraft", stack = 64, note = "", }
  7. Dispenser             = { id = "Dispenser"            , from = "Minecraft"    , stack = 64, note = "", }
  8. Wooden_Pressure_Plate = { id = "Wooden_Pressure_Plate", from = "Minecraft"    , stack = 64, note = "", }
  9. Blue_Wool             = { id = "Blue_Wool"            , from = "Minecraft"    , stack = 64, note = "", }
  10. Red_Wool              = { id = "Red_Wool"             , from = "Minecraft"    , stack = 64, note = "", }
  11. Obsidian              = { id = "Obsidian"             , from = "Minecraft"    , stack = 64, note = "", }
  12. Chest                 = { id = "Chest"                , from = "Minecraft"    , stack = 64, note = "", }
  13. Cobblestone_Slab      = { id = "Cobblestone_Slab"     , from = "Minecraft"    , stack = 64, note = "half block", }
  14. Water_Bucket          = { id = "Water_Bucket"         , from = "Minecraft"    , stack =  1, note = "", }
  15. Bucket                = { id = "Bucket"               , from = "Minecraft"    , stack = 64, note = "empty bucket", }
  16. Cobblestone           = { id = "Cobblestone"          , from = "Minecraft"    , stack = 64, note = "", }
  17. Cobblestone_Wall      = { id = "Cobblestone_Wall"     , from = "Minecraft"    , stack = 64, note = "", }
  18. Furnace               = { id = "Furnace"              , from = "Minecraft"    , stack = 64, note = "kamado", }
  19. Stone                 = { id = "Stone"                , from = "Minecraft"    , stack = 64, note = "yakiishi", }
  20. Wood                  = { id = "Wood"                 , from = "Minecraft"    , stack = 64, isFuel = true, note = ""}
  21. Wood_Plank            = { id = "Wood_Plank"           , from = "Minecraft"    , stack = 64, isFuel = true, note = "" }
  22. Spruce_Wood           = { id = "Spruce_Wood"          , from = "Minecraft"    , stack = 64, isA = Wood      , note = "matsu", }
  23. Spruce_Wood_Plank     = { id = "Spruce_Wood_Plank"    , from = "Minecraft"    , stack = 64, isA = Wood_Plank, note = "matsu", }
  24. Stick                 = { id = "Stick"                , from = "Minecraft"    , stack = 64, isFuel = true, note = "" }
  25. Wooden_Button         = { id = "Wooden_Button"        , from = "Minecraft"    , stack = 64, note = "" } -- is not fuel
  26. Diamond               = { id = "Diamond"              , from = "Minecraft"    , stack = 64, note = "" }
  27. Diamond_Pickaxe       = { id = "Diamond_Pickaxe"      , from = "Minecraft"    , stack =  1, note = "" }
  28.  
  29.  
  30.  
  31.  
  32. --[[
  33. Mining_Turtle         = { id = "Mining_Turtle"        , from = "ComputerCraft", note = "" }
  34. Lever                 = { id = "Lever"                , from = "Minecraft"    , note = "" }
  35. Oak_Wood              = { id = "Oak_Wood"             , from = "Minecraft"    , note = "" }
  36. Birch_Wood            = { id = "Birch_Wood"           , from = "Minecraft"    , note = "shirakaba" }
  37. Jungle_Wood           = { id = "Jungle_Wood"          , from = "Minecraft"    , note = "" }
  38. Oak_Wood_Plank        = { id = "Oak_Wood_Plank"       , from = "Minecraft"    , note = "" }
  39. Birch_Wood_Plank      = { id = "Birch_Wood_Plank"     , from = "Minecraft"    , note = "shirakaba" }
  40. Jungle_Wood_Plank     = { id = "Jungle_Wood_Plank"    , from = "Minecraft"    , note = "" }
  41. Sand                  = { id = "Sand"                 , from = "Minecraft"    , note = "" }
  42. Glass                 = { id = "Glass"                , from = "Minecraft"    , note = "garasu" }
  43. Glass_Pane            = { id = "Glass_Pane"           , from = "Minecraft"    , note = "" }
  44. Redstone              = { id = "Redstone"             , from = "Minecraft"    , note = "" }
  45. Redstone_Block        = { id = "Redstone_Block"       , from = "Minecraft"    , note = "" }
  46. Iron_Ore              = { id = "Iron_Ore"             , from = "Minecraft"    , note = "" }
  47. Iron_Ingot            = { id = "Iron_Ingot"           , from = "Minecraft"    , note = "" }
  48. Sugar_Cane            = { id = "Sugar_Cane"           , from = "Minecraft"    , note = "" }
  49. Paper                 = { id = "Paper"                , from = "Minecraft"    , note = "" }
  50. Coal                  = { id = "Coal"                 , from = "Minecraft"    , note = "" }
  51. Workbench             = { id = "Workbench"            , from = "Minecraft"    , note = "" }
  52. Lava_Bucket           = { id = "Lava_Bucket"          , from = "Minecraft"    , note = "" }
  53. Charcoal              = { id = "Charcoal"             , from = "Minecraft"    , note = "" }
  54. Gold_Ingot            = { id = "Gold_Ingot"           , from = "Minecraft"    , note = "" }
  55. Lapis_Lazuli          = { id = "Lapis_Lazuli"         , from = "Minecraft"    , note = "" }
  56. Emerald               = { id = "Emerald"              , from = "Minecraft"    , note = "" }
  57. Torch                 = { id = "Torch"                , from = "Minecraft"    , note = "" }
  58. Sugar                 = { id = "Sugar"                , from = "Minecraft"    , note = "" }
  59. Block_of_Coal         = { id = "Block_of_Coal"        , from = "Minecraft"    , note = "" }
  60. Diamond_Block         = { id = "Diamond_Block"        , from = "Minecraft"    , note = "" }
  61. Diamond_Sword         = { id = "Diamond_Sword"        , from = "Minecraft"    , note = "" }
  62. Diamond_Shovel        = { id = "Diamond_Shovel"       , from = "Minecraft"    , note = "" }
  63. Diamond_Axe           = { id = "Diamond_Axe"          , from = "Minecraft"    , note = "" }
  64. Diamond_Hoe           = { id = "Diamond_Hoe"          , from = "Minecraft"    , note = "" }
  65. Sign                  = { id = "Sign"                 , from = "Minecraft"    , note = "" }
  66. Minecart              = { id = "Minecart"             , from = "Minecraft"    , note = "" }
  67. Storage_Minecart      = { id = "Storage_Minecart"     , from = "Minecraft"    , note = "" }
  68. Powered_Minecart      = { id = "Powered_Minecart"     , from = "Minecraft"    , note = "" }
  69. Bone_Meal             = { id = "Bone_Mealv"           , from = "Minecraft"    , note = "" }
  70. Ender_Pearl           = { id = "Ender_Pearl"          , from = "Minecraft"    , note = "" }
  71. Dirt                  = { id = "Dirt"                 , from = "Minecraft"    , note = "" }
  72. Gravel                = { id = "Gravel"               , from = "Minecraft"    , note = "ja-ri" }
  73. Gold_Ore              = { id = "Gold_Ore"             , from = "Minecraft"    , note = "" }
  74. Coal_Ore              = { id = "Coal_Ore"             , from = "Minecraft"    , note = "" }
  75. Sandstone             = { id = "Sandstone"            , from = "Minecraft"    , note = "" }
  76. Gold_Nugget           = { id = "Gold_Nugget"          , from = "Minecraft"    , note = "" }
  77. Lapis_Lazuli_Block    = { id = "Lapis_Lazuli_Block"   , from = "Minecraft"    , note = "" }
  78. Powered_Rail          = { id = "Powered_Rail"         , from = "Minecraft"    , note = "" }
  79. Detector_Rail         = { id = "Detector_Rail"        , from = "Minecraft"    , note = "" }
  80. Gold_Block            = { id = "Gold_Block"           , from = "Minecraft"    , note = "" }
  81. Iron_Block            = { id = "Iron_Block"           , from = "Minecraft"    , note = "" }
  82. Ladder                = { id = "Ladder"               , from = "Minecraft"    , note = "" }
  83. Rails                 = { id = "Rails"                , from = "Minecraft"    , note = "" }
  84. Fence_Gate            = { id = "Fence_Gate"           , from = "Minecraft"    , note = "" }
  85. Bowl                  = { id = "Bowl"                 , from = "Minecraft"    , note = "" }
  86. Stone_Button          = { id = "Stone_Button"         , from = "Minecraft"    , note = "" }
  87. Cactus                = { id = "Cactus"               , from = "Minecraft"    , note = "" }
  88. Fence                 = { id = "Fence"                , from = "Minecraft"    , note = "" }
  89. Iron_Bars             = { id = "Iron_Bars"            , from = "Minecraft"    , note = "" }
  90. Emerald_Block         = { id = "Emerald_Block"        , from = "Minecraft"    , note = "" }
  91. Dropper               = { id = "Dropper"              , from = "Minecraft"    , note = "" }
  92. Boat                  = { id = "Boat"                 , from = "Minecraft"    , note = "" }
  93. White_Wool            = { id = "White_Wool"           , from = "Minecraft"    , note = "" }
  94. Orange_Wool           = { id = "Orange_Wool"          , from = "Minecraft"    , note = "" }
  95. Magenta_Wool          = { id = "Magenta_Wool"         , from = "Minecraft"    , note = "" }
  96. Light_Blue_Wool       = { id = "Light_Blue_Wool"      , from = "Minecraft"    , note = "" }
  97. Yellow_Wool           = { id = "Yellow_Wool"          , from = "Minecraft"    , note = "" }
  98. Lime_Wool             = { id = "Lime_Wool"            , from = "Minecraft"    , note = "" }
  99. Pink_Wool             = { id = "Pink_Wool"            , from = "Minecraft"    , note = "" }
  100. Gray_Wool             = { id = "Gray_Wool"            , from = "Minecraft"    , note = "" }
  101. Light_Gray_Wool       = { id = "Light_Gray_Wool"      , from = "Minecraft"    , note = "" }
  102. Cyan_Wool             = { id = "Cyan_Wool"            , from = "Minecraft"    , note = "" }
  103. Purple_Wool           = { id = "Purple_Wool"          , from = "Minecraft"    , note = "" }
  104. Brown_Wool            = { id = "Brown_Wool"           , from = "Minecraft"    , note = "" }
  105. Green_Wool            = { id = "Green_Wool"           , from = "Minecraft"    , note = "" }
  106. Black_Wool            = { id = "Black_Wool"           , from = "Minecraft"    , note = "" }
  107. Anvil                 = { id = "Anvil"                , from = "Minecraft"    , note = "" }
  108. Sticky_Piston         = { id = "Sticky_Piston"        , from = "Minecraft"    , note = "" }
  109. Piston                = { id = "Piston"               , from = "Minecraft"    , note = "" }
  110. Note_Block            = { id = "Note_Block"           , from = "Minecraft"    , note = "" }
  111. TNT                   = { id = "TNT"                  , from = "Minecraft"    , note = "" }
  112. Brick                 = { id = "Brick"                , from = "Minecraft"    , note = "" }
  113. Bookshelf             = { id = "Bookshelf"            , from = "Minecraft"    , note = "" }
  114. Stone_Pressure_Plate  = { id = "Stone_Pressure_Plate" , from = "Minecraft"    , note = "" }
  115. Trapped_Chest         = { id = "Trapped_Chest"        , from = "Minecraft"    , note = "" }
  116. Daylight_Sensor       = { id = "Daylight_Sensor"      , from = "Minecraft"    , note = "" }
  117. Hopper                = { id = "Hopper"               , from = "Minecraft"    , note = "" }
  118. Activator_Rail        = { id = "Activator_Rail"       , from = "Minecraft"    , note = "" }
  119. Apple                 = { id = "Apple"                , from = "Minecraft"    , note = "" }
  120. Bow                   = { id = "Bow"                  , from = "Minecraft"    , note = "" }
  121. Arrow                 = { id = "Arrow"                , from = "Minecraft"    , note = "" }
  122. String                = { id = "String"               , from = "Minecraft"    , note = "" }
  123. Feather               = { id = "Feather"              , from = "Minecraft"    , note = "" }
  124. Sulphur               = { id = "Sulphur"              , from = "Minecraft"    , note = "" }
  125. Flint                 = { id = "Flint"                , from = "Minecraft"    , note = "" }
  126. Leather               = { id = "Leather"              , from = "Minecraft"    , note = "" }
  127. Book                  = { id = "Book"                 , from = "Minecraft"    , note = "" }
  128. Slimeball             = { id = "Slimeball"            , from = "Minecraft"    , note = "" }
  129. Egg                   = { id = "Egg"                  , from = "Minecraft"    , note = "" }
  130. Fire_Charge           = { id = "Fire_Charge"          , from = "Minecraft"    , note = "" }
  131. Item_Frame            = { id = "Item_Frame"           , from = "Minecraft"    , note = "" }
  132. --]]
  133.  
  134.  
  135. --[[
  136.     -- -------------------------
  137.     -- -- Computer Craft
  138.     -- -------------------------
  139.     Printer                    = { id = "Printer" }
  140.     Wireless_Modem            = { id = "Wireless_Modem" }
  141.     Monitor                    = { id = "Monitor" }
  142.     Printed_Page            = { id = "Printed_Page" }
  143.     Printed_Pages            = { id = "Printed_Pages" }
  144.     Printed_Book            = { id = "Printed_Book" }
  145.     Digging_Turtle            = { id = "Digging_Turtle" }
  146.     Melee_Turtle            = { id = "Melee_Turtle" }
  147.     Felling_Turtle            = { id = "Felling_Turtle" }
  148.     Farming_Turtle            = { id = "Farming_Turtle" }
  149.     Wireless_Turtle            = { id = "Wireless_Turtle" }
  150.     Wireless_Mining_Turtle    = { id = "Wireless_Mining_Turtle" }
  151.     Wireless_Melee_Turtle    = { id = "Wireless_Melee_Turtle" }
  152.     Wireless_Digging_Turtle    = { id = "Wireless_Digging_Turtle" }
  153.     Wireless_Felling_Turtle    = { id = "Wireless_Felling_Turtle" }
  154.     Wireless_Farming_Turtle    = { id = "Wireless_Farming_Turtle" }
  155.     Crafty_Turtle            = { id = "Crafty_Turtle" }
  156.     Crafty_Mining_Turtle    = { id = "Crafty_Mining_Turtle" }
  157.     Crafty_Melee_Turtle        = { id = "Crafty_Melee_Turtle" }
  158.     Crafty_Digging_Turtle    = { id = "Crafty_Digging_Turtle" }
  159.     Crafty_Felling_Turtle    = { id = "Crafty_Felling_Turtle" }
  160.     Crafty_Farming_Turtle    = { id = "Crafty_Farming_Turtle" }
  161.     Wireless_Crafty_Turtle    = { id = "Wireless_Crafty_Turtle" }
  162.  
  163.     -- -------------------------
  164.     -- -- Minecraft
  165.     -- -------------------------
  166.  
  167.     Lava                    = { id = "Lava" }
  168.     Soil                    = { id = "Soil" }
  169.     Wall_Sign                = { id = "Wall_Sign" }
  170.     Clock                    = { id = "Clock" }
  171.     Sign_Post                = { id = "Sign_Post" }
  172. --]]
  173. --[[
  174. 0  Air
  175. 2  Grass
  176. 6  Oak Sapling
  177. 6:1  Spruce Sapling
  178. 6:2  Birch Sapling
  179. 6:3  Jungle Sapling
  180. 7  Bedrock
  181. 8  Water
  182. 9  Stationary Water
  183. 11  Stationary Lava
  184. 18  Oak Leaves
  185. 18:1  Spruce Leaves
  186. 18:2  Birch Leaves
  187. 18:3  Jungle Leaves
  188. 19  Sponge
  189. 21  Lapis Lazuli Ore
  190. 24:1  Chiseled Sandstone
  191. 24:2  Smooth Sandstone
  192. 26  Bed Block
  193. 30  Web
  194. 31  Dead Shrub
  195. 31:1  Grass
  196. 31:2  Fern
  197. 32  Dead Shrub -- kareki (sabaku no)
  198. 34  Piston Head
  199. 43  Double Stone Slab
  200. 43:1  Double Sandstone Slab
  201. 43:2  Double Wooden Slab
  202. 43:3  Double Cobblestone Slab
  203. 43:4  Double Brick Slab
  204. 43:5  Double Stone Brick Slab
  205. 43:6  Double Nether Brick Slab
  206. 43:7  Double Quartz Slab
  207.  
  208. 37  Dandelion
  209. 38  Rose
  210. 39  Brown Mushroom
  211. 40  Red Mushroom
  212. 44  Stone Slab
  213. 44:1  Sandstone Slab
  214. 44:2  Wooden Slab
  215. 44:4  Brick Slab
  216. 44:5  Stone Brick Slab
  217. 44:6  Nether Brick Slab
  218. 44:7  Quartz Slab
  219.  
  220. 48  Mossy Cobblestone
  221. 53  Oak Wood Stairs
  222. 67  Cobblestone Stairs
  223. 71  Iron Door Block
  224.  
  225. 51  Fire
  226. 52  Monster Spawner
  227. 55  Redstone Wire
  228. 56  Diamond Ore
  229. 59  Wheat Crops
  230. 62  Burning Furnace
  231. 73  Redstone Ore
  232. 74  Glowing Redstone Ore
  233. 75  Redstone Torch (off)
  234. 76  Redstone Torch (on)
  235. 78  Snow
  236. 79  Ice
  237. 90  Portal
  238. 93  Redstone Repeater Block (off)
  239. 94  Redstone Repeater Block (on)
  240. 95  Locked Chest
  241.  
  242. 64  Wooden Door Block
  243. 80  Snow Block
  244. 82  Clay
  245. 84  Jukebox
  246. 86  Pumpkin
  247. 87  Netherrack
  248. 88  Soul Sand
  249. 89  Glowstone
  250. 91  Jack-O-Lantern
  251. 92  Cake Block
  252. 96  Trapdoor
  253. 98  Stone Brick
  254. 108  Brick Stairs
  255. 116  Enchantment Table
  256. 117  Brewing Stand
  257. 118  Cauldron -- oo gama
  258.  
  259. 97  Stone (Silverfish)
  260. 97:1  Cobblestone (Silverfish)
  261. 97:2  Stone Brick (Silverfish)
  262.  
  263. 98:1  Mossy Stone Brick
  264. 98:2  Cracked Stone Brick
  265. 98:3  Chiseled Stone Brick
  266. 99  Red Mushroom Cap
  267. 100  Brown Mushroom Cap
  268. 103  Melon Block
  269. 104  Pumpkin Stem
  270. 105  Melon Stem
  271. 106  Vines
  272. 109  Stone Brick Stairs
  273. 110  Mycelium -- kinoko biome no tuchi (= kinshi block)
  274. 111  Lily Pad
  275. 112  Nether Brick
  276. 113  Nether Brick Fence
  277. 114  Nether Brick Stairs
  278. 115  Nether Wart
  279. 119  End Portal
  280. 120  End Portal Frame
  281. 121  End Stone
  282. 122  Dragon Egg
  283. 123  Redstone Lamp (inactive)
  284. 124  Redstone Lamp (active)
  285. 125  Double Oak Wood Slab
  286. 125:1  Double Spruce Wood Slab
  287. 125:2  Double Birch Wood Slab
  288. 125:3  Double Jungle Wood Slab
  289. 126  Oak Wood Slab
  290. 126:1  Spruce Wood Slab
  291. 126:2  Birch Wood Slab
  292. 126:3  Jungle Wood Slab
  293. 127  Cocoa Plant
  294. 128  Sandstone Stairs
  295. 129  Emerald Ore
  296. 130  Ender Chest
  297. 131  Tripwire Hook
  298. 132  Tripwire
  299. 134  Spruce Wood Stairs
  300. 135  Birch Wood Stairs
  301. 136  Jungle Wood Stairs
  302. 137  Command Block
  303. 138  Beacon Block
  304. 139:1  Mossy Cobblestone Wall
  305. 140  Flower Pot
  306. 141  Carrots
  307. 142  Potatoes
  308. 144  Mob Head
  309.  
  310. 147  Weighted Pressure Plate (light)
  311. 148  Weighted Pressure Plate (heavy)
  312. 149  Redstone Comparator (inactive)
  313. 150  Redstone Comparator (active)
  314. 153  Nether Quartz Ore
  315. 155  Quartz Block
  316. 155:1  Chiseled Quartz Block
  317. 155:2  Pillar Quartz Block
  318. 156  Quartz Stairs
  319. 159  White Stained Clay
  320. 159:1  Orange Stained Clay
  321. 159:2  Magenta Stained Clay
  322. 159:3  Light Blue Stained Clay
  323. 159:4  Yellow Stained Clay
  324. 159:5  Lime Stained Clay
  325. 159:6  Pink Stained Clay
  326. 159:7  Gray Stained Clay
  327. 159:8  Light Gray Stained Clay
  328. 159:9  Cyan Stained Clay
  329. 159:10  Purple Stained Clay
  330. 159:11  Blue Stained Clay
  331. 159:12  Brown Stained Clay
  332. 159:13  Green Stained Clay
  333. 159:14  Red Stained Clay
  334. 159:15  Black Stained Clay
  335. 170  Hay Bale
  336. 171  White Carpet
  337. 171:1  Orange Carpet
  338. 171:2  Magenta Carpet
  339. 171:3  Light Blue Carpet
  340. 171:4  Yellow Carpet
  341. 171:5  Lime Carpet
  342. 171:6  Pink Carpet
  343. 171:7  Gray Carpet
  344. 171:8  Light Gray Carpet
  345. 171:9  Cyan Carpet
  346. 171:10  Purple Carpet
  347. 171:11  Blue Carpet
  348. 171:12  Brown Carpet
  349. 171:13  Green Carpet
  350. 171:14  Red Carpet
  351. 171:15  Black Carpet
  352. 172  Hardened Clay
  353. 256  Iron Shovel
  354. 257  Iron Pickaxe
  355. 258  Iron Axe
  356. 259  Flint and Steel
  357. 267  Iron Sword
  358. 268  Wooden Sword
  359. 269  Wooden Shovel
  360. 270  Wooden Pickaxe
  361. 271  Wooden Axe
  362. 272  Stone Sword
  363. 273  Stone Shovel
  364. 274  Stone Pickaxe
  365. 275  Stone Axe
  366. 282  Mushroom Soup
  367. 283  Gold Sword
  368. 284  Gold Shovel
  369. 285  Gold Pickaxe
  370. 286  Gold Axe
  371.  
  372. 290  Wooden Hoe
  373. 291  Stone Hoe
  374. 292  Iron Hoe
  375. 294  Gold Hoe
  376. 295  Wheat Seeds
  377. 296  Wheat
  378. 297  Bread
  379. 298  Leather Helmet
  380. 299  Leather Chestplate
  381. 300  Leather Leggings
  382. 301  Leather Boots
  383. 302  Chainmail Helmet
  384. 303  Chainmail Chestplate
  385. 304  Chainmail Leggings
  386. 305  Chainmail Boots
  387. 306  Iron Helmet
  388. 307  Iron Chestplate
  389. 308  Iron Leggings
  390. 309  Iron Boots
  391. 310  Diamond Helmet
  392. 311  Diamond Chestplate
  393. 312  Diamond Leggings
  394. 313  Diamond Boots
  395. 314  Gold Helmet
  396. 315  Gold Chestplate
  397. 316  Gold Leggings
  398. 317  Gold Boots
  399.  
  400. 319  Raw Porkchop
  401. 320  Cooked Porkchop
  402. 321  Painting
  403. 322  Golden Apple
  404. 322:1  Enchanted Golden Apple
  405. 324  Wooden Door
  406. 329  Saddle
  407. 330  Iron Door
  408. 332  Snowball
  409.  
  410. 335  Milk Bucket
  411. 336  Clay Brick
  412. 337  Clay Balls
  413.  
  414. 345  Compass
  415. 346  Fishing Rod
  416. 348  Glowstone Dust
  417. 349  Raw Fish
  418. 350  Cooked Fish
  419. 351  Ink Sack
  420. 351:1  Rose Red
  421. 351:2  Cactus Green
  422. 351:3  Coco Beans
  423. 351:5  Purple Dye
  424. 351:6  Cyan Dye
  425. 351:7  Light Gray Dye
  426. 351:8  Gray Dye
  427. 351:9  Pink Dye
  428. 351:10  Lime Dye
  429. 351:11  Dandelion Yellow
  430. 351:12  Light Blue Dye
  431. 351:13  Magenta Dye
  432. 351:14  Orange Dye
  433. 352  Bone
  434. 354  Cake
  435. 355  Bed
  436. 356  Redstone Repeater
  437. 357  Cookie
  438. 358  Map
  439. 359  Shears -- hasami
  440. 360  Melon
  441. 361  Pumpkin Seeds
  442. 362  Melon Seeds
  443. 363  Raw Beef
  444. 364  Steak
  445. 365  Raw Chicken
  446. 366  Cooked Chicken
  447. 367  Rotten Flesh
  448. 369  Blaze Rod
  449. 370  Ghast Tear
  450. 372  Nether Wart Seeds
  451. 373  Potion
  452. 374  Glass Bottle
  453. 375  Spider Eye
  454. 376  Fermented Spider Eye
  455. 377  Blaze Powder
  456. 378  Magma Cream
  457. 379  Brewing Stand
  458. 380  Cauldron -- oo gama
  459. 381  Eye of Ender
  460. 382  Glistering Melon
  461. 383:50  Spawn Creeper
  462. 383:51  Spawn Skeleton
  463. 383:52  Spawn Spider
  464. 383:54  Spawn Zombie
  465. 383:55  Spawn Slime
  466. 383:56  Spawn Ghast
  467. 383:57  Spawn Pigman
  468. 383:58  Spawn Enderman
  469. 383:59  Spawn Cave Spider
  470. 383:60  Spawn Silverfish
  471. 383:61  Spawn Blaze
  472. 383:62  Spawn Magma Cube
  473. 383:65  Spawn Bat
  474. 383:66  Spawn Witch
  475. 383:90  Spawn Pig
  476. 383:91  Spawn Sheep
  477. 383:92  Spawn Cow
  478. 383:93  Spawn Chicken
  479. 383:94  Spawn Squid
  480. 383:95  Spawn Wolf
  481. 383:96  Spawn Mooshroom
  482. 383:98  Spawn Ocelot
  483. 383:100  Spawn Horse
  484. 383:120  Spawn Villager
  485. 384  Bottle o' Enchanting
  486.  
  487. 386  Book and Quill
  488. 387  Written Book
  489. 390  Flower Pot
  490. 391  Carrots
  491. 392  Potato
  492. 393  Baked Potato
  493. 394  Poisonous Potato
  494. 395  Map
  495. 396  Golden Carrot
  496. 397  Mob Head (Skeleton)
  497. 397:1  Mob Head (Wither Skeleton)
  498. 397:2  Mob Head (Zombie)
  499. 397:3  Mob Head (Human)
  500. 397:4  Mob Head (Creeper)
  501. 398  Carrot on a Stick
  502. 399  Nether Star
  503. 400  Pumpkin Pie
  504. 401  Firework Rocket
  505. 402  Firework Star
  506. 403  Enchanted Book
  507. 404  Redstone Comparator
  508. 405  Nether Brick
  509. 406  Nether Quartz
  510. 407  Minecart with TNT
  511. 408  Minecart with Hopper
  512. 417  Iron Horse Armor
  513. 418  Gold Horse Armor
  514. 419  Diamond Horse Armor
  515. 420  Lead
  516. 421  Name Tag
  517. 2256  13 Disc
  518. 2257  Cat Disc
  519. 2258  Blocks Disc
  520. 2259  Chirp Disc
  521. 2260  Far Disc
  522. 2261  Mall Disc
  523. 2262  Mellohi Disc
  524. 2263  Stal Disc
  525. 2264  Strad Disc
  526. 2265  Ward Disc
  527. 2266  11 Disc
  528. 2267  Wait Disc
  529. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement