Advertisement
BaneOfSmite

Old aliases slowly updating to 1.12

Mar 30th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.96 KB | None | 0 0
  1.  
  2. # ====== Aliases ======
  3. # In this file you can create aliases. An alias is a name for a block or an item, or a collection of such.
  4. # There are hundreds of predefined aliases, so you don't usually need to care about this file.
  5. #
  6. # An alias is nothing more than a mapping from a name to one or more item/block types.
  7. # e.g: 'torch = 50' creates the alias 'torch' and maps it to 50, the ID of a torch.
  8. # So now every time you need a torch you can write torch instead of 50, which is much more intuitive.
  9. # You can make an alias match multiple types by separating them with a comma, e.g. 'water = 8, 9'.
  10. # You can also include data values, e.g. 'orange wool = 35:1'. Data Values can be a range,
  11. # e.g. 'wet farmland = 60:1-8' (60:0 is dry farmland)
  12. #
  13. # == Advanced ==
  14. # As different languages have different ways of forming plurals of words you have to define the plurals of all aliases yourself.
  15. # This is done by adding the plural ending after a ¦ character, e.g. 'log¦s = 17'.
  16. # If the singular and plural have different endings each, use two ¦ characters, e.g. 'bookshel¦f¦ves = 47'.
  17. # If you want to pluralize a word within the alias, use another ¦ character, e.g.. 'bucket¦¦s¦ of water' ('¦¦s¦' means: no singular ending, plural ending 's').
  18. # These plurals are both used by Skript when displaying items, e.g. 2 logs will be displayed as '2 logs',
  19. # while 1 log will be displayed as '1 log', but are also used when parsing, i.e. you can write '1 log' or '2 logs' and both is understood.
  20. # Aliases should also have a gender, which can be defined by adding '@<gender>' after the alias, e.g. 'emerald¦s @an' ('@a' can be omitted as it's the default).
  21. # - English genders are 'a' and 'an', and German genders are 'n', 'm', and 'f' (these are all defined in the respectile language file).
  22. # All languages can use the special genders 'x' and '-' for plural and no gender respectively, e.g. 'leaves @x' or 'air @-'.
  23. #
  24. # Sometimes you want to make a part of an alias optional, e.g. in 'wooden door',
  25. # which is also sometimes called 'wood door', the 'en' can be made optional.
  26. # This can be done by putting the optional part into square brackets ([]):
  27. # wood[en] door = 64 # creates 2 aliases: 'wood door = 64' and 'wooden door = 64'
  28. #
  29. # Some blocks/items have different names, like the slab which is also called step.
  30. # In this case you can simple write something like this:
  31. # (step|slab) = 44 # creates two aliases, 'slab' and 'step', of which both are mapped to '44'
  32. # stone (step|slab) = 44:0 # creates 'stone slab' and 'stone step' mapped to '44:0'
  33. # wood[en] (step|slab) = 44:2 # creates four aliases
  34. #
  35. # Some blocks and items share some different appearances, e.g. wood, saplings and leaves all differ only in their tree type.
  36. # Usually you would have to create the aliases 'birch wood', 'birch sapling', 'redwood wood', 'redwood sapling' etc.
  37. # But this can be shortened by using variations:
  38. # {tree type}: # name of the variation
  39. # regular = :0 # list values here. these have the same syntax as aliases, i.e. they can have ids and data/data ranges,
  40. # redwood = :1 # but you usally only need the data, which is done by typing a colon with no id in front of it.
  41. # birch = :2
  42. # {tree type} wood = 17 # this is resolved to: wood = 17, regular wood = 17:0, redwood wood = 17:1 and birch wood = 17:2
  43. # sapling of {tree type} tree = 6 # you can put a variation anywhere in an alias, it doesn't need to be at the beginning.
  44. # {tree type} leaves = 18
  45. #
  46. # please note that 'wood = 17' is also resolved for '{tree type} wood = 17'. This is usually what you want.
  47. # This does not work with variations where ids are varied and not only data values. There you
  48. # have to add a '{default}' to the variation, which is treated like all other values in the variation
  49. # but without adding its name to the alias. For examples see 'huge mushrooms' or 'doors'.
  50. # If you don't want a default value, use '{default} = #-#'. See {fish} for an example.
  51. #
  52. # If an item has a block with a different ID you should add another two aliases called 'x item' and 'x block', e.g.
  53. # cauldron block = 118
  54. # cauldron item = 380
  55. # cauldron = 118, 380
  56. # This way if you 'give a cauldron to the player' the player will not actually be given the items of the 'cauldron' alias,
  57. # but the items of the 'cauldron item' alias, causing the player to always recieve the correct cauldron item.
  58. # The same applies to setting blocks, though it usually doesn't matter as items are ignored when setting blocks.
  59. # It does matter for e.g. water though:
  60. # water = 8, 9
  61. # water block = 9
  62. # The 'water block' alias only lists the water source block, while the 'water' alias also lists the flowing water block.
  63. # Setting a block to 'water' will thus always place a water source, while checking 'block is water' will work for both
  64. # stationary and flowing water blocks.
  65. #
  66. # If you want to use something else than 'item' and 'block', simply modify the options below:
  67. #
  68.  
  69. # optional suffixes that can be appended to an alias's name and Skript will still understand it,
  70. # e.g. if you only define an alias 'cake', this will allow users to use 'cake block' and 'cake item' as well.
  71. # These are also used to determine the block and item variants of an alias (see above) And should include singular and plural.
  72. item = item¦s
  73. block = block¦s
  74.  
  75.  
  76.  
  77.  
  78. # List of alias groups. Only groups listed here are allowed below,
  79. # but you can easily define your own by adding it to this list.
  80. # The groups will be loaded in this order,
  81. # e.g. if 'custom aliases' is loaded after 'default aliases' you can use all default aliases to define your own aliases.
  82. aliases = default aliases, collections, custom aliases
  83.  
  84.  
  85.  
  86.  
  87.  
  88. custom aliases:
  89. # === Custom Aliases ===
  90. # I recommend putting your own aliases here.
  91. # You do not have to create an alias if you intend to use it in only one script,
  92. # but you can put it at the beginning of the script like this:
  93. # aliases:
  94. # admin blocks = bedrock, TNT, 52, 56
  95. # wand = blaze rod
  96. # This also has the advantage that your script can be used by other people without having to add the aliases to their config.
  97. #
  98. #
  99. # If you want to edit a default alias, you should copy & paste it here to edit it.
  100. # This will make it easier for you if you choose to update Minecraft and more blocks & items are added, in which case
  101. # you can then simply download the updated config and copy & paste this section into it.
  102. #
  103. # The default aliases are loaded before these, so you can use them here.
  104. # You can also override them by creating an alias with the same name.
  105.  
  106. #example: shorten names
  107. # ss = sandstone
  108. # llb = lapis lazuli block
  109. # ms = monster spawner
  110. #etc.
  111.  
  112. collections:
  113. # === Collections ===
  114.  
  115. # all ores
  116. ore¦s = coal ore, iron ore, gold ore, diamond ore, lapis ore, any redstone ore
  117. # fuels, i.e. items which can be burned in the furnace
  118. fuel¦s = lava bucket, blaze rod, any coal, planks, log, huge mushroom, workbench, fence, wooden stairs, trapdoor, sapling, stick, chest, locked chest, jukebox, note block
  119. # note: the above aliases are used in 'furnace automatisation.cfg'
  120.  
  121. # all food which can be eaten by rightclicking, i.e. doesn't include cake.
  122. food¦s = any apple, mushroom soup, bread, any porkchop, any fish, cookie, melon slice, any beef, any chicken, rotten flesh, any carrot, any potato, pumpkin pie
  123. # the same list but without raw food & rotten flesh
  124. healthy food¦s = any apple, mushroom soup, bread, cooked porkchop, cooked fish, cookie, melon slice, steak, cooked chicken, any carrot, potato, baked potato, pumpkin pie
  125.  
  126. # all vehicles, i.e. all minecarts and the boat
  127. vehicle¦s = any minecart, boat
  128.  
  129. # all plants. By default this does not include pumpkins and melons, but their stems.
  130. plant¦s = leaves, any tall grass, dead bush, any flower, any mushroom, lily pad, vines, melon stem, pumpkin stem, nether wart
  131.  
  132.  
  133. default aliases:
  134. # === Default Aliases ===
  135.  
  136. # -- special --
  137. anything @- = : # ':' matches any ID. You should only use this together with a {variation} that includes a {default} value.
  138. # (':' means '<any id>:<any data>')
  139. something @- = :
  140. everything @- = * # '*' is actually the same as 'every :', but 'every' can't be used in aliases. Thus I made this small hack
  141. # to allow the definition of an 'everything' alias, but please note that '*' cannot be used anywhere else.
  142.  
  143.  
  144. # ====== Blocks ======
  145.  
  146. # -- wool colours: used for wool, stained glass and stained clay
  147. # note: it's not possible to make a {colour} variation, as dye and wool colour data values are different.
  148. {wool}:
  149. <any> = :0-15
  150. white = :0
  151. orange = :1
  152. magenta = :2
  153. light blue = :3
  154. yellow = :4
  155. light green = :5
  156. pink = :6
  157. gray = :7
  158. light gray = :8
  159. cyan = :9
  160. purple = :10
  161. blue = :11
  162. brown = :12
  163. [dark] green = :13
  164. red = :14
  165. black = :15
  166.  
  167.  
  168. # -- air --
  169. air @- = 0
  170. nothing @- = 0
  171. none @- = 0
  172. empty @- = 0
  173. [empty] (hand|fist)¦s = 0
  174. bare (hand|fist)¦s = 0
  175.  
  176.  
  177. # -- stone --
  178. stone¦s = 1
  179. smooth stone = 1
  180.  
  181.  
  182. # -- grass --
  183. grass = 2
  184. grass block = 2
  185.  
  186.  
  187. # -- dirt --
  188. dirt = 3
  189.  
  190.  
  191. # -- cobblestone --
  192. cobble[stone] = 4
  193. mossy cobble[stone] = 48
  194.  
  195.  
  196. # -- planks & saplings: see wood
  197.  
  198.  
  199. # -- bedrock --
  200. bedrock = 7
  201.  
  202.  
  203. # -- water & lava --
  204. water = 8
  205. water = 9
  206. water = 8, 9
  207. water (item|block)¦s = 9
  208. stationary water = 8:0, 9:0
  209. water source = 8:0, 9:0
  210. flowing water = 8:1-8, 9:1-8 # change to ':1-7' if you want to exclude falling water
  211. falling water = 8:8, 9:8
  212. moving water = 8:1-8, 9:1-8
  213.  
  214. lava = 10
  215. lava = 11
  216. lava = 10, 11
  217. lava (item|block)¦s = 11
  218. stationary lava = 10:0, 11:0
  219. lava source = 10:0, 11:0
  220. flowing lava = 10:1-8, 11:1-8 # change to ':1-7' if you want to exclude falling lava
  221. falling lava = 10:8, 11:8
  222. moving lava = 10:1-8, 11:1-8
  223.  
  224.  
  225. # -- sand & gravel--
  226. <any> sand = 12:0-1
  227. sand = 12
  228. normal sand = 12:0
  229. sand <item/block> = 12:0
  230. red sand = 12:1
  231. gravel = 13
  232.  
  233.  
  234. # -- ores & precious blocks --
  235. gold ore¦s = 14
  236. gold block¦s = 41
  237. block¦¦s¦ of gold = 41
  238.  
  239. iron ore¦s @an = 15
  240. iron block¦s @an = 42
  241. block¦¦s¦ of iron = 42
  242.  
  243. coal ore¦s = 16
  244.  
  245. lapis [lazuli] ore¦s = 21
  246. lapis [lazuli] block¦s = 22
  247.  
  248. # redstone ore: see redstone
  249.  
  250. diamond ore¦s = 56
  251. diamond block¦s = 57
  252. block¦¦s¦ of diamond = 57
  253.  
  254. emerald ore¦s @an = 129
  255. emerald block¦s @an = 133
  256. block¦¦s¦ of emerald = 133
  257.  
  258.  
  259. # -- wood, leaves, saplings & planks --
  260. {tree type}:
  261. {default} = :0-15
  262. (normal|regular|oak) = :0, :4, :8, :12
  263. (pine|redwood|fir|spruce) = :1, :5, :9, :13
  264. birch = :2, :6, :10, :14
  265. jungle = :3, :7, :11, :15
  266. {tree type 2}:
  267. {default} = :0-15
  268. acacia = :0, :4, :8, :12, :2, :6, :10, :14
  269. dark oak = :1, :5, :9, :13, :3, :7, :11, :15
  270. {wood type}:
  271. {default} = :0-5
  272. <any> = :0-5
  273. (oak|regular|normal) = :0
  274. (spruce|fir|redwood|pine) = :1
  275. birch = :2
  276. jungle = :3
  277. acacia = :4
  278. dark oak = :5
  279.  
  280. {log direction}:
  281. {default} = :0-3
  282. vertical = :0-3
  283. east-west = :4-7
  284. west-east = :4-7
  285. south-north = :8-11
  286. north-south = :8-11
  287. horizontal = :4-11
  288. rotated = :4-11
  289. full[[ ]block] = :12-15
  290. <any> = :0-15
  291. {log direction no default}:
  292. vertical = :0-3
  293. east-west = :4-7
  294. west-east = :4-7
  295. south-north = :8-11
  296. north-south = :8-11
  297. horizontal = :4-11
  298. rotated = :4-11
  299. full[[ ]block] = :12-15
  300. <any> = :0-15
  301.  
  302. {wood type} sapling¦s = 6
  303. {wood type} plank¦s = 5
  304. {wood type} wood[en] plank¦s = 5
  305.  
  306. {log direction no default} {tree type} (log¦s|wood) = 17
  307. {log direction} {tree type} (log|wood) <item/block> = 17
  308. {tree type} leaves @x = 18
  309. {tree type} permanent leaves @x = 18:4-7, 18:12-15
  310.  
  311. {log direction no default} {tree type 2} (log¦s|wood) = 162
  312. {log direction} {tree type 2} (log|wood) <item/block> = 162
  313. {tree type 2} leaves @x = 161
  314. {tree type 2} permanent leaves @x = 161:4-7, 161:12-15
  315.  
  316. {log direction no default} (log¦s|wood) = 17, 161
  317. {log direction} log <item/block> = 17, 161
  318. [<any>] leaves @x = 18:0-15, 161:0-15
  319. [<any>] permanent leaves @x = 18:4-7, 18:12-15, 161:4-7, 161:12-15
  320.  
  321.  
  322. # -- sponge --
  323. sponge¦s = 19
  324.  
  325.  
  326. # -- glass --
  327. {wool} [stained] glass [pane] = 160
  328. glass = 20
  329. glass pane¦s = 102
  330. thin glass = 102
  331. window¦s = 102
  332. window glass = 102
  333.  
  334. <any> glass pane = any stained glass pane, glass pane
  335. <any> glass = any glass pane, glass
  336.  
  337.  
  338. # -- lapis lazuli --
  339. # lapis ore & block: see ores & blocks
  340. # lapis lazuli: see dyes
  341.  
  342.  
  343. # -- dispenser --
  344. dispenser¦s = 23
  345.  
  346.  
  347. # -- sandstone --
  348. sand[ ]stone¦s = 24
  349.  
  350.  
  351. # -- note block --
  352. note block¦s = 25
  353.  
  354.  
  355. # -- bed --
  356. {bed occupied}:
  357. occupied = :4-7, :12-15
  358. (free|empty) = :0-3, :8-11
  359. {bed part}:
  360. (head|top) = :8-15
  361. (foot|bottom) = :0-7
  362. {bed occupied} bed [block] {bed part} = 26
  363. bed¦s = 26, 355
  364. bed block¦s = 26
  365. bed item¦s = 355
  366.  
  367.  
  368. # -- minecart rails --
  369. {minerail}:
  370. straight = :0-5
  371. straight flat = :0-1
  372. flat straight = :0-1
  373. curved = :6-9
  374. flat = :0-1, :6-9
  375. inclined = :2-5
  376. {minerail straight}:
  377. flat = :0-1, :8-9
  378. inclined = :2-5, :10-13
  379. # normal rail
  380. [any] {minerail} [minecart] (rail|track)[s] = 27, 28, 66
  381. {minerail} [minecart] (rail|track)[s] (item|block) = 66
  382. # powered rail
  383. {minerail straight} powered [minecart] (rail|track) = 27
  384. {minerail straight} [minecart] booster¦s = 27
  385. {minerail straight} [minecart] booster (rail|track)¦s = 27
  386. {minerail straight} powered [minecart] (rail|track)¦ on¦s on = powered rail:8-15
  387. {minerail straight} powered [minecart] (rail|track)¦ off¦s off = powered rail:0-7
  388. {minerail straight} active powered [minecart] (rail|track)¦s = powered rail:8-15
  389. {minerail straight} inactive powered [minecart] (rail|track)¦s = powered rail:0-7
  390. {minerail straight} [minecart] booster¦ on¦s on = powered rail:8-15
  391. {minerail straight} [minecart] booster¦ off¦s off = powered rail:0-7
  392. {minerail straight} [minecart] booster (rail|track)¦ on¦s on = powered rail:8-15
  393. {minerail straight} [minecart] booster (rail|track)¦ off¦s off = powered rail:0-7
  394. {minerail straight} (active|powered) [minecart] booster¦s = powered rail:8-15
  395. {minerail straight} (inactive|unpowered) [minecart] booster¦s = powered rail:0-7
  396. {minerail straight} (active|powered) [minecart] booster (rail|track)¦s = powered rail:8-15
  397. {minerail straight} (inactive|unpowered) [minecart] booster (rail|track)¦s = powered rail:0-7
  398. # detector rail
  399. {minerail straight} detector [minecart] (rail|track)¦s = 28
  400. {minerail straight} detector [minecart] (rail|track)¦ on¦s on = detector rail:8-15
  401. {minerail straight} detector [minecart] (rail|track)¦ off¦s off = detector rail:0-7
  402. {minerail straight} active detector [minecart] (rail|track)¦s = detector rail:8-15
  403. {minerail straight} inactive detector [minecart] (rail|track)¦s = detector rail:0-7
  404. # activator rail
  405. {minerail straight} activator [minecart] (rail|track)¦s = 157
  406.  
  407.  
  408. # -- sticky piston: see redstone
  409.  
  410.  
  411. # -- cobweb --
  412. cobweb¦s = 30
  413.  
  414.  
  415. # -- vegetation --
  416.  
  417. # saplings & leaves: see wood
  418.  
  419. any tall grass = 31:1-2
  420. dead grass = 31:0
  421. tall grass = 31:1
  422. long grass = 31:1
  423. fern¦s = 31:2
  424.  
  425. dead shrub¦s = 32
  426. dead bush¦es = 32
  427.  
  428. double( |-)(tall|long) grass = 175:2
  429. large fern¦s = 175:3
  430.  
  431. dandelion¦s = 37
  432. yellow flower¦s = 37
  433. rose¦s = 38:0
  434. red rose¦s = 38:0
  435. red flower¦s = 38:0
  436. popp¦y¦ies = 38:0
  437. [blue] orchid¦s = 38:1
  438. allium¦s @an = 38:2
  439. azure bluet¦s @an = 38:3
  440. red tulip¦s = 38:4
  441. orange tulip¦s @an = 38:5
  442. white tulip¦s = 38:6
  443. pink tulip¦s = 38:7
  444. ox[-]eye dais¦y¦ies @an = 38:8
  445. ox[-]eye¦s @an = 38:8
  446. dais¦y¦ies = 38:8
  447. [<any>] small flower¦s = 37, 38:0-8
  448.  
  449. sunflower¦s = 175:0
  450. lilac¦s = 175:1
  451. rose bush¦es = 175:4
  452. peon¦y¦ies = 175:5
  453. [<any>] large flower¦s = 175:0-1, 175:4-5
  454. [<any>] large plant¦s = 175:0-5
  455.  
  456. [<any>] flower¦s = any small flower, any large flower
  457.  
  458. mushroom¦s = 39, 40
  459. brown mushroom¦s = 39
  460. red mushroom¦s = 40
  461.  
  462. {huge mushroom type}:
  463. {default} = 99, 100
  464. brown = 99
  465. red = 100
  466. huge {huge mushroom type} mushroom¦s = :
  467. huge {huge mushroom type} mushroom stem¦s = :10
  468. huge {huge mushroom type} mushroom cap¦s = :1-9 #0 is not a real cap piece
  469.  
  470. pumpkin¦s = 86
  471. jack-o-lantern¦s = 91
  472. glowing pumpkin¦s = 91
  473. pumpkin stem¦s = 104
  474. pumpkin seeds = 361
  475. pumpkin pie¦s = 400
  476.  
  477. melon¦s = 103
  478. melon block¦s = 103
  479. melon slice¦s = 360
  480. melon stem¦s = 105
  481. melon seeds = 362
  482.  
  483. vines = 106
  484. # the amount of vines here refers to the number of vines on the sides of the vine block.
  485. # the top vine is always present if there's a solid block above the vines or the data is 0.
  486. no vine[s] = 106:0
  487. single vine = 106:1, 106:2, 106:4, 106:8
  488. double vine[s] = 106:3, 106:5, 106:9, 106:6, 106:10, 106:12
  489. triple vine[s] = 106:7, 106:11, 106:13, 106:14
  490. quadruple vine[s] = 106:15
  491.  
  492. lily pad¦s = 111
  493.  
  494. nether wart¦s = 115, 372
  495. nether wart block¦s = 115
  496. nether wart item¦s = 372
  497. ripe nether wart¦s = 115:3
  498. freshly planted nether wart¦s = 115:0
  499.  
  500. cocoa = 127
  501. cocoa plant¦s = 127
  502. (freshly planted|small) cocoa [plant¦s] = 127:0-3
  503. medium cocoa [plant¦s] = 127:4-7
  504. (ripe|big|large) cocoa [plant¦s] = 127:8-11
  505.  
  506. {flower pot}:
  507. (empty|nothing) = :0
  508. (rose|red flower) = :1
  509. (dandelion|yellow flower) = :2
  510. flower = :1-2
  511. (normal|regular|oak) sapling = :3
  512. (pine|redwood|fir|spruce) sapling = :4
  513. birch sapling = :5
  514. jungle [tree] sapling = :6
  515. sapling = :3-6
  516. red mushroom = :7
  517. brown mushroom = :8
  518. mushroom = :7-8
  519. cactus = :9
  520. dead bush = :10
  521. fern = :11
  522. {flower pot} flower pot¦s = 140
  523. {flower pot} flower pot block¦s = 140
  524. flower pot (holding|containing|with) [a[n]] {flower pot} = 140
  525. flower pot item¦s = 390
  526. flower pot¦s = 140, 390
  527.  
  528. carrot plant¦s = 141
  529. carrot[s] block¦s = 141
  530. carrot[s] [item¦s] = 391
  531. golden carrot¦s = 396
  532. any carrot[s] [item¦s] = 391, 396
  533. carrot¦ on a stick¦s on sticks = 398
  534.  
  535. potato plant¦s = 142
  536. potato[es] block¦s = 142
  537. potato¦es = 392
  538. potato[es] item¦s = 392
  539. baked potato¦es = 393
  540. poisonous potato¦es = 394
  541. any potato¦es = 392, 393, 394
  542.  
  543.  
  544. # -- pistons: see redstone
  545.  
  546.  
  547. # -- wool, carpets and dyes --
  548. # {wool}: see top
  549. {wool} wool = 35:0-15
  550. {wool} (carpet|rug)¦s = 171:0-15
  551.  
  552. dye¦s = 351:0-15
  553. white dye¦s = 351:15
  554. bone[ ]meal¦s = 351:15
  555. orange dye¦s = 351:14
  556. magenta dye¦s = 351:13
  557. light blue dye¦s = 351:12
  558. yellow dye¦s = 351:11
  559. dandelion yellow [dye¦s] = 351:11
  560. light green dye¦s = 351:10
  561. pink dye¦s = 351:9
  562. gray dye¦s = 351:8
  563. light gray dye¦s = 351:7
  564. cyan dye¦s = 351:6
  565. purple dye¦s = 351:5
  566. blue dye¦s = 351:4
  567. lapis [lazuli¦s] = 351:4
  568. cocoa beans = 351:3
  569. brown dye¦s = 351:3
  570. [dark] green dye¦s = 351:2
  571. cactus green [dye¦s] = 351:2
  572. red dye¦s = 351:1
  573. rose red = 351:1
  574. black dye¦s = 351:0
  575. ink sack¦s = 351:0
  576.  
  577.  
  578. # -- block 36 --
  579. block 36 = 36
  580. block moved by piston = 36
  581. moving block¦s = 36
  582.  
  583.  
  584. # -- flowers & mushrooms: see vegetation
  585.  
  586.  
  587. # -- iron & gold block: see ores & blocks
  588.  
  589.  
  590. # -- single & double steps / slabs --
  591. {any slab}:
  592. {default} = 44, 126
  593. single = 44, 126
  594. double = 43, 125
  595. {stone slab}:
  596. {default} = 44
  597. single = 44
  598. double = 43
  599. {wooden slab}:
  600. {default} = 126
  601. single = 126
  602. double = 125
  603.  
  604. {slab facing}:
  605. {default} = :0-7
  606. regular = :0-7
  607. default = :0-7
  608. upside-down = :8-15
  609. any = :0-15
  610. {slab facing no default}:
  611. regular = :0-7
  612. default = :0-7
  613. upside-down = :8-15
  614. any = :0-15
  615.  
  616. {wooden slab type}:
  617. {default} = :0-5, :8-13
  618. <any> = :0-5, :8-13
  619. (oak|regular|normal) = :0, :8
  620. (spruce|fir|redwood|pine) = :1, :9
  621. birch = :2, :10
  622. jungle = :3, :11
  623. acacia = :4, :12
  624. dark oak = :5, :13
  625. {stone slab type}:
  626. {default} = :0-1, :3-5, :8-9, :11-13
  627. <any> = :0-1, :3-5, :8-9, :11-13
  628. stone = :0, :8
  629. sandstone = :1, :9
  630. cobble[stone] = :3, :11
  631. brick = :4, :12
  632. stone brick[s]) = :5, :13
  633. {stone slab type no default}:
  634. <any> = :0-1, :3-5, :8-9, :11-13
  635. stone = :0, :8
  636. sandstone = :1, :9
  637. cobble[stone] = :3, :11
  638. brick = :4, :12
  639. stone brick[s]) = :5, :13
  640.  
  641. {slab facing no default} {stone slab} {stone slab type no default} (step|slab)¦s = :
  642. {slab facing} {stone slab} {stone slab type} (step|slab) (block|item)¦s = :
  643. {slab facing no default} {wooden slab} {wooden slab type} [wood[en]] (step|slab)¦s = :
  644. {slab facing} {wooden slab} {wooden slab type} (step|slab) (block|item)¦s = :
  645. {slab facing no default} {any slab} (step|slab)¦s = :
  646. {slab facing} {any slab} (step|slab) (block|item)¦s = :
  647.  
  648.  
  649. # -- bricks & clay --
  650. [clay] brick¦s = 45, 336
  651. [clay] brick[s] <block> = 45
  652. [clay] brick[s] <item> = 336
  653.  
  654. {wool} [stained] [hard[ened]] clay = 159
  655. rainbow stained hardened clay = 159:0-15
  656. clay = 82, 337
  657. clay <block> = 82
  658. clay <item> = 337
  659. clay ball¦s = 337
  660.  
  661. hard[ened] clay = 172
  662.  
  663.  
  664. # -- TNT --
  665. TNT¦s = 46
  666. dynamite = 46
  667.  
  668.  
  669. # -- bookshelf --
  670. bookshel¦f¦ves = 47
  671.  
  672.  
  673. # -- mossy cobblestone: see cobblestone
  674.  
  675.  
  676. # -- obsidian --
  677. obsidian = 49
  678.  
  679.  
  680. # -- torch --
  681. {torch}: #also used for redstone torches
  682. ground = :5
  683. floor = :5
  684. wall = :1-4
  685. {torch} torch¦es = 50
  686.  
  687.  
  688. # -- fire --
  689. fire¦s = 51
  690. (eternal|infinite) fire¦s = 51:15 #never tested this myself
  691. finite fire¦s = 51:0-14
  692. (new|fresh) fire¦s = 51:0
  693.  
  694.  
  695. # -- monster spawner --
  696. monster spawner¦s = 52
  697. mob spawner¦s = 52
  698.  
  699.  
  700. # -- stairs --
  701. {stairs}:
  702. {default} = 53, 134, 135, 136, 67, 108, 109, 114, 128, 156
  703. (oak|regular|normal) [wood] = 53
  704. (spruce|fir|redwood|pine) [wood] = 134
  705. birch [wood] = 135
  706. jungle [wood] = 136
  707. [any] wood[en] = 53, 134, 135, 136
  708. cobble[stone] = 67
  709. [clay] brick[s] = 108
  710. stone brick[s] = 109
  711. nether [brick[s]] = 114
  712. sand[ ]stone = 128
  713. [nether] quarz = 156
  714. acacia [wood] = 163
  715. dark oak [wood] = 164
  716. {stairs direction}:
  717. {default} = :0-3
  718. any = :0-7
  719. upside-down = :4-7
  720. {stairs direction no default}:
  721. any = :0-7
  722. upside-down = :4-7
  723.  
  724. {stairs direction no default} {stairs} stair[s] = :
  725. {stairs direction} {stairs} stair[s] (block|item)¦s = :
  726.  
  727.  
  728. # -- chest --
  729. chest¦s = 54
  730. ender chest¦s @an = 130
  731. trapped chest¦s = 146
  732.  
  733.  
  734. # -- redstone wire: see redstone
  735.  
  736.  
  737. # -- diamond ore & block: see ores & blocks
  738.  
  739.  
  740. # -- crafting table --
  741. crafting table¦s = 58
  742. workbench¦es = 58
  743.  
  744.  
  745. # -- crops / wheat --
  746. crops = 59
  747. wheat block¦s = 59
  748. wheat item¦s = 296
  749. wheat = 59, 296
  750. [wheat] seeds = 295
  751. freshly planted (crops|wheat) = 59:0
  752. ripe (crops|wheat) = 59:7
  753.  
  754.  
  755. # -- farmland/soil --
  756. (farmland|soil) = 60
  757. dry (farmland|soil) = 60:0
  758. wet (farmland|soil) = 60:1-8
  759.  
  760.  
  761. # -- furnace --
  762. furnace¦s = 61, 62
  763. (burning|lighted|lit) furnace¦s = 62
  764. furnace¦ on¦s on = 62
  765. (non-burning|unlighted|unlit|extinguished) furnace¦s = 61
  766. furnace¦ off¦s off = 61
  767.  
  768.  
  769. # -- signs --
  770. sign post¦s = 63
  771. wall sign¦s = 68
  772. sign block¦s = 63, 68
  773. sign item¦s = 323
  774. sign¦s = 63, 68, 323
  775.  
  776.  
  777. # -- doors, trapdoors and fence gates --
  778. # I currently discourage from creating aliases like 'open door' or doors with specific facings
  779. # as any 'block is <alias>' condition will fail if you click the wrong part of the door.
  780. # 'set <block> to door:1' will correctly place an open door though.
  781. {doortype}:
  782. {default} = 64, 71
  783. wood[en] = 64
  784. iron = 71
  785. {doorhalf}:
  786. top¦s = :8-9
  787. bottom¦s = :0-7
  788. {doortype} door [block] {doorhalf} = :
  789. {doortype} door block¦s = :
  790. wood[en] door item¦s = 324
  791. wood[en] door¦s = 324, 64
  792. iron door item¦s = 330
  793. iron door¦s = 330, 71
  794. door item¦s = 330, 324
  795. door¦s = 330, 71, 324, 64
  796.  
  797. trapdoor¦s = 96
  798. open[ed] trapdoor¦s = 96:4-7
  799. closed trapdoor¦s = 96:0-3
  800.  
  801. fence gate¦s = 107
  802. open[ed] fence gate¦s = 107:4-7
  803. closed fence gate¦s = 107:0-3
  804.  
  805.  
  806. # -- ladder --
  807. ladder¦s = 65
  808.  
  809.  
  810. # -- rails: see minecart rails
  811.  
  812.  
  813. # -- coblestone stairs: see stairs
  814.  
  815.  
  816. # -- redstone --
  817. [redstone] wire¦s = 55
  818. [redstone] wire¦ on¦s on = 55:1-15
  819. [redstone] wire¦ off¦s off = 55:0
  820. powered [redstone] wire¦s = redstone wire on
  821. unpowered [redstone] wire¦s = redstone wire off
  822. active [redstone] wire¦s = redstone wire on
  823. inactive [redstone] wire¦s = redstone wire off
  824.  
  825. redstone ore¦s = 73, 74
  826. (active|glowing) redstone ore¦s = 74
  827. (inactive|non-glowing) redstone ore¦s = 73
  828. redstone ore¦ on¦s on = 74
  829. redstone ore¦ off¦s off = 73
  830.  
  831. # variation {torch}: see torch
  832. {torch} redstone torch¦es = 75, 76
  833. {torch} redstone torch¦ on¦es on = 76
  834. active {torch} redstone torch¦es = 76
  835. {torch} redstone torch¦ off¦es off = 75
  836. inactive {torch} redstone torch¦es = 75
  837.  
  838. {diodedelay}:
  839. 1-tick[-delay] = :0-3
  840. 2-tick[-delay] = :4-7
  841. 3-tick[-delay] = :8-11
  842. 4-tick[-delay] = :12-15
  843. {diodedelay} [redstone] (repeater|diode)[ block]¦s = 93, 94
  844. [redstone] (repeater|diode) item¦s = 356
  845. [redstone] (repeater|diode)¦s = 356, 93, 94
  846. {diodedelay} [redstone] (repeater|diode)[ block]¦ on¦s on = 94
  847. {diodedelay} [redstone] (repeater|diode)[ block]¦ off¦s off = 93
  848. (active|powered) {diodedelay} [redstone] (repeater|diode)[ block]¦s = 94
  849. (inactive|unpowered) {diodedelay} [redstone] (repeater|diode)[ block]¦s = 93
  850.  
  851. {lever position}:
  852. wall = :1-4, :9-12
  853. ground = :5-6, :13-14
  854. floor = :5-6, :13-14
  855. {lever position} lever¦s = 69
  856. {lever position} lever¦ on¦s on = 69:8-15
  857. (pulled|thrown|active) {lever position} lever¦s = 69:8-15
  858. {lever position} lever¦ off¦s off = 69:0-7
  859. (unpulled|unthrown|inactive) {lever position} lever¦s = 69:0-7
  860.  
  861. {button}:
  862. {default} = 77, 143
  863. stone = 77
  864. wood[en] = 143
  865. {button} button¦s = :
  866. {button} button¦ on¦s on = :8-15
  867. pressed {button} button¦s = :8-15
  868. active {button} button¦s = :8-15
  869. {button} button¦ off¦s off = :0-7
  870. unpressed {button} button¦s = :0-7
  871. inactive {button} button¦s = :0-7
  872.  
  873. {pressure plate}:
  874. {default} = 70, 72, 147, 148
  875. wood[en] = 72
  876. stone = 70
  877. gold[en] = 147
  878. iron = 148
  879. {pressure plate} [pressure] plate¦s = :
  880. (pressed|active) {pressure plate} [pressure] plate¦s = :1
  881. (unpressed|inactive) {pressure plate} [pressure] plate¦s = :0
  882. {weighted pressure plate}:
  883. {default} = 147, 148
  884. gold[en] = 147
  885. light = 147
  886. iron = 148
  887. heavy = 148
  888. {weighted pressure plate} weighted [pressure] plate¦s = :
  889. (pressed|active) {weighted pressure plate} weighted [pressure] plate¦s = :1
  890. (unpressed|inactive) {weighted pressure plate} weighted [pressure] plate¦s = :0
  891.  
  892. piston base¦s = 33
  893. sticky piston base¦s = 29
  894. any piston base¦s = 33, 29
  895. #
  896. piston extension¦s = 34:0-5
  897. sticky piston extension¦s = 34:8-13
  898. any piston extension¦s = 34
  899. #
  900. piston¦s = piston base, piston extension
  901. piston (item|block)¦s = piston base
  902. sticky piston¦s = sticky piston base, sticky piston extension
  903. sticky piston (item|block)¦s = sticky piston base
  904. any piston¦s = 29, 33, 34
  905. #
  906. extended piston base¦s = 33:8-13
  907. extended sticky piston base¦s = 29:8-13
  908. any extended piston base¦s = extended piston base, extended sticky piston base
  909. #
  910. extended piston¦s = extended piston base, piston extension
  911. extended sticky piston¦s = extended sticky piston base, sticky piston extension
  912. any extended piston¦s = any extended piston base, any piston extension
  913. #
  914. retracted piston¦s = 33:0-5
  915. retracted sticky piston¦s = 29:0-5
  916. any retracted piston¦s = retracted piston, retracted sticky piston
  917.  
  918. redstone lamp¦s = 123, 124
  919. (inactive|unpowered|unlit) restone lamp¦s = 123
  920. restone lamp¦ off¦s off = 123
  921. (active|glowing|powered|lit) redstone lamp¦s = 124
  922. redstone lamp¦ on¦s on = 124
  923.  
  924. redstone comparator¦s = 149, 150
  925. redstone comparator block¦s = 149
  926. redstone comparator item¦s = 404
  927. (inactive|unpowered) redstone comparator¦s = 149
  928. (active|powered) redstone comparator¦s = 150
  929.  
  930. daylight sensor¦s = 151
  931.  
  932. redstone block¦s = 152
  933. block¦¦s¦ of redstone = 152
  934.  
  935. hopper¦s = 154
  936.  
  937. dropper¦s = 158
  938.  
  939.  
  940. # -- snow & ice --
  941. snow layer¦s = 78
  942. ice @- = 79
  943. ice <block> @an = 79
  944. snow = 80
  945. snow <block> = 80
  946. packed ice = 174
  947. packed ice <block> = 174
  948.  
  949.  
  950. # -- cactus --
  951. cact¦us¦i = 81
  952. cactuses = 81
  953.  
  954.  
  955. # -- clay block: see bricks --
  956.  
  957.  
  958. # -- sugar cane --
  959. [sugar] cane¦s = 83, 338
  960. [sugar] cane block¦s = 83
  961. [sugar] cane item¦s = 338
  962.  
  963.  
  964. # -- jukebox --
  965. jukebox¦es = 84
  966.  
  967.  
  968. # -- fence --
  969. fence¦s = 85
  970.  
  971.  
  972. # -- pumpkin & lack-o-lantern: see vegetation
  973.  
  974.  
  975. # -- nether stuff --
  976. netherrack¦s = 87
  977. soul[ ]sand¦s = 88
  978. glowstone¦s = 89
  979. [nether] portal¦s = 90
  980.  
  981.  
  982. # -- cake --
  983. cake¦s = 92, 354
  984. cake block¦s = 92
  985. cake item¦s = 354
  986.  
  987.  
  988. # -- redstone repeater: see redstone
  989.  
  990.  
  991. # -- locked chest --
  992. locked chest¦s = 95
  993.  
  994.  
  995. # -- trapdoor: see doors
  996.  
  997.  
  998. # -- hidden silverfish --
  999. silverfish block¦s = 97:0-2
  1000. hidden silverfish¦es = 97:0-2
  1001. [hidden] [smooth] stone silverfish¦es = 97:0
  1002. [hidden] cobble[stone] silverfish¦es = 97:1
  1003. [hidden] stone brick[s] silverfish¦es = 97:2
  1004.  
  1005.  
  1006. # -- stone bricks --
  1007. stone brick¦s = 98:0-3
  1008. <any> stone brick¦s = 98:0-3
  1009. stone brick[s] (item|block)¦s = 98:0
  1010. smooth [stone] brick¦s = 98:0
  1011. mossy [stone] brick¦s = 98:1
  1012. cracked [stone] brick¦s = 98:2
  1013. (circle|fancy|decorated) [stone] brick¦s = 98:3
  1014.  
  1015.  
  1016. # -- huge mushrooms: see vegetation
  1017.  
  1018.  
  1019. # -- iron bars --
  1020. [iron] bars @x = 101
  1021.  
  1022.  
  1023. # -- glass pane: see glass
  1024.  
  1025.  
  1026. # -- melon, stems & vines: see vegetation
  1027.  
  1028.  
  1029. # -- fence gate: see doors
  1030.  
  1031.  
  1032. # -- brick & stone brick stairs: see stairs
  1033.  
  1034.  
  1035. # -- mycelium --
  1036. mycelium = 110
  1037. mushroom (floor|ground|grass) = 110
  1038.  
  1039.  
  1040. # -- lily pad: see vegetation
  1041.  
  1042.  
  1043. # -- nether brick stuff --
  1044. nether brick¦s = 112, 405
  1045. nether brick block¦s = 112
  1046. nether brick item¦s = 405
  1047. nether [brick[s]] fence¦s = 113
  1048. # nether brick stairs: see stairs
  1049.  
  1050.  
  1051. # -- nether wart: see vegetation
  1052.  
  1053.  
  1054. # -- enchantment table --
  1055. enchantment table¦s = 116
  1056.  
  1057.  
  1058. # -- brewing stand --
  1059. brewing stand¦s = 117, 379
  1060. brewing stand block¦s = 117
  1061. brewing stand item¦s = 379
  1062. empty brewing stand¦s @an = 117:0
  1063. full brewing stand¦s = 117:7
  1064.  
  1065.  
  1066. # -- cauldron --
  1067. cauldron¦s = 118, 380
  1068. cauldron block¦s = 118
  1069. cauldron item¦s = 380
  1070. empty cauldron¦s @an = 118:0
  1071. full cauldron¦s = 118:3
  1072.  
  1073.  
  1074. # -- End stuff --
  1075. end[er] portal¦s @an = 119
  1076.  
  1077. end[er] portal frame¦s @an = 120
  1078. empty end[er] portal frame¦s @an = 120:0-3
  1079. filled end[er] portal frame¦s = 120:4-7
  1080. end[er] stone¦s @an = 121
  1081.  
  1082. dragon egg¦s = 122
  1083. ender[ ]dragon egg¦s @an = 122
  1084.  
  1085.  
  1086. # -- redstone lamp: see redstone
  1087.  
  1088.  
  1089. # -- emerald ore/block: see ores
  1090.  
  1091.  
  1092. # -- ender chest: see chest
  1093.  
  1094.  
  1095. # -- tripwire & hook
  1096. tripwire¦s = 132
  1097. [tripwire] hook¦s = 131
  1098.  
  1099.  
  1100. # -- wooden stairs: see stairs
  1101.  
  1102.  
  1103. # -- command block --
  1104. command block¦s = 137
  1105.  
  1106.  
  1107. # -- beacon --
  1108. beacon¦s = 138
  1109.  
  1110.  
  1111. # -- cobblestone walls --
  1112. cobble[stone] wall¦s = 139:0-1
  1113. cobble[stone] wall (item|block)¦s = 139:0
  1114. (normal|regular) cobble[stone] wall¦s = 139:0
  1115. moss[y] cobble[stone] wall¦s = 139:1
  1116.  
  1117.  
  1118. # -- flower pot, carrots, potatoes: see vegetation --
  1119.  
  1120.  
  1121. # -- wooden button: see redstone --
  1122.  
  1123.  
  1124. # -- mob head --
  1125. {mob head direction}:
  1126. floor = :1
  1127. wall = :2-5
  1128. {mob head type}:
  1129. skeleton = :0
  1130. wither skeleton = :1
  1131. zombie = :2
  1132. (human|player) = :3
  1133. creeper = :4
  1134. {mob head type} [mob] head[ item]¦s = 397
  1135. {mob head direction} [mob] head[ block]¦s = 144
  1136. [mob] head¦s = 144, 397
  1137.  
  1138.  
  1139. # -- anvil --
  1140. {anvil}:
  1141. (regular|complete) @a = :0-1
  1142. undamaged @an = :0-1
  1143. [slightly] damaged @a = :4-5
  1144. (very|heavily|severely) damaged @a = :8-9
  1145. {anvil} anvil¦s @an = 145
  1146.  
  1147.  
  1148. # -- trapped chest: see chest
  1149.  
  1150.  
  1151. # -- weighted pressure plates, redstone comparator, daylight sensor, redstone block: see redstone
  1152.  
  1153.  
  1154. # -- nether quarz ore, quarz block --
  1155. [nether] quartz ore = 153
  1156. {quartz block}:
  1157. (normal|regular) = :0
  1158. chiseled = :1
  1159. pillar = :2-3
  1160. vertical pillar = :2
  1161. horizontal pillar = :3-4
  1162. ns pillas = :3
  1163. ew pillar = :4
  1164. {quartz block} [nether] quartz = 155
  1165. {quartz block} [nether] quartz block¦s = 155
  1166. pillar [nether] quartz (block|item) = 155:2
  1167. [nether] quartz = 155, 406
  1168. [nether] quartz item¦s = 406
  1169. # quarz stairs: see stairs
  1170.  
  1171.  
  1172. # -- hopper: see redstone
  1173.  
  1174.  
  1175. # -- activator rail: see rails
  1176.  
  1177.  
  1178. # -- dropper: see redstone
  1179.  
  1180.  
  1181. # -- stained clay: see clay
  1182.  
  1183.  
  1184. # -- stained glass: see glass
  1185.  
  1186.  
  1187. # -- hay block --
  1188. (hay|wheat) block¦s = 170
  1189. block¦¦s¦ of (hay|wheat) = 170
  1190.  
  1191.  
  1192. # -- carpet: see wool
  1193.  
  1194.  
  1195. # -- hardened clay: see clay
  1196.  
  1197.  
  1198. # -- block of coal: see coal
  1199.  
  1200.  
  1201. # -- packed ice: see ice
  1202.  
  1203.  
  1204. # -- large flower: see vegetation
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211. # ====== Items ======
  1212.  
  1213. # -- flint and steel --
  1214. flint and steel¦s = 259
  1215. flint'n'steel¦s = 259
  1216.  
  1217.  
  1218. # -- apples --
  1219. <any> apple¦s = 260, 322:0-1
  1220. apple¦s @an = 260
  1221. red apple¦s = 260
  1222. golden apple¦s = 322:0-1
  1223. golden apple item¦s = 322:0
  1224. enchanted golden apple¦s @an = 322:1
  1225.  
  1226.  
  1227. # -- bow & arrow --
  1228. bow¦s = 261
  1229. arrow¦s = 262
  1230.  
  1231.  
  1232. # -- coal --
  1233. <any> coal = 263:0-1
  1234. charcoal = 263:1
  1235. coal = 263:0, 173
  1236. coal <item> = 263:0
  1237. coal <block> = 173
  1238. block¦¦s¦ of coal = 173
  1239.  
  1240.  
  1241. # -- diamond & ingots --
  1242. diamond¦s = 264
  1243. iron (ingot|bar)¦s @an = 265
  1244. gold[en] (ingot|bar)¦s = 266
  1245. ingot¦s @an = 265, 266
  1246.  
  1247.  
  1248. # -- tools --
  1249. sword¦s = 267, 268, 272, 276, 283
  1250. pick[axe]¦s = 270, 274, 257, 278, 285
  1251. axe¦s @an = 271, 275, 258, 279, 286
  1252. shovel¦s = 269, 273, 256, 277, 284
  1253. spade¦s = shovel
  1254. hoe¦s = 290, 291, 292, 293, 294
  1255.  
  1256. wood[en] tool¦s = 268, 269, 270, 271, 290
  1257. stone tool¦s = 272, 273, 274, 275, 291
  1258. iron tool¦s @an = 256, 257, 258, 267, 292
  1259. diamond tool¦s = 276, 277, 278, 279, 293
  1260. gold[en] tool¦s = 283, 284, 285, 286, 294
  1261.  
  1262. wood[en] sword¦s = 268
  1263. wood[en] (shovel|spade)¦s = 269
  1264. wood[en] pick[axe]¦s = 270
  1265. wood[en] axe¦s = 271
  1266. wood[en] hoe¦s = 290
  1267.  
  1268. stone sword¦s = 272
  1269. stone (shovel|spade)¦s = 273
  1270. stone pick[axe]¦s = 274
  1271. stone axe¦s = 275
  1272. stone hoe¦s = 291
  1273.  
  1274. iron sword¦s @an = 267
  1275. iron (shovel|spade)¦s @an = 256
  1276. iron pick[axe]¦s @an = 257
  1277. iron axe¦s @an = 258
  1278. iron hoe¦s @an = 292
  1279.  
  1280. diamond sword¦s = 276
  1281. diamond (shovel|spade)¦s = 277
  1282. diamond pick[axe]¦s = 278
  1283. diamond axe¦s = 279
  1284. diamond hoe¦s = 293
  1285.  
  1286. gold[en] sword¦s = 283
  1287. gold[en] (shovel|spade)¦s = 284
  1288. gold[en] pick[axe]¦s = 285
  1289. gold[en] axe¦s = 286
  1290. gold[en] hoe¦s = 294
  1291.  
  1292.  
  1293. # -- stick --
  1294. stick¦s = 280
  1295.  
  1296.  
  1297. # -- bowl & stew --
  1298. bowl¦s = 281
  1299. empty bowl¦s @an = 281
  1300. [mushroom] (stew|soup)¦s = 282
  1301.  
  1302.  
  1303. # -- string --
  1304. string¦s = 287
  1305.  
  1306.  
  1307. # -- feather --
  1308. feather¦s = 288
  1309.  
  1310.  
  1311. # -- gunpowder --
  1312. gunpowder = 289
  1313. sulphur = 289
  1314.  
  1315.  
  1316. # -- wheat & seeds: see crops / wheat
  1317. bread¦s = 297
  1318.  
  1319.  
  1320. # -- armour --
  1321. helmet¦s = 298, 302, 306, 310, 314
  1322. chestplate¦s = 299, 303, 307, 311, 315
  1323. leg[ging]s @x = 300, 304, 308, 312, 316
  1324. boots @x = 301, 305, 309, 313, 317
  1325.  
  1326. leather armo[u]r¦s = 298, 299, 300, 301
  1327. chain[mail] armo[u]r¦s = 302, 303, 304, 305
  1328. iron armo[u]r¦s = 306, 307, 308, 309
  1329. diamond armo[u]r¦s = 310, 311, 312, 313
  1330. gold armo[u]r¦s = 314, 315, 316, 317
  1331.  
  1332. leather (cap|helmet)¦s = 298
  1333. leather (tunic|chest[plate])¦s = 299
  1334. leather (pants|leg[ging]s) @x = 300
  1335. leather boots @x = 301
  1336.  
  1337. chain[mail] helmet¦s = 302
  1338. chain[mail] chestplate¦s = 303
  1339. chain[mail] leggings @x = 304
  1340. chain[mail] boots @x = 305
  1341.  
  1342. iron helmet¦s @an = 306
  1343. iron chest[plate]¦s @an = 307
  1344. iron leg[ging]s @x = 308
  1345. iron boots @x = 309
  1346.  
  1347. diamond helmet¦s = 310
  1348. diamond chest[plate]¦s = 311
  1349. diamond leg[ging]s @x = 312
  1350. diamond boots @x = 313
  1351.  
  1352. gold[en] helmet¦s = 314
  1353. gold[en] chest[plate]¦s = 315
  1354. gold[en] leg[ging]s @x = 316
  1355. gold[en] boots @x = 317
  1356.  
  1357.  
  1358. # -- flint --
  1359. flint¦s = 318
  1360.  
  1361.  
  1362. # -- porkchop --
  1363. [<any>] pork[chop]¦s = 319, 320
  1364. pork[chop] item¦s = 319
  1365. raw pork[chop]¦s = 319
  1366. (cooked|grilled) pork[chop]¦s = 320
  1367.  
  1368.  
  1369. # -- painting --
  1370. painting¦s = 321
  1371. painting item¦s = 321
  1372.  
  1373.  
  1374. # -- golden apple: see apples
  1375.  
  1376.  
  1377. # sign: see signs
  1378.  
  1379.  
  1380. # wooden door: see doors
  1381.  
  1382.  
  1383. # -- buckets --
  1384. [empty] bucket¦s = 325
  1385. water bucket¦s = 326
  1386. bucket¦¦s¦ of water = 326
  1387. lava bucket¦s = 327
  1388. bucket¦¦s¦ of lava = 327
  1389. milk [bucket¦s] = 335
  1390. bucket¦¦s¦ of milk = 335
  1391.  
  1392.  
  1393. # -- minecarts --
  1394. [<any>] minecart¦s = 328, 342, 343
  1395. minecart item¦s = 328
  1396. storage minecart¦s = 342
  1397. minecart¦¦s¦ with chest = 342
  1398. powered minecart¦s = 343
  1399. minecart¦¦s¦ with furnace = 343
  1400. minecart¦¦s¦ with TNT = 407
  1401. TNT minecart¦¦s¦ = 407
  1402. explosive minecart¦¦s¦ = 407
  1403. minecart¦¦s¦ with hopper = 408
  1404. hopper minecart¦¦s¦ = 408
  1405. minecart¦¦s¦ with command block = 422
  1406. command block minecart¦¦s¦ = 422
  1407.  
  1408.  
  1409. # -- saddle --
  1410. saddle¦s = 329
  1411.  
  1412.  
  1413. # -- iron door: see doors
  1414.  
  1415.  
  1416. # -- redstone dust --
  1417. redstone = 331
  1418. redstone dust = 331
  1419.  
  1420.  
  1421. # -- snowball --
  1422. snowball¦s = 332
  1423.  
  1424.  
  1425. # -- boat --
  1426. boat¦s = 333
  1427.  
  1428.  
  1429. # -- leather --
  1430. leather = 334
  1431.  
  1432.  
  1433. # -- milk: see buckets
  1434.  
  1435.  
  1436. # -- clay & clay brick: see bricks --
  1437.  
  1438.  
  1439. # -- sugar cane: see sugar cane block
  1440.  
  1441.  
  1442. # -- paper & books --
  1443. paper = 339
  1444. book¦s = 340
  1445. book¦¦s¦ (and|with) quill = 386
  1446. written book¦s = 387
  1447.  
  1448.  
  1449. # -- slimeball --
  1450. slime[ball¦s] = 341
  1451.  
  1452.  
  1453. # minecart with chest/furnace: see minecarts
  1454.  
  1455.  
  1456. # -- [chicken] egg --
  1457. egg¦s @an = 344
  1458. chicken egg¦s = 344
  1459.  
  1460.  
  1461. # -- compass --
  1462. compass¦es = 345
  1463.  
  1464.  
  1465. # -- fishing rod --
  1466. fishing rod¦s = 346
  1467.  
  1468.  
  1469. # -- clock --
  1470. clock¦s = 347
  1471.  
  1472.  
  1473. # -- glowstone dust --
  1474. glowstone dust = 348
  1475.  
  1476.  
  1477. # -- fish --
  1478. {fish}:
  1479. {default} = #-#
  1480. fish¦es = :0
  1481. salmon¦s = :1
  1482. clownfish¦es = :2
  1483. pufferfish¦es = :3
  1484. [<any>] {fish} = 349, 350
  1485. {fish} item¦s = 349
  1486. raw {fish} = 349
  1487. cooked {fish} = 350
  1488.  
  1489.  
  1490. # -- dyes: see wool & dyes
  1491.  
  1492.  
  1493. # -- bone --
  1494. bone¦s = 352
  1495.  
  1496.  
  1497. # -- sugar --
  1498. sugar = 353
  1499.  
  1500.  
  1501. # -- cake: see cake block
  1502.  
  1503.  
  1504. # -- bed: see bed block
  1505.  
  1506.  
  1507. # -- redstone repeater: see redstone
  1508.  
  1509.  
  1510. # -- cookie --
  1511. cookie¦s = 357
  1512.  
  1513.  
  1514. # -- map --
  1515. map¦s = 358
  1516. <any> map¦s = 358:0-32767
  1517. empty map¦s @an = 395
  1518. # You can get a specific map with map:#, e.g. map:0 for map_0 (the first map crafted)
  1519. # (The maximum map number is 65536, but Skript currently only supports numbers up to 32767)
  1520.  
  1521.  
  1522. # -- shears --
  1523. shears = 359
  1524.  
  1525.  
  1526. # -- melon slice, pumpkin seeds & melon seeds: see vegetation
  1527.  
  1528.  
  1529. # -- beef --
  1530. [<any>] beef = 363, 364
  1531. beef item¦s = 363, 364
  1532. [raw] beef = 363
  1533. steak¦s = 364
  1534. cooked beef = 364
  1535.  
  1536.  
  1537. # -- chicken --
  1538. [<any>] chicken¦s = 365, 366
  1539. chicken item¦s = 365
  1540. raw chicken¦s = 365
  1541. cooked chicken¦s = 366
  1542.  
  1543.  
  1544. # -- rotten flesh --
  1545. rotten flesh = 367
  1546.  
  1547.  
  1548. # -- ender pearl --
  1549. ender pearl¦s @an = 368
  1550.  
  1551.  
  1552. # -- blaze rod --
  1553. blaze rod¦s = 369
  1554.  
  1555.  
  1556. # -- ghast tear --
  1557. ghast tear¦s = 370
  1558.  
  1559.  
  1560. # -- gold nugget --
  1561. gold nugget¦s = 371
  1562.  
  1563.  
  1564. # -- nether wart: see vegetation
  1565.  
  1566.  
  1567. # -- potions & bottles --
  1568. [glass] bottle¦s = 374
  1569. vial¦s = 374
  1570. water bottle¦s = 373:0
  1571. bottle¦¦s¦ of water = 373:0
  1572.  
  1573. awkward potion¦s @an = 373:16
  1574.  
  1575. {splash potion}:
  1576. {default} = :0-16383
  1577. non-splash = :0-16383
  1578. splash = :16384-32767
  1579. {splash potion no default}:
  1580. non-splash = :0-16383
  1581. splash = :16384-32767
  1582.  
  1583. {extended potion}:
  1584. {default} = :0-63, :16384-16447
  1585. unextended @an = :0-63, :16384-16447
  1586. non-extended = :0-63, :16384-16447
  1587. extended @an = :64-127, :16448-16511
  1588. {extended potion no default}:
  1589. unextended @an = :0-63, :16384-16447
  1590. non-extended = :0-63, :16384-16447
  1591. extended @an = :64-127, :16448-16511
  1592.  
  1593. {potion tier}:
  1594. {default} = :0-31, :64-95, :16384-16415, :16448-16479
  1595. (1|I) = :0-31, :64-95, :16384-16415, :16448-16479
  1596. (2|II) = :32-63, :96-127, :16416-16447, :16480-16511
  1597. {potion tier no default}:
  1598. (1|I) = :0-31, :64-95, :16384-16415, :16448-16479
  1599. (2|II) = :32-63, :96-127, :16416-16447, :16480-16511
  1600.  
  1601. {potion effect}:
  1602. Regeneration = :1, :33, :65, :97, :16385, :16417, :16449, :16481
  1603. (Swiftness|Speed) = :2, :34, :66, :98, :16386, :16418, :16450, :16482
  1604. Fire Resistance = :3, :35, :67, :99, :16387, :16419, :16451, :16483
  1605. Poison = :4, :36, :68, :100, :16388, :16420, :16452, :16484
  1606. (Healing|[Instant] Health) = :5, :53, :69, :101, :16389, :16421, :16453, :16485
  1607. Night Vision = :6, :38, :70, :102, :16390, :16422, :16454, :16486
  1608. Weakness = :8, :40, :72, :104, :16392, :16424, :16456, :16488
  1609. Strength = :9, :41, :73, :105, :16393, :16425, :16457, :16489
  1610. Slowness = :10, :42, :74, :106, :16394, :16426, :16458, :16490
  1611. (Harming|[Instant] Damage) = :12, :44, :76, :108, :16396, :16428, :16460, :16492
  1612. Invisibility = :14, :46, :78, :110, :16398, :16430, :16462, :16494
  1613.  
  1614. {extended potion no default} {splash potion no default} potion¦¦s¦ [of {potion effect} {potion tier no default}] = 373
  1615. {extended potion} {splash potion} potion¦¦s¦ [of {potion effect} {potion tier}] item = 373
  1616. {extended potion no default} {splash potion no default} {potion effect} potion¦¦s¦ {potion tier no default} = 373
  1617. {extended potion} {splash potion} {potion effect} potion {potion tier} item¦s = 373
  1618.  
  1619.  
  1620. # -- spider eye & fermented spider eye --
  1621. spider eye¦s = 375
  1622. fermented spider eye¦s = 376
  1623.  
  1624.  
  1625. # -- blaze powder --
  1626. blaze powder = 377
  1627.  
  1628.  
  1629. # -- magma cream --
  1630. magma cream¦s = 378
  1631.  
  1632.  
  1633. # -- eye of ender --
  1634. eye¦¦s¦ of ender @an = 381
  1635.  
  1636.  
  1637. # -- glistering melon --
  1638. glistering melon¦s = 382
  1639.  
  1640.  
  1641. # -- spawn egg --
  1642. {entity type}:
  1643. experience orb @an = :2
  1644. xp orb = :2
  1645. TNT = :20
  1646. minecart = :40 # < MC 1.5
  1647. boat = :41
  1648. minecart = :42
  1649. minecart with chest = :43
  1650. minecart with furnace = :44
  1651. minecart with TNT = :45
  1652. minecart with hopper = :46
  1653. minecart with spawner = :47
  1654. creeper = :50
  1655. skeleton = :51
  1656. spider = :52
  1657. giant = :53
  1658. zombie = :54
  1659. slime = :55
  1660. ghast = :56
  1661. zombie pigman = :57
  1662. pig[ ]zombie = :57
  1663. enderman @an = :58
  1664. cave spider = :59
  1665. silverfish = :60
  1666. blaze = :61
  1667. magma cube = :62
  1668. ender dragon @an = :63
  1669. wither = :64
  1670. witch = :66
  1671. bat = :65
  1672. pig = :90
  1673. sheep = :91
  1674. cow = :92
  1675. chicken = :93
  1676. squid = :94
  1677. wolf = :95
  1678. mooshroom = :96
  1679. snow golem = :97
  1680. ocelot @an = :98
  1681. iron golem @an = :99
  1682. horse = :100
  1683. villager = :120
  1684. ender crystal = :200
  1685.  
  1686. {entity type} spawn egg¦s = 383
  1687. random spawn egg¦s = 383:50-52, 383:54-62, 383:65-66, 383:90-96, 383:98, 383:100, 383:120 # only working eggs
  1688.  
  1689.  
  1690. # -- bottle o' enchanting --
  1691. bottle¦¦s¦ (o'|of) enchanting = 384
  1692. (xp|exp[erience]) bottle¦s @an = 384
  1693.  
  1694.  
  1695. # -- fire charge --
  1696. fire charge¦s = 385
  1697.  
  1698.  
  1699. # -- book and quill, written book: see book
  1700.  
  1701.  
  1702. # -- emerald --
  1703. emerald¦s = 388
  1704.  
  1705.  
  1706. # -- item frame --
  1707. item frame¦s = 389
  1708.  
  1709.  
  1710. # -- flower pot: see vegetation --
  1711.  
  1712.  
  1713. # -- carrot, potatoes: see vegetation --
  1714.  
  1715.  
  1716. # -- empty map: see map --
  1717.  
  1718.  
  1719. # -- golden carrot: see vegetation --
  1720.  
  1721.  
  1722. # -- mob head: see mob head block --
  1723.  
  1724.  
  1725. # -- carrot on a stick: see vegetation --
  1726.  
  1727.  
  1728. # -- nether star --
  1729. nether star¦s = 399
  1730.  
  1731.  
  1732. # -- pumpkin pie: see vegetation --
  1733.  
  1734.  
  1735. # -- Fireworks --
  1736. firework rocket¦s = 401
  1737. firework star¦s = 402
  1738.  
  1739.  
  1740. # -- Enchanted Book --
  1741. enchanted book¦s @an = 403
  1742.  
  1743.  
  1744. # -- redstone comparator: see redstone
  1745.  
  1746.  
  1747. # -- nether brick item: see nether brick stuff
  1748.  
  1749.  
  1750. # -- nether quarz: see nether quarz block
  1751.  
  1752.  
  1753. # -- minecart with TNT/hopper: see minecarts
  1754.  
  1755.  
  1756. # -- horse armour --
  1757. iron horse armo[u]r¦s = 417
  1758. gold horse armo[u]r¦s = 418
  1759. diamond horse armo[u]r¦s = 419
  1760.  
  1761.  
  1762. # -- lead --
  1763. lead¦s = 420
  1764.  
  1765.  
  1766. # -- name tag --
  1767. name tag¦s = 421
  1768.  
  1769.  
  1770. # -- minecart with command block: see minecarts
  1771.  
  1772.  
  1773. # -- music discs --
  1774. music disc¦s = 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267
  1775. record¦s = music disc
  1776. gold [music] disc¦s = 2256
  1777. 13-disc¦s = 2256
  1778. green [music] disc¦s = 2257
  1779. cat [music] disc¦s = 2257
  1780. blocks [music] disc¦s = 2258
  1781. chirp [music] disc¦s = 2259
  1782. far [music] disc¦s = 2260
  1783. mall [music] disc¦s = 2261
  1784. mellohi [music] disc¦s = 2262
  1785. stal [music] disc¦s = 2263
  1786. strad [music] disc¦s = 2264
  1787. ward [music] disc¦s = 2265
  1788. 11-disc¦s = 2266
  1789. wait [music] disc¦s = 2267
  1790.  
  1791. # -- 1.8 --
  1792.  
  1793. slime block = 165
  1794. barrier = 166
  1795. iron trapdoor = 167
  1796. prismarine = 168
  1797. sea lantern = 169
  1798. standing banner = 176
  1799. wall banner = 177
  1800. daylight detector inverted = 178
  1801. red sandstone = 179
  1802. red sandstone stairs = 180
  1803. red sandstone double slab = 181
  1804. red sandstone slab = 182
  1805. spruce fence gate = 183
  1806. birch fence gate = 184
  1807. jungle fence gate = 185
  1808. dark oak fence gate = 186
  1809. acacia fence gate = 187
  1810. spruce fence = 188
  1811. birch fence = 189
  1812. jungle fence = 190
  1813. dark oak fence = 191
  1814. acacia fence = 192
  1815. spruce door block = 193
  1816. birch door block = 194
  1817. jungle door block = 195
  1818. acacia door block = 196
  1819. dark oak door block = 197
  1820. prismarine shard = 409
  1821. prismarine crystals = 410
  1822. rabbit = 411
  1823. cooked rabbit = 412
  1824. rabbit stew = 413
  1825. rabbit foot = 414
  1826. rabbit hide = 415
  1827. armo[u]r stand = 416
  1828. mutton = 423
  1829. cooked mutton = 424
  1830. banner = 425
  1831. spruce door = 427
  1832. birch door = 428
  1833. jungle door = 429
  1834. acacia door = 430
  1835. dark oak door = 431
  1836. polished granite = 1:2
  1837.  
  1838. #1.9
  1839.  
  1840. end[ ]rod = 198
  1841. chorus[ ]plant = 199
  1842. chorus[ ]flower = 200
  1843. purpur[ ]block = 201
  1844. purpur[ ]pillar = 202
  1845. end[ ]stone[]bricks = 206
  1846. [grass][ ]path = 208
  1847. end gate[ ]way = 209
  1848. repeating command block = 210
  1849. chain command block = 211
  1850. frosted[ ]ice = 212
  1851. magma[ ]block = 213
  1852. structure[ ]void = 217
  1853. structure[ ]block = 255
  1854. chorus[]fruit = 432
  1855. pop[ped] chorus[]fruit = 433
  1856. beet[ ]root = 434
  1857. beet[ ]root seed[s] = 435
  1858. dragon[s]['s][ ]breath = 437
  1859. spectral[ ]arrow = 439
  1860. tipped[ ]arrow = 440
  1861. lingering[ ]potion = 441
  1862. shield = 442
  1863. elytra = 443
  1864. spruce[]boat = 444
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement