Advertisement
onnowhere

1.13 Block Conversions

Nov 24th, 2017
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 75.76 KB | None | 0 0
  1. Always check default for blockstate/nbt first, then add to blockstate/nbt list
  2. If there are no blockstate/nbt arguments, use "default" 1.13 name
  3. If the blockstate argument is * or -1 (ex: execute detect or testforblock), compile a list of all unique 1.13 output names excluding blockstate/nbt
  4. If there are blockstate/nbt arguments but no block argument, use "default" 1.13 name
  5. When checking for nbt, check without tag type (ex: without b,f,s) then remove the entire tag
  6. When checking blockstate/nbt, if it already exists, remove and replace with new
  7. "[" = a blockstate
  8. "{" = an nbt
  9. ">" = exact block name, do not add blockstate/nbt
  10. "-" = removed, do nothing
  11.  
  12. {
  13. "air": {
  14. "default": "air"
  15. },
  16. "stone": {
  17. "default": "stone",
  18. "variant=stone": "stone",
  19. "variant=granite": "granite",
  20. "variant=smooth_granite": "polished_granite",
  21. "variant=diorite": "diorite",
  22. "variant=smooth_diorite": "polished_diorite",
  23. "variant=andesite": "andesite",
  24. "variant=smooth_andesite": "polished_andesite"
  25. },
  26. "grass": {
  27. "default": "grass_block",
  28. "snowy=true": "grass_block[snowy=true]",
  29. "snowy=false": "grass_block[snowy=false]"
  30. },
  31. "dirt": {
  32. "default": "dirt",
  33. "variant=dirt": "dirt",
  34. "variant=coarse_dirt": "coarse_dirt",
  35. "variant=podzol": "podzol",
  36. "snowy=true": "[snowy=true",
  37. "snowy=false": "[snowy=false"
  38. },
  39. "cobblestone": {
  40. "default": "cobblestone"
  41. },
  42. "planks": {
  43. "default": "oak_planks",
  44. "variant=oak": "oak_planks",
  45. "variant=spruce": "spruce_planks",
  46. "variant=birch": "birch_planks",
  47. "variant=jungle": "jungle_planks",
  48. "variant=acacia": "acacia_planks",
  49. "variant=dark_oak": "dark_oak_planks"
  50. },
  51. "sapling": {
  52. "default": "oak_sapling",
  53. "type=oak": "oak_sapling",
  54. "type=spruce": "spruce_sapling",
  55. "type=birch": "birch_sapling",
  56. "type=jungle": "jungle_sapling",
  57. "type=acacia": "acacia_sapling",
  58. "type=dark_oak": "dark_oak_sapling",
  59. "stage=0": "[stage=0",
  60. "stage=1": "[stage=1"
  61. },
  62. "bedrock": {
  63. "default": "bedrock"
  64. },
  65. "flowing_water": {
  66. "default": "flowing_water",
  67. "level=0": "[level=0",
  68. "level=1": "[level=1",
  69. "level=2": "[level=2",
  70. "level=3": "[level=3",
  71. "level=4": "[level=4",
  72. "level=5": "[level=5",
  73. "level=6": "[level=6",
  74. "level=7": "[level=7",
  75. "level=8": "[level=8",
  76. "level=9": "[level=9",
  77. "level=10": "[level=10",
  78. "level=11": "[level=11",
  79. "level=12": "[level=12",
  80. "level=13": "[level=13",
  81. "level=14": "[level=14",
  82. "level=15": "[level=15"
  83. },
  84. "water": {
  85. "default": "water",
  86. "level=0": "[level=0",
  87. "level=1": "[level=1",
  88. "level=2": "[level=2",
  89. "level=3": "[level=3",
  90. "level=4": "[level=4",
  91. "level=5": "[level=5",
  92. "level=6": "[level=6",
  93. "level=7": "[level=7",
  94. "level=8": "[level=8",
  95. "level=9": "[level=9",
  96. "level=10": "[level=10",
  97. "level=11": "[level=11",
  98. "level=12": "[level=12",
  99. "level=13": "[level=13",
  100. "level=14": "[level=14",
  101. "level=15": "[level=15"
  102. },
  103. "flowing_lava": {
  104. "default": "flowing_lava",
  105. "level=0": "[level=0",
  106. "level=1": "[level=1",
  107. "level=2": "[level=2",
  108. "level=3": "[level=3",
  109. "level=4": "[level=4",
  110. "level=5": "[level=5",
  111. "level=6": "[level=6",
  112. "level=7": "[level=7",
  113. "level=8": "[level=8",
  114. "level=9": "[level=9",
  115. "level=10": "[level=10",
  116. "level=11": "[level=11",
  117. "level=12": "[level=12",
  118. "level=13": "[level=13",
  119. "level=14": "[level=14",
  120. "level=15": "[level=15"
  121. },
  122. "lava": {
  123. "default": "lava",
  124. "level=0": "[level=0",
  125. "level=1": "[level=1",
  126. "level=2": "[level=2",
  127. "level=3": "[level=3",
  128. "level=4": "[level=4",
  129. "level=5": "[level=5",
  130. "level=6": "[level=6",
  131. "level=7": "[level=7",
  132. "level=8": "[level=8",
  133. "level=9": "[level=9",
  134. "level=10": "[level=10",
  135. "level=11": "[level=11",
  136. "level=12": "[level=12",
  137. "level=13": "[level=13",
  138. "level=14": "[level=14",
  139. "level=15": "[level=15"
  140. },
  141. "sand": {
  142. "default": "sand",
  143. "type=sand": "sand",
  144. "type=red_sand": "red_sand"
  145. },
  146. "gravel": {
  147. "default": "gravel"
  148. },
  149. "gold_ore": {
  150. "default": "gold_ore"
  151. },
  152. "iron_ore": {
  153. "default": "iron_ore"
  154. },
  155. "coal_ore": {
  156. "default": "coal_ore"
  157. },
  158. "log": {
  159. "default": "oak_log",
  160. "variant=oak,axis=none": "oak_bark",
  161. "variant=spruce,axis=none": "spruce_bark",
  162. "variant=birch,axis=none": "birch_bark",
  163. "variant=jungle,axis=none": "jungle_bark",
  164. "variant=oak": "oak_log",
  165. "variant=spruce": "spruce_log",
  166. "variant=birch": "birch_log",
  167. "variant=jungle": "jungle_log",
  168. "axis=x": "[axis=x",
  169. "axis=y": "[axis=y",
  170. "axis=z": "[axis=z",
  171. "axis=none": "oak_bark"
  172. },
  173. "leaves": {
  174. "default": "oak_leaves",
  175. "variant=oak": "oak_leaves",
  176. "variant=spruce": "spruce_leaves",
  177. "variant=birch": "birch_leaves",
  178. "variant=jungle": "jungle_leaves",
  179. "check_decay=true": "[check_decay=true",
  180. "check_decay=false": "[check_decay=false",
  181. "decayable=true": "[decayable=true",
  182. "decayable=false": "[decayable=false"
  183. },
  184. "sponge": {
  185. "default": "sponge",
  186. "wet=false": "sponge",
  187. "wet=true": "wet_sponge"
  188. },
  189. "glass": {
  190. "default": "glass"
  191. },
  192. "lapis_ore": {
  193. "default": "lapis_ore"
  194. },
  195. "lapis_block": {
  196. "default": "lapis_block"
  197. },
  198. "dispenser": {
  199. "default": "dispenser",
  200. "facing=north": "[facing=north",
  201. "facing=east": "[facing=east",
  202. "facing=south": "[facing=south",
  203. "facing=west": "[facing=west",
  204. "facing=up": "[facing=up",
  205. "facing=down": "[facing=down",
  206. "triggered=true": "[triggered=true",
  207. "triggered=false": "[triggered=false"
  208. },
  209. "sandstone": {
  210. "default": "sandstone",
  211. "type=sandstone": "sandstone",
  212. "type=chiseled_sandstone": "chiseled_sandstone",
  213. "type=smooth_sandstone": "cut_sandstone"
  214. },
  215. "noteblock": {
  216. "default": "note_block",
  217. "{note:0": "[note=0",
  218. "{note:1": "[note=1",
  219. "{note:2": "[note=2",
  220. "{note:3": "[note=3",
  221. "{note:4": "[note=4",
  222. "{note:5": "[note=5",
  223. "{note:6": "[note=6",
  224. "{note:7": "[note=7",
  225. "{note:8": "[note=8",
  226. "{note:9": "[note=9",
  227. "{note:10": "[note=10",
  228. "{note:11": "[note=11",
  229. "{note:12": "[note=12",
  230. "{note:13": "[note=13",
  231. "{note:14": "[note=14",
  232. "{note:15": "[note=15",
  233. "{note:16": "[note=16",
  234. "{note:17": "[note=17",
  235. "{note:18": "[note=18",
  236. "{note:19": "[note=19",
  237. "{note:20": "[note=20",
  238. "{note:21": "[note=21",
  239. "{note:22": "[note=22",
  240. "{note:23": "[note=23",
  241. "{note:24": "[note=24",
  242. "{powered=1": "[powered=true",
  243. "{powered=0": "[powered=false"
  244. },
  245. "bed": {
  246. "default": "red_bed",
  247. "facing=north": "[facing=north",
  248. "facing=east": "[facing=east",
  249. "facing=south": "[facing=south",
  250. "facing=west": "[facing=west",
  251. "occupied=true": "[occupied=true",
  252. "occupied=false": "[occupied=false",
  253. "part=head": "[part=head",
  254. "part=foot": "[part=foot",
  255. "{color:0": "white_bed",
  256. "{color:1": "orange_bed",
  257. "{color:2": "magenta_bed",
  258. "{color:3": "light_blue_bed",
  259. "{color:4": "yellow_bed",
  260. "{color:5": "lime_bed",
  261. "{color:6": "pink_bed",
  262. "{color:7": "gray_bed",
  263. "{color:8": "light_gray_bed",
  264. "{color:9": "cyan_bed",
  265. "{color:10": "purple_bed",
  266. "{color:11": "blue_bed",
  267. "{color:12": "brown_bed",
  268. "{color:13": "green_bed",
  269. "{color:14": "red_bed",
  270. "{color:15": "black_bed"
  271. },
  272. "golden_rail": {
  273. "default": "powered_rail",
  274. "powered=true": "[powered=true",
  275. "powered=false": "[powered=false",
  276. "shape=north_south": "[shape=north_south",
  277. "shape=east_west": "[shape=east_west",
  278. "shape=ascending_east": "[shape=ascending_east",
  279. "shape=ascending_west": "[shape=ascending_west",
  280. "shape=ascending_north": "[shape=ascending_north",
  281. "shape=ascending_south": "[shape=ascending_south"
  282. },
  283. "detector_rail": {
  284. "default": "detector_rail",
  285. "powered=true": "[powered=true",
  286. "powered=false": "[powered=false",
  287. "shape=north_south": "[shape=north_south",
  288. "shape=east_west": "[shape=east_west",
  289. "shape=ascending_east": "[shape=ascending_east",
  290. "shape=ascending_west": "[shape=ascending_west",
  291. "shape=ascending_north": "[shape=ascending_north",
  292. "shape=ascending_south": "[shape=ascending_south"
  293. },
  294. "sticky_piston": {
  295. "default": "sticky_piston",
  296. "extended=true": "[extended=true",
  297. "extended=false": "[extended=false",
  298. "facing=north": "[facing=north",
  299. "facing=east": "[facing=east",
  300. "facing=south": "[facing=south",
  301. "facing=west": "[facing=west",
  302. "facing=up": "[facing=up",
  303. "facing=down": "[facing=down"
  304. },
  305. "web": {
  306. "default": "cobweb"
  307. },
  308. "tallgrass": {
  309. "default": "grass",
  310. "type=tall_grass": "grass",
  311. "type=dead_bush": "dead_bush",
  312. "type=fern": "fern"
  313. },
  314. "deadbush": {
  315. "default": "dead_bush"
  316. },
  317. "piston": {
  318. "default": "piston",
  319. "extended=true": "[extended=true",
  320. "extended=false": "[extended=false",
  321. "facing=north": "[facing=north",
  322. "facing=east": "[facing=east",
  323. "facing=south": "[facing=south",
  324. "facing=west": "[facing=west",
  325. "facing=up": "[facing=up",
  326. "facing=down": "[facing=down"
  327. },
  328. "piston_head": {
  329. "default": "piston_head",
  330. "facing=north": "[facing=north",
  331. "facing=east": "[facing=east",
  332. "facing=south": "[facing=south",
  333. "facing=west": "[facing=west",
  334. "facing=up": "[facing=up",
  335. "facing=down": "[facing=down",
  336. "short=true": "[short=true",
  337. "short=false": "[short=false",
  338. "type=normal": "[type=normal",
  339. "type=sticky": "[type=sticky"
  340. },
  341. "wool": {
  342. "default": "white_wool",
  343. "color=white": "white_wool",
  344. "color=orange": "orange_wool",
  345. "color=magenta": "magenta_wool",
  346. "color=light_blue": "light_blue_wool",
  347. "color=yellow": "yellow_wool",
  348. "color=lime": "lime_wool",
  349. "color=pink": "pink_wool",
  350. "color=gray": "gray_wool",
  351. "color=silver": "light_gray_wool",
  352. "color=cyan": "cyan_wool",
  353. "color=purple": "purple_wool",
  354. "color=blue": "blue_wool",
  355. "color=brown": "brown_wool",
  356. "color=green": "green_wool",
  357. "color=red": "red_wool",
  358. "color=black": "black_wool"
  359. },
  360. "piston_extension": {
  361. "default": "moving_piston",
  362. "facing=north": "[facing=north",
  363. "facing=east": "[facing=east",
  364. "facing=south": "[facing=south",
  365. "facing=west": "[facing=west",
  366. "facing=up": "[facing=up",
  367. "facing=down": "[facing=down",
  368. "type=normal": "[type=normal",
  369. "type=sticky": "[type=sticky"
  370. },
  371. "yellow_flower": {
  372. "default": "dandelion"
  373. },
  374. "red_flower": {
  375. "default": "poppy",
  376. "type=poppy": "poppy",
  377. "type=blue_orchid": "blue_orchid",
  378. "type=allium": "allium",
  379. "type=houstonia": "azure_bluet",
  380. "type=red_tulip": "red_tulip",
  381. "type=orange_tulip": "orange_tulip",
  382. "type=white_tulip": "white_tulip",
  383. "type=pink_tulip": "pink_tulip",
  384. "type=oxeye_daisy": "oxeye_daisy"
  385. },
  386. "brown_mushroom": {
  387. "default": "brown_mushroom"
  388. },
  389. "red_mushroom": {
  390. "default": "red_mushroom"
  391. },
  392. "gold_block": {
  393. "default": "gold_block"
  394. },
  395. "iron_block": {
  396. "default": "iron_block"
  397. },
  398. "double_stone_slab": {
  399. "default": "stone_slab[type=double]",
  400. "seamless=true,variant=stone": "smooth_stone",
  401. "seamless=true,variant=sandstone": "smooth_sandstone",
  402. "seamless=true,variant=quartz": "smooth_quartz",
  403. "variant=stone": ">stone_slab[type=double]",
  404. "variant=sandstone": ">sandstone_slab[type=double]",
  405. "variant=wood_old": ">petrified_oak_slab[type=double]",
  406. "variant=cobblestone": ">cobblestone_slab[type=double]",
  407. "variant=brick": ">brick_slab[type=double]",
  408. "variant=stone_brick": ">stone_brick_slab[type=double]",
  409. "variant=nether_brick": ">nether_brick_slab[type=double]",
  410. "variant=quartz": ">quartz_slab[type=double]",
  411. "seamless=false": "stone_slab[type=double]",
  412. "seamless=true": "smooth_stone"
  413. },
  414. "stone_slab": {
  415. "default": "stone_slab",
  416. "variant=stone": "stone_slab",
  417. "variant=sandstone": "sandstone_slab",
  418. "variant=wood_old": "petrified_oak_slab",
  419. "variant=cobblestone": "cobblestone_slab",
  420. "variant=brick": "brick_slab",
  421. "variant=stone_brick": "stone_brick_slab",
  422. "variant=nether_brick": "nether_brick_slab",
  423. "variant=quartz": "quartz_slab",
  424. "half=top": "[type=top",
  425. "half=bottom": "[type=bottom"
  426. },
  427. "brick_block": {
  428. "default": "bricks"
  429. },
  430. "tnt": {
  431. "default": "tnt",
  432. "explode=false": "tnt",
  433. "explode=true": "tnt"
  434. },
  435. "bookshelf": {
  436. "default": "bookshelf"
  437. },
  438. "mossy_cobblestone": {
  439. "default": "mossy_cobblestone"
  440. },
  441. "obsidian": {
  442. "default": "obsidian"
  443. },
  444. "torch": {
  445. "default": "torch",
  446. "facing=up": "torch",
  447. "facing=north": "wall_torch[facing=north]",
  448. "facing=east": "wall_torch[facing=east]",
  449. "facing=south": "wall_torch[facing=south]",
  450. "facing=west": "wall_torch[facing=west]"
  451. },
  452. "fire": {
  453. "default": "fire",
  454. "age=0": "[age=0",
  455. "age=1": "[age=1",
  456. "age=2": "[age=2",
  457. "age=3": "[age=3",
  458. "age=4": "[age=4",
  459. "age=5": "[age=5",
  460. "age=6": "[age=6",
  461. "age=7": "[age=7",
  462. "age=8": "[age=8",
  463. "age=9": "[age=9",
  464. "age=10": "[age=10",
  465. "age=11": "[age=11",
  466. "age=12": "[age=12",
  467. "age=13": "[age=13",
  468. "age=14": "[age=14",
  469. "age=15": "[age=15",
  470. "up=true": "[up=true",
  471. "up=false": "[up=false",
  472. "north=true": "[north=true",
  473. "north=false": "[north=false",
  474. "east=true": "[east=true",
  475. "east=false": "[east=false",
  476. "south=true": "[south=true",
  477. "south=false": "[south=false",
  478. "west=true": "[west=true",
  479. "west=false": "[west=false"
  480. },
  481. "mob_spawner": {
  482. "default": "mob_spawner"
  483. },
  484. "oak_stairs": {
  485. "default": "oak_stairs",
  486. "facing=north": "[facing=north",
  487. "facing=east": "[facing=east",
  488. "facing=south": "[facing=south",
  489. "facing=west": "[facing=west",
  490. "half=top": "[half=top",
  491. "half=bottom": "[half=bottom",
  492. "shape=straight": "[shape=straight",
  493. "shape=inner_left": "[shape=inner_left",
  494. "shape=inner_right": "[shape=inner_right",
  495. "shape=outer_left": "[shape=outer_left",
  496. "shape=outer_right": "[shape=outer_right"
  497. },
  498. "chest": {
  499. "default": "chest",
  500. "facing=north": "[facing=north",
  501. "facing=east": "[facing=east",
  502. "facing=south": "[facing=south",
  503. "facing=west": "[facing=west"
  504. },
  505. "redstone_wire": {
  506. "default": "redstone_wire",
  507. "power=0": "[power=0",
  508. "power=1": "[power=1",
  509. "power=2": "[power=2",
  510. "power=3": "[power=3",
  511. "power=4": "[power=4",
  512. "power=5": "[power=5",
  513. "power=6": "[power=6",
  514. "power=7": "[power=7",
  515. "power=8": "[power=8",
  516. "power=9": "[power=9",
  517. "power=10": "[power=10",
  518. "power=11": "[power=11",
  519. "power=12": "[power=12",
  520. "power=13": "[power=13",
  521. "power=14": "[power=14",
  522. "power=15": "[power=15",
  523. "east=none": "[east=none",
  524. "east=side": "[east=side",
  525. "east=up": "[east=up",
  526. "north=none": "[north=none",
  527. "north=side": "[north=side",
  528. "north=up": "[north=up",
  529. "south=none": "[south=none",
  530. "south=side": "[south=side",
  531. "south=up": "[south=up",
  532. "west=none": "[west=none",
  533. "west=side": "[west=side",
  534. "west=up": "[west=up"
  535. },
  536. "diamond_ore": {
  537. "default": "diamond_ore"
  538. },
  539. "diamond_block": {
  540. "default": "diamond_block"
  541. },
  542. "crafting_table": {
  543. "default": "crafting_table"
  544. },
  545. "wheat": {
  546. "default": "wheat",
  547. "age=0": "[age=0",
  548. "age=1": "[age=1",
  549. "age=2": "[age=2",
  550. "age=3": "[age=3",
  551. "age=4": "[age=4",
  552. "age=5": "[age=5",
  553. "age=6": "[age=6",
  554. "age=7": "[age=7"
  555. },
  556. "farmland": {
  557. "default": "farmland",
  558. "moisture=0": "[moisture=0",
  559. "moisture=1": "[moisture=1",
  560. "moisture=2": "[moisture=2",
  561. "moisture=3": "[moisture=3",
  562. "moisture=4": "[moisture=4",
  563. "moisture=5": "[moisture=5",
  564. "moisture=6": "[moisture=6",
  565. "moisture=7": "[moisture=7"
  566. },
  567. "furnace": {
  568. "default": "furnace",
  569. "facing=north": "[facing=north",
  570. "facing=east": "[facing=east",
  571. "facing=south": "[facing=south",
  572. "facing=west": "[facing=west"
  573. },
  574. "lit_furnace": {
  575. "default": "furnace[lit=true]",
  576. "facing=north": "furnace[lit=true,facing=north]",
  577. "facing=east": "furnace[lit=true,facing=east]",
  578. "facing=south": "furnace[lit=true,facing=south]",
  579. "facing=west": "furnace[lit=true,facing=west]"
  580. },
  581. "standing_sign": {
  582. "default": "sign",
  583. "rotation=0": "[rotation=0",
  584. "rotation=1": "[rotation=1",
  585. "rotation=2": "[rotation=2",
  586. "rotation=3": "[rotation=3",
  587. "rotation=4": "[rotation=4",
  588. "rotation=5": "[rotation=5",
  589. "rotation=6": "[rotation=6",
  590. "rotation=7": "[rotation=7",
  591. "rotation=8": "[rotation=8",
  592. "rotation=9": "[rotation=9",
  593. "rotation=10": "[rotation=10",
  594. "rotation=11": "[rotation=11",
  595. "rotation=12": "[rotation=12",
  596. "rotation=13": "[rotation=13",
  597. "rotation=14": "[rotation=14",
  598. "rotation=15": "[rotation=15"
  599. },
  600. "wooden_door": {
  601. "default": "oak_door",
  602. "facing=north": "[facing=north",
  603. "facing=east": "[facing=east",
  604. "facing=south": "[facing=south",
  605. "facing=west": "[facing=west",
  606. "half=upper": "[half=upper",
  607. "half=lower": "[half=lower",
  608. "hinge=left": "[hinge=left",
  609. "hinge=right": "[hinge=right",
  610. "open=false": "[open=false",
  611. "open=true": "[open=true",
  612. "powered=false": "[powered=false",
  613. "powered=true": "[powered=true"
  614. },
  615. "ladder": {
  616. "default": "ladder",
  617. "facing=north": "[facing=north",
  618. "facing=east": "[facing=east",
  619. "facing=south": "[facing=south",
  620. "facing=west": "[facing=west"
  621. },
  622. "rail": {
  623. "default": "rail",
  624. "shape=north_south": "[shape=north_south",
  625. "shape=east_west": "[shape=east_west",
  626. "shape=ascending_east": "[shape=ascending_east",
  627. "shape=ascending_west": "[shape=ascending_west",
  628. "shape=ascending_north": "[shape=ascending_north",
  629. "shape=ascending_south": "[shape=ascending_south",
  630. "shape=south_east": "[shape=south_east",
  631. "shape=south_west": "[shape=south_west",
  632. "shape=north_west": "[shape=north_west",
  633. "shape=north_east": "[shape=north_east"
  634. },
  635. "stone_stairs": {
  636. "default": "cobblestone_stairs",
  637. "facing=north": "[facing=north",
  638. "facing=east": "[facing=east",
  639. "facing=south": "[facing=south",
  640. "facing=west": "[facing=west",
  641. "half=top": "[half=top",
  642. "half=bottom": "[half=bottom",
  643. "shape=straight": "[shape=straight",
  644. "shape=inner_left": "[shape=inner_left",
  645. "shape=inner_right": "[shape=inner_right",
  646. "shape=outer_left": "[shape=outer_left",
  647. "shape=outer_right": "[shape=outer_right"
  648. },
  649. "wall_sign": {
  650. "default": "wall_sign",
  651. "facing=north": "[facing=north",
  652. "facing=east": "[facing=east",
  653. "facing=south": "[facing=south",
  654. "facing=west": "[facing=west"
  655. },
  656. "lever": {
  657. "default": "lever",
  658. "facing=down_x": "[face=ceiling,facing=west",
  659. "facing=east": "[face=wall,facing=east",
  660. "facing=west": "[face=wall,facing=west",
  661. "facing=south": "[face=wall,facing=south",
  662. "facing=north": "[face=wall,facing=north",
  663. "facing=up_z": "[face=floor,facing=north",
  664. "facing=up_x": "[face=floor,facing=west",
  665. "facing=down_z": "[face=ceiling,facing=north",
  666. "powered=false": "[powered=false",
  667. "powered=true": "[powered=true"
  668. },
  669. "stone_pressure_plate": {
  670. "default": "stone_pressure_plate",
  671. "powered=false": "[powered=false",
  672. "powered=true": "[powered=true"
  673. },
  674. "iron_door": {
  675. "default": "iron_door",
  676. "facing=north": "[facing=north",
  677. "facing=east": "[facing=east",
  678. "facing=south": "[facing=south",
  679. "facing=west": "[facing=west",
  680. "half=upper": "[half=upper",
  681. "half=lower": "[half=lower",
  682. "hinge=left": "[hinge=left",
  683. "hinge=right": "[hinge=right",
  684. "open=false": "[open=false",
  685. "open=true": "[open=true",
  686. "powered=false": "[powered=false",
  687. "powered=true": "[powered=true"
  688. },
  689. "wooden_pressure_plate": {
  690. "default": "oak_pressure_plate",
  691. "powered=false": "[powered=false",
  692. "powered=true": "[powered=true"
  693. },
  694. "lit_redstone_ore": {
  695. "default": "redstone_ore[lit=true]"
  696. },
  697. "redstone_ore": {
  698. "default": "redstone_ore"
  699. },
  700. "unlit_redstone_torch": {
  701. "default": "redstone_torch[lit=false]",
  702. "facing=up": "redstone_torch[lit=false]",
  703. "facing=north": "redstone_wall_torch[lit=false,facing=north]",
  704. "facing=east": "redstone_wall_torch[lit=false,facing=east]",
  705. "facing=south": "redstone_wall_torch[lit=false,facing=south]",
  706. "facing=west": "redstone_wall_torch[lit=false,facing=west]"
  707. },
  708. "redstone_torch": {
  709. "default": "redstone_torch",
  710. "facing=up": "redstone_torch",
  711. "facing=north": "redstone_wall_torch[facing=north]",
  712. "facing=east": "redstone_wall_torch[facing=east]",
  713. "facing=south": "redstone_wall_torch[facing=south]",
  714. "facing=west": "redstone_wall_torch[facing=west]"
  715. },
  716. "stone_button": {
  717. "default": "stone_button",
  718. "facing=down": "[face=ceiling,facing=south",
  719. "facing=up": "[face=floor,facing=north",
  720. "facing=east": "[face=wall,facing=east",
  721. "facing=west": "[face=wall,facing=west",
  722. "facing=south": "[face=wall,facing=south",
  723. "facing=north": "[face=wall,facing=north",
  724. "powered=false": "[powered=false",
  725. "powered=true": "[powered=true"
  726. },
  727. "snow_layer": {
  728. "default": "snow",
  729. "layers=1": "[layers=1",
  730. "layers=2": "[layers=2",
  731. "layers=3": "[layers=3",
  732. "layers=4": "[layers=4",
  733. "layers=5": "[layers=5",
  734. "layers=6": "[layers=6",
  735. "layers=7": "[layers=7",
  736. "layers=8": "[layers=8"
  737. },
  738. "ice": {
  739. "default": "ice"
  740. },
  741. "snow": {
  742. "default": "snow_block"
  743. },
  744. "cactus": {
  745. "default": "cactus",
  746. "age=0": "[age=0",
  747. "age=1": "[age=1",
  748. "age=2": "[age=2",
  749. "age=3": "[age=3",
  750. "age=4": "[age=4",
  751. "age=5": "[age=5",
  752. "age=6": "[age=6",
  753. "age=7": "[age=7",
  754. "age=8": "[age=8",
  755. "age=9": "[age=9",
  756. "age=10": "[age=10",
  757. "age=11": "[age=11",
  758. "age=12": "[age=12",
  759. "age=13": "[age=13",
  760. "age=14": "[age=14",
  761. "age=15": "[age=15"
  762. },
  763. "clay": {
  764. "default": "clay"
  765. },
  766. "reeds": {
  767. "default": "sugar_cane",
  768. "age=0": "[age=0",
  769. "age=1": "[age=1",
  770. "age=2": "[age=2",
  771. "age=3": "[age=3",
  772. "age=4": "[age=4",
  773. "age=5": "[age=5",
  774. "age=6": "[age=6",
  775. "age=7": "[age=7",
  776. "age=8": "[age=8",
  777. "age=9": "[age=9",
  778. "age=10": "[age=10",
  779. "age=11": "[age=11",
  780. "age=12": "[age=12",
  781. "age=13": "[age=13",
  782. "age=14": "[age=14",
  783. "age=15": "[age=15"
  784. },
  785. "jukebox": {
  786. "default": "jukebox",
  787. "has_record=true": "[has_record=true",
  788. "has_record=false": "[has_record=false"
  789. },
  790. "fence": {
  791. "default": "oak_fence",
  792. "east=true": "[east=true",
  793. "east=false": "[east=false",
  794. "north=true": "[north=true",
  795. "north=false": "[north=false",
  796. "south=true": "[south=true",
  797. "south=false": "[south=false",
  798. "west=true": "[west=true",
  799. "west=false": "[west=false"
  800. },
  801. "pumpkin": {
  802. "default": "carved_pumpkin",
  803. "facing=north": "[facing=north",
  804. "facing=east": "[facing=east",
  805. "facing=south": "[facing=south",
  806. "facing=west": "[facing=west"
  807. },
  808. "netherrack": {
  809. "default": "netherrack"
  810. },
  811. "soul_sand": {
  812. "default": "soul_sand"
  813. },
  814. "glowstone": {
  815. "default": "glowstone"
  816. },
  817. "portal": {
  818. "default": "portal",
  819. "axis=x": "[axis=x",
  820. "axis=z": "[axis=z"
  821. },
  822. "lit_pumpkin": {
  823. "default": "jack_o_lantern",
  824. "facing=north": "[facing=north",
  825. "facing=east": "[facing=east",
  826. "facing=south": "[facing=south",
  827. "facing=west": "[facing=west"
  828. },
  829. "cake": {
  830. "default": "cake",
  831. "bites=0": "[bites=0",
  832. "bites=1": "[bites=1",
  833. "bites=2": "[bites=2",
  834. "bites=3": "[bites=3",
  835. "bites=4": "[bites=4",
  836. "bites=5": "[bites=5",
  837. "bites=6": "[bites=6"
  838. },
  839. "unpowered_repeater": {
  840. "default": "repeater",
  841. "delay=1": "[delay=1",
  842. "delay=2": "[delay=2",
  843. "delay=3": "[delay=3",
  844. "delay=4": "[delay=4",
  845. "facing=north": "[facing=north",
  846. "facing=east": "[facing=east",
  847. "facing=south": "[facing=south",
  848. "facing=west": "[facing=west",
  849. "locked=false": "[locked=false",
  850. "locked=true": "[locked=true"
  851. },
  852. "powered_repeater": {
  853. "default": "repeater[powered=true]",
  854. "delay=1": "[delay=1",
  855. "delay=2": "[delay=2",
  856. "delay=3": "[delay=3",
  857. "delay=4": "[delay=4",
  858. "facing=north": "[facing=north",
  859. "facing=east": "[facing=east",
  860. "facing=south": "[facing=south",
  861. "facing=west": "[facing=west",
  862. "locked=false": "[locked=false",
  863. "locked=true": "[locked=true"
  864. },
  865. "stained_glass": {
  866. "default": "white_stained_glass",
  867. "color=white": "white_stained_glass",
  868. "color=orange": "orange_stained_glass",
  869. "color=magenta": "magenta_stained_glass",
  870. "color=light_blue": "light_blue_stained_glass",
  871. "color=yellow": "yellow_stained_glass",
  872. "color=lime": "lime_stained_glass",
  873. "color=pink": "pink_stained_glass",
  874. "color=gray": "gray_stained_glass",
  875. "color=silver": "light_gray_stained_glass",
  876. "color=cyan": "cyan_stained_glass",
  877. "color=purple": "purple_stained_glass",
  878. "color=blue": "blue_stained_glass",
  879. "color=brown": "brown_stained_glass",
  880. "color=green": "green_stained_glass",
  881. "color=red": "red_stained_glass",
  882. "color=black": "black_stained_glass"
  883. },
  884. "trapdoor": {
  885. "default": "oak_trapdoor",
  886. "facing=north": "[facing=north",
  887. "facing=east": "[facing=east",
  888. "facing=south": "[facing=south",
  889. "facing=west": "[facing=west",
  890. "half=top": "[half=top",
  891. "half=bottom": "[half=bottom",
  892. "open=true": "[open=true",
  893. "open=false": "[open=false"
  894. },
  895. "monster_egg": {
  896. "default": "infested_stone",
  897. "variant=stone": "infested_stone",
  898. "variant=cobblestone": "infested_cobblestone",
  899. "variant=stone_brick": "infested_stone_bricks",
  900. "variant=mossy_brick": "infested_mossy_stone_bricks",
  901. "variant=cracked_brick": "infested_cracked_stone_bricks",
  902. "variant=chiseled_brick": "infested_chiseled_stone_bricks"
  903. },
  904. "stonebrick": {
  905. "default": "stone_bricks",
  906. "variant=stonebrick": "stone_bricks",
  907. "variant=mossy_stonebrick": "mossy_stone_bricks",
  908. "variant=cracked_stonebrick": "cracked_stone_bricks",
  909. "variant=chiseled_stonebrick": "chiseled_stone_bricks"
  910. },
  911. "brown_mushroom_block": {
  912. "default": "brown_mushroom_block",
  913. "variant=all_inside": "brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]",
  914. "variant=north_west": "brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]",
  915. "variant=north": "brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]",
  916. "variant=north_east": "brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]",
  917. "variant=west": "brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]",
  918. "variant=center": "brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]",
  919. "variant=east": "brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]",
  920. "variant=south_west": "brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]",
  921. "variant=south": "brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]",
  922. "variant=south_east": "brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]",
  923. "variant=stem": "mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]",
  924. "variant=all_outside": "brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]",
  925. "variant=all_stem": "mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]"
  926. },
  927. "red_mushroom_block": {
  928. "default": "red_mushroom_block",
  929. "variant=all_inside": "red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]",
  930. "variant=north_west": "red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]",
  931. "variant=north": "red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]",
  932. "variant=north_east": "red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]",
  933. "variant=west": "red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]",
  934. "variant=center": "red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]",
  935. "variant=east": "red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]",
  936. "variant=south_west": "red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]",
  937. "variant=south": "red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]",
  938. "variant=south_east": "red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]",
  939. "variant=stem": "mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]",
  940. "variant=all_outside": "red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]",
  941. "variant=all_stem": "mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]"
  942. },
  943. "iron_bars": {
  944. "default": "iron_bars",
  945. "east=true": "[east=true",
  946. "east=false": "[east=false",
  947. "north=true": "[north=true",
  948. "north=false": "[north=false",
  949. "south=true": "[south=true",
  950. "south=false": "[south=false",
  951. "west=true": "[west=true",
  952. "west=false": "[west=false"
  953. },
  954. "glass_pane": {
  955. "default": "glass_pane",
  956. "east=true": "[east=true",
  957. "east=false": "[east=false",
  958. "north=true": "[north=true",
  959. "north=false": "[north=false",
  960. "south=true": "[south=true",
  961. "south=false": "[south=false",
  962. "west=true": "[west=true",
  963. "west=false": "[west=false"
  964. },
  965. "melon_block": {
  966. "default": "melon_block"
  967. },
  968. "pumpkin_stem": {
  969. "default": "pumpkin_stem",
  970. "age=0": "[age=0",
  971. "age=1": "[age=1",
  972. "age=2": "[age=2",
  973. "age=3": "[age=3",
  974. "age=4": "[age=4",
  975. "age=5": "[age=5",
  976. "age=6": "[age=6",
  977. "age=7": "[age=7",
  978. "facing=up": "pumpkin_stem",
  979. "facing=north": ">attached_pumpkin_stem[facing=north]",
  980. "facing=east": ">attached_pumpkin_stem[facing=east]",
  981. "facing=south": ">attached_pumpkin_stem[facing=south]",
  982. "facing=west": ">attached_pumpkin_stem[facing=west]"
  983. },
  984. "melon_stem": {
  985. "default": "melon_stem",
  986. "age=0": "[age=0",
  987. "age=1": "[age=1",
  988. "age=2": "[age=2",
  989. "age=3": "[age=3",
  990. "age=4": "[age=4",
  991. "age=5": "[age=5",
  992. "age=6": "[age=6",
  993. "age=7": "[age=7",
  994. "facing=up": "melon_stem",
  995. "facing=north": ">attached_melon_stem[facing=north]",
  996. "facing=east": ">attached_melon_stem[facing=east]",
  997. "facing=south": ">attached_melon_stem[facing=south]",
  998. "facing=west": ">attached_melon_stem[facing=west]"
  999. },
  1000. "vine": {
  1001. "default": "vine",
  1002. "east=true": "[east=true",
  1003. "east=false": "[east=false",
  1004. "north=true": "[north=true",
  1005. "north=false": "[north=false",
  1006. "south=true": "[south=true",
  1007. "south=false": "[south=false",
  1008. "up=true": "[up=true",
  1009. "up=false": "[up=false",
  1010. "west=true": "[west=true",
  1011. "west=false": "[west=false"
  1012. },
  1013. "fence_gate": {
  1014. "default": "oak_fence_gate",
  1015. "facing=north": "[facing=north",
  1016. "facing=east": "[facing=east",
  1017. "facing=south": "[facing=south",
  1018. "facing=west": "[facing=west",
  1019. "in_wall=true": "[in_wall=true",
  1020. "in_wall=false": "[in_wall=false",
  1021. "open=true": "[open=true",
  1022. "open=false": "[open=false",
  1023. "powered=true": "[powered=true",
  1024. "powered=false": "[powered=false"
  1025. },
  1026. "brick_stairs": {
  1027. "default": "brick_stairs",
  1028. "facing=north": "[facing=north",
  1029. "facing=east": "[facing=east",
  1030. "facing=south": "[facing=south",
  1031. "facing=west": "[facing=west",
  1032. "half=top": "[half=top",
  1033. "half=bottom": "[half=bottom",
  1034. "shape=straight": "[shape=straight",
  1035. "shape=inner_left": "[shape=inner_left",
  1036. "shape=inner_right": "[shape=inner_right",
  1037. "shape=outer_left": "[shape=outer_left",
  1038. "shape=outer_right": "[shape=outer_right"
  1039. },
  1040. "stone_brick_stairs": {
  1041. "default": "stone_brick_stairs",
  1042. "facing=north": "[facing=north",
  1043. "facing=east": "[facing=east",
  1044. "facing=south": "[facing=south",
  1045. "facing=west": "[facing=west",
  1046. "half=top": "[half=top",
  1047. "half=bottom": "[half=bottom",
  1048. "shape=straight": "[shape=straight",
  1049. "shape=inner_left": "[shape=inner_left",
  1050. "shape=inner_right": "[shape=inner_right",
  1051. "shape=outer_left": "[shape=outer_left",
  1052. "shape=outer_right": "[shape=outer_right"
  1053. },
  1054. "mycelium": {
  1055. "default": "mycelium",
  1056. "snowy=true": "grass_block[snowy=true]",
  1057. "snowy=false": "grass_block[snowy=false]"
  1058. },
  1059. "waterlily": {
  1060. "default": "lily_pad"
  1061. },
  1062. "nether_brick": {
  1063. "default": "nether_bricks"
  1064. },
  1065. "nether_brick_fence": {
  1066. "default": "nether_brick_fence",
  1067. "east=true": "[east=true",
  1068. "east=false": "[east=false",
  1069. "north=true": "[north=true",
  1070. "north=false": "[north=false",
  1071. "south=true": "[south=true",
  1072. "south=false": "[south=false",
  1073. "west=true": "[west=true",
  1074. "west=false": "[west=false"
  1075. },
  1076. "nether_brick_stairs": {
  1077. "default": "nether_brick_stairs",
  1078. "facing=north": "[facing=north",
  1079. "facing=east": "[facing=east",
  1080. "facing=south": "[facing=south",
  1081. "facing=west": "[facing=west",
  1082. "half=top": "[half=top",
  1083. "half=bottom": "[half=bottom",
  1084. "shape=straight": "[shape=straight",
  1085. "shape=inner_left": "[shape=inner_left",
  1086. "shape=inner_right": "[shape=inner_right",
  1087. "shape=outer_left": "[shape=outer_left",
  1088. "shape=outer_right": "[shape=outer_right"
  1089. },
  1090. "nether_wart": {
  1091. "default": "nether_wart",
  1092. "age=0": "[age=0",
  1093. "age=1": "[age=1",
  1094. "age=2": "[age=2",
  1095. "age=3": "[age=3"
  1096. },
  1097. "enchanting_table": {
  1098. "default": "enchanting_table"
  1099. },
  1100. "brewing_stand": {
  1101. "default": "brewing_stand",
  1102. "has_bottle_0=true": "[has_bottle_0=true",
  1103. "has_bottle_0=false": "[has_bottle_0=false",
  1104. "has_bottle_1=true": "[has_bottle_1=true",
  1105. "has_bottle_1=false": "[has_bottle_1=false",
  1106. "has_bottle_2=true": "[has_bottle_2=true",
  1107. "has_bottle_2=false": "[has_bottle_2=false"
  1108. },
  1109. "cauldron": {
  1110. "default": "cauldron",
  1111. "level=0": "[level=0",
  1112. "level=1": "[level=1",
  1113. "level=2": "[level=2",
  1114. "level=3": "[level=3"
  1115. },
  1116. "end_portal": {
  1117. "default": "end_portal"
  1118. },
  1119. "end_portal_frame": {
  1120. "default": "end_portal_frame",
  1121. "eye=true": "[eye=true",
  1122. "eye=false": "[eye=false",
  1123. "facing=north": "[facing=north",
  1124. "facing=east": "[facing=east",
  1125. "facing=south": "[facing=south",
  1126. "facing=west": "[facing=west"
  1127. },
  1128. "end_stone": {
  1129. "default": "end_stone"
  1130. },
  1131. "dragon_egg": {
  1132. "default": "dragon_egg"
  1133. },
  1134. "redstone_lamp": {
  1135. "default": "redstone_lamp"
  1136. },
  1137. "lit_redstone_lamp": {
  1138. "default": "redstone_lamp[lit=true]"
  1139. },
  1140. "double_wooden_slab": {
  1141. "default": "oak_slab[type=double]",
  1142. "variant=oak": "oak_slab[type=double]",
  1143. "variant=spruce": "spruce_slab[type=double]",
  1144. "variant=birch": "birch_slab[type=double]",
  1145. "variant=jungle": "jungle_slab[type=double]",
  1146. "variant=acacia": "acacia_slab[type=double]",
  1147. "variant=dark_oak": "dark_oak_slab[type=double]"
  1148. },
  1149. "wooden_slab": {
  1150. "default": "oak_slab",
  1151. "variant=oak": "oak_slab",
  1152. "variant=spruce": "spruce_slab",
  1153. "variant=birch": "birch_slab",
  1154. "variant=jungle": "jungle_slab",
  1155. "variant=acacia": "acacia_slab",
  1156. "variant=dark_oak": "dark_oak_slab",
  1157. "half=top": "[type=top",
  1158. "half=bottom": "[type=bottom"
  1159. },
  1160. "cocoa": {
  1161. "default": "cocoa",
  1162. "age=0": "[age=0",
  1163. "age=1": "[age=1",
  1164. "age=2": "[age=2",
  1165. "facing=north": "[facing=north",
  1166. "facing=east": "[facing=east",
  1167. "facing=south": "[facing=south",
  1168. "facing=west": "[facing=west"
  1169. },
  1170. "sandstone_stairs": {
  1171. "default": "sandstone_stairs",
  1172. "facing=north": "[facing=north",
  1173. "facing=east": "[facing=east",
  1174. "facing=south": "[facing=south",
  1175. "facing=west": "[facing=west",
  1176. "half=top": "[half=top",
  1177. "half=bottom": "[half=bottom",
  1178. "shape=straight": "[shape=straight",
  1179. "shape=inner_left": "[shape=inner_left",
  1180. "shape=inner_right": "[shape=inner_right",
  1181. "shape=outer_left": "[shape=outer_left",
  1182. "shape=outer_right": "[shape=outer_right"
  1183. },
  1184. "emerald_ore": {
  1185. "default": "emerald_ore"
  1186. },
  1187. "ender_chest": {
  1188. "default": "ender_chest",
  1189. "facing=north": "[facing=north",
  1190. "facing=east": "[facing=east",
  1191. "facing=south": "[facing=south",
  1192. "facing=west": "[facing=west"
  1193. },
  1194. "tripwire_hook": {
  1195. "default": "tripwire_hook",
  1196. "attached=true": "[attached=true",
  1197. "attached=false": "[attached=false",
  1198. "facing=north": "[facing=north",
  1199. "facing=east": "[facing=east",
  1200. "facing=south": "[facing=south",
  1201. "facing=west": "[facing=west",
  1202. "powered=true": "[powered=true",
  1203. "powered=false": "[powered=false"
  1204. },
  1205. "tripwire": {
  1206. "default": "tripwire",
  1207. "attached=true": "[attached=true",
  1208. "attached=false": "[attached=false",
  1209. "disarmed=true": "[disarmed=true",
  1210. "disarmed=false": "[disarmed=false",
  1211. "east=true": "[east=true",
  1212. "east=false": "[east=false",
  1213. "north=true": "[north=true",
  1214. "north=false": "[north=false",
  1215. "south=true": "[south=true",
  1216. "south=false": "[south=false",
  1217. "west=true": "[west=true",
  1218. "west=false": "[west=false",
  1219. "powered=true": "[powered=true",
  1220. "powered=false": "[powered=false"
  1221. },
  1222. "emerald_block": {
  1223. "default": "emerald_block"
  1224. },
  1225. "spruce_stairs": {
  1226. "default": "spruce_stairs",
  1227. "facing=north": "[facing=north",
  1228. "facing=east": "[facing=east",
  1229. "facing=south": "[facing=south",
  1230. "facing=west": "[facing=west",
  1231. "half=top": "[half=top",
  1232. "half=bottom": "[half=bottom",
  1233. "shape=straight": "[shape=straight",
  1234. "shape=inner_left": "[shape=inner_left",
  1235. "shape=inner_right": "[shape=inner_right",
  1236. "shape=outer_left": "[shape=outer_left",
  1237. "shape=outer_right": "[shape=outer_right"
  1238. },
  1239. "birch_stairs": {
  1240. "default": "birch_stairs",
  1241. "facing=north": "[facing=north",
  1242. "facing=east": "[facing=east",
  1243. "facing=south": "[facing=south",
  1244. "facing=west": "[facing=west",
  1245. "half=top": "[half=top",
  1246. "half=bottom": "[half=bottom",
  1247. "shape=straight": "[shape=straight",
  1248. "shape=inner_left": "[shape=inner_left",
  1249. "shape=inner_right": "[shape=inner_right",
  1250. "shape=outer_left": "[shape=outer_left",
  1251. "shape=outer_right": "[shape=outer_right"
  1252. },
  1253. "jungle_stairs": {
  1254. "default": "jungle_stairs",
  1255. "facing=north": "[facing=north",
  1256. "facing=east": "[facing=east",
  1257. "facing=south": "[facing=south",
  1258. "facing=west": "[facing=west",
  1259. "half=top": "[half=top",
  1260. "half=bottom": "[half=bottom",
  1261. "shape=straight": "[shape=straight",
  1262. "shape=inner_left": "[shape=inner_left",
  1263. "shape=inner_right": "[shape=inner_right",
  1264. "shape=outer_left": "[shape=outer_left",
  1265. "shape=outer_right": "[shape=outer_right"
  1266. },
  1267. "command_block": {
  1268. "default": "command_block",
  1269. "conditional=true": "[conditional=true",
  1270. "conditional=false": "[conditional=false",
  1271. "facing=north": "[facing=north",
  1272. "facing=east": "[facing=east",
  1273. "facing=south": "[facing=south",
  1274. "facing=west": "[facing=west"
  1275. },
  1276. "beacon": {
  1277. "default": "beacon"
  1278. },
  1279. "cobblestone_wall": {
  1280. "default": "cobblestone_wall",
  1281. "variant=cobblestone": "cobblestone_wall",
  1282. "variant=mossy_cobblestone": "mossy_cobblestone_wall",
  1283. "east=true": "[east=true",
  1284. "east=false": "[east=false",
  1285. "north=true": "[north=true",
  1286. "north=false": "[north=false",
  1287. "south=true": "[south=true",
  1288. "south=false": "[south=false",
  1289. "up=true": "[up=true",
  1290. "up=false": "[up=false",
  1291. "west=true": "[west=true",
  1292. "west=false": "[west=false"
  1293. },
  1294. "flower_pot": {
  1295. "default": "flower_pot",
  1296. "contents=oak_sapling": ">potted_oak_sapling",
  1297. "contents=spruce_sapling": ">potted_spruce_sapling",
  1298. "contents=birch_sapling": ">potted_birch_sapling",
  1299. "contents=jungle_sapling": ">potted_jungle_sapling",
  1300. "contents=acacia_sapling": ">potted_acacia_sapling",
  1301. "contents=dark_oak_sapling": ">potted_dark_oak_sapling",
  1302. "contents=fern": ">potted_fern",
  1303. "contents=dandelion": ">potted_dandelion",
  1304. "contents=poppy": ">potted_poppy",
  1305. "contents=blue_orchid": ">potted_blue_orchid",
  1306. "contents=allium": ">potted_allium",
  1307. "contents=houstonia": ">potted_azure_bluet",
  1308. "contents=red_tulip": ">potted_red_tulip",
  1309. "contents=orange_tulip": ">potted_orange_tulip",
  1310. "contents=white_tulip": ">potted_white_tulip",
  1311. "contents=pink_tulip": ">potted_pink_tulip",
  1312. "contents=oxeye_daisy": ">potted_oxeye_daisy",
  1313. "contents=mushroom_red": ">potted_red_mushroom",
  1314. "contents=mushroom_brown": ">potted_brown_mushroom",
  1315. "contents=dead_bush": ">potted_dead_bush",
  1316. "contents=cactus": ">potted_cactus",
  1317. "legacy_data=0": "flower_pot",
  1318. "legacy_data=1": "potted_poppy",
  1319. "legacy_data=2": "potted_dandelion",
  1320. "legacy_data=3": "potted_oak_sapling",
  1321. "legacy_data=4": "potted_spruce_sapling",
  1322. "legacy_data=5": "potted_birch_sapling",
  1323. "legacy_data=6": "potted_jungle_sapling",
  1324. "legacy_data=7": "potted_red_mushroom",
  1325. "legacy_data=8": "potted_brown_mushroom",
  1326. "legacy_data=9": "potted_cactus",
  1327. "legacy_data=10": "potted_dead_bush",
  1328. "legacy_data=11": "potted_fern",
  1329. "legacy_data=12": "potted_acacia_sapling",
  1330. "legacy_data=13": "potted_dark_oak_sapling",
  1331. "legacy_data=14": "flower_pot",
  1332. "legacy_data=15": "flower_pot"
  1333. },
  1334. "carrots": {
  1335. "default": "carrots",
  1336. "age=0": "[age=0",
  1337. "age=1": "[age=1",
  1338. "age=2": "[age=2",
  1339. "age=3": "[age=3",
  1340. "age=4": "[age=4",
  1341. "age=5": "[age=5",
  1342. "age=6": "[age=6",
  1343. "age=7": "[age=7"
  1344. },
  1345. "potatoes": {
  1346. "default": "potatoes",
  1347. "age=0": "[age=0",
  1348. "age=1": "[age=1",
  1349. "age=2": "[age=2",
  1350. "age=3": "[age=3",
  1351. "age=4": "[age=4",
  1352. "age=5": "[age=5",
  1353. "age=6": "[age=6",
  1354. "age=7": "[age=7"
  1355. },
  1356. "wooden_button": {
  1357. "default": "oak_button",
  1358. "facing=down": "[face=ceiling,facing=south",
  1359. "facing=up": "[face=floor,facing=north",
  1360. "facing=east": "[face=wall,facing=east",
  1361. "facing=west": "[face=wall,facing=west",
  1362. "facing=south": "[face=wall,facing=south",
  1363. "facing=north": "[face=wall,facing=north",
  1364. "powered=false": "[powered=false",
  1365. "powered=true": "[powered=true"
  1366. },
  1367. "skull": {
  1368. "default": "skeleton_wall_skull",
  1369. "facing=down,{SkullType:0": "skeleton_skull",
  1370. "facing=up,{SkullType:0": "skeleton_skull",
  1371. "facing=north,{SkullType:0": "skeleton_wall_skull[facing=north]",
  1372. "facing=south,{SkullType:0": "skeleton_wall_skull[facing=south]",
  1373. "facing=west,{SkullType:0": "skeleton_wall_skull[facing=west]",
  1374. "facing=east,{SkullType:0": "skeleton_wall_skull[facing=east]",
  1375. "facing=down,{SkullType:1": "wither_skeleton_skull",
  1376. "facing=up,{SkullType:1": "wither_skeleton_skull",
  1377. "facing=north,{SkullType:1": "wither_skeleton_wall_skull[facing=north]",
  1378. "facing=south,{SkullType:1": "wither_skeleton_wall_skull[facing=south]",
  1379. "facing=west,{SkullType:1": "wither_skeleton_wall_skull[facing=west]",
  1380. "facing=east,{SkullType:1": "wither_skeleton_wall_skull[facing=east]",
  1381. "facing=down,{SkullType:2": "zombie_head",
  1382. "facing=up,{SkullType:2": "zombie_head",
  1383. "facing=north,{SkullType:2": "zombie_wall_head[facing=north]",
  1384. "facing=south,{SkullType:2": "zombie_wall_head[facing=south]",
  1385. "facing=west,{SkullType:2": "zombie_wall_head[facing=west]",
  1386. "facing=east,{SkullType:2": "zombie_wall_head[facing=east]",
  1387. "facing=down,{SkullType:3": "player_head",
  1388. "facing=up,{SkullType:3": "player_head",
  1389. "facing=north,{SkullType:3": "player_wall_head[facing=north]",
  1390. "facing=south,{SkullType:3": "player_wall_head[facing=south]",
  1391. "facing=west,{SkullType:3": "player_wall_head[facing=west]",
  1392. "facing=east,{SkullType:3": "player_wall_head[facing=east]",
  1393. "facing=down,{SkullType:4": "creeper_head",
  1394. "facing=up,{SkullType:4": "creeper_head",
  1395. "facing=north,{SkullType:4": "creeper_wall_head[facing=north]",
  1396. "facing=south,{SkullType:4": "creeper_wall_head[facing=south]",
  1397. "facing=west,{SkullType:4": "creeper_wall_head[facing=west]",
  1398. "facing=east,{SkullType:4": "creeper_wall_head[facing=east]",
  1399. "facing=down,{SkullType:5": "dragon_head",
  1400. "facing=up,{SkullType:5": "dragon_head",
  1401. "facing=north,{SkullType:5": "dragon_wall_head[facing=north]",
  1402. "facing=south,{SkullType:5": "dragon_wall_head[facing=south]",
  1403. "facing=west,{SkullType:5": "dragon_wall_head[facing=west]",
  1404. "facing=east,{SkullType:5": "dragon_wall_head[facing=east]",
  1405. "facing=down": "skeleton_skull",
  1406. "facing=up": "skeleton_skull",
  1407. "facing=north": "skeleton_wall_skull[facing=north]",
  1408. "facing=south": "skeleton_wall_skull[facing=south]",
  1409. "facing=west": "skeleton_wall_skull[facing=west]",
  1410. "facing=east": "skeleton_wall_skull[facing=east]",
  1411. "{Rot:0": "[rotation=0",
  1412. "{Rot:1": "[rotation=1",
  1413. "{Rot:2": "[rotation=2",
  1414. "{Rot:3": "[rotation=3",
  1415. "{Rot:4": "[rotation=4",
  1416. "{Rot:5": "[rotation=5",
  1417. "{Rot:6": "[rotation=6",
  1418. "{Rot:7": "[rotation=7",
  1419. "{Rot:8": "[rotation=8",
  1420. "{Rot:9": "[rotation=9",
  1421. "{Rot:10": "[rotation=10",
  1422. "{Rot:11": "[rotation=11",
  1423. "{Rot:12": "[rotation=12",
  1424. "{Rot:13": "[rotation=13",
  1425. "{Rot:14": "[rotation=14",
  1426. "{Rot:15": "[rotation=15",
  1427. "nodrop=true": "-",
  1428. "nodrop=false": "-"
  1429. },
  1430. "anvil": {
  1431. "default": "anvil",
  1432. "facing=north": "[facing=north",
  1433. "facing=east": "[facing=east",
  1434. "facing=south": "[facing=south",
  1435. "facing=west": "[facing=west",
  1436. "damage=0": "anvil",
  1437. "damage=1": "chipped_anvil",
  1438. "damage=2": "damaged_anvil"
  1439. },
  1440. "trapped_chest": {
  1441. "default": "trapped_chest",
  1442. "facing=north": "[facing=north",
  1443. "facing=east": "[facing=east",
  1444. "facing=south": "[facing=south",
  1445. "facing=west": "[facing=west"
  1446. },
  1447. "light_weighted_pressure_plate": {
  1448. "default": "light_weighted_pressure_plate",
  1449. "power=0": "[power=0",
  1450. "power=1": "[power=1",
  1451. "power=2": "[power=2",
  1452. "power=3": "[power=3",
  1453. "power=4": "[power=4",
  1454. "power=5": "[power=5",
  1455. "power=6": "[power=6",
  1456. "power=7": "[power=7",
  1457. "power=8": "[power=8",
  1458. "power=9": "[power=9",
  1459. "power=10": "[power=10",
  1460. "power=11": "[power=11",
  1461. "power=12": "[power=12",
  1462. "power=13": "[power=13",
  1463. "power=14": "[power=14",
  1464. "power=15": "[power=15"
  1465. },
  1466. "heavy_weighted_pressure_plate": {
  1467. "default": "heavy_weighted_pressure_plate",
  1468. "power=0": "[power=0",
  1469. "power=1": "[power=1",
  1470. "power=2": "[power=2",
  1471. "power=3": "[power=3",
  1472. "power=4": "[power=4",
  1473. "power=5": "[power=5",
  1474. "power=6": "[power=6",
  1475. "power=7": "[power=7",
  1476. "power=8": "[power=8",
  1477. "power=9": "[power=9",
  1478. "power=10": "[power=10",
  1479. "power=11": "[power=11",
  1480. "power=12": "[power=12",
  1481. "power=13": "[power=13",
  1482. "power=14": "[power=14",
  1483. "power=15": "[power=15"
  1484. },
  1485. "unpowered_comparator": {
  1486. "default": "comparator",
  1487. "facing=north": "[facing=north",
  1488. "facing=east": "[facing=east",
  1489. "facing=south": "[facing=south",
  1490. "facing=west": "[facing=west",
  1491. "mode=compare": "[mode=compare",
  1492. "mode=subtract": "[mode=subtract",
  1493. "powered=false": "[powered=false",
  1494. "powered=true": "[powered=true"
  1495. },
  1496. "powered_comparator": {
  1497. "default": "comparator",
  1498. "facing=north": "[facing=south",
  1499. "facing=east": "[facing=west",
  1500. "facing=south": "[facing=north",
  1501. "facing=west": "[facing=east",
  1502. "mode=compare": "[mode=compare",
  1503. "mode=subtract": "[mode=subtract",
  1504. "powered=false": "[powered=false",
  1505. "powered=true": "[powered=true"
  1506. },
  1507. "daylight_detector": {
  1508. "default": "daylight_detector",
  1509. "power=0": "[power=0",
  1510. "power=1": "[power=1",
  1511. "power=2": "[power=2",
  1512. "power=3": "[power=3",
  1513. "power=4": "[power=4",
  1514. "power=5": "[power=5",
  1515. "power=6": "[power=6",
  1516. "power=7": "[power=7",
  1517. "power=8": "[power=8",
  1518. "power=9": "[power=9",
  1519. "power=10": "[power=10",
  1520. "power=11": "[power=11",
  1521. "power=12": "[power=12",
  1522. "power=13": "[power=13",
  1523. "power=14": "[power=14",
  1524. "power=15": "[power=15"
  1525. },
  1526. "redstone_block": {
  1527. "default": "redstone_block"
  1528. },
  1529. "quartz_ore": {
  1530. "default": "nether_quartz_ore"
  1531. },
  1532. "hopper": {
  1533. "default": "hopper",
  1534. "enabled=true": "[enabled=true",
  1535. "enabled=false": "[enabled=false",
  1536. "facing=down": "[facing=down",
  1537. "facing=north": "[facing=north",
  1538. "facing=east": "[facing=east",
  1539. "facing=south": "[facing=south",
  1540. "facing=west": "[facing=west",
  1541. },
  1542. "quartz_block": {
  1543. "default": "quartz_block",
  1544. "variant=default": "quartz_block",
  1545. "variant=chiseled": "chiseled_quartz_block",
  1546. "variant=lines_y": "quartz_pillar[axis=y]",
  1547. "variant=lines_x": "quartz_pillar[axis=x]",
  1548. "variant=lines_z": "quartz_pillar[axis=z]"
  1549. },
  1550. "quartz_stairs": {
  1551. "default": "quartz_stairs",
  1552. "facing=north": "[facing=north",
  1553. "facing=east": "[facing=east",
  1554. "facing=south": "[facing=south",
  1555. "facing=west": "[facing=west",
  1556. "half=top": "[half=top",
  1557. "half=bottom": "[half=bottom",
  1558. "shape=straight": "[shape=straight",
  1559. "shape=inner_left": "[shape=inner_left",
  1560. "shape=inner_right": "[shape=inner_right",
  1561. "shape=outer_left": "[shape=outer_left",
  1562. "shape=outer_right": "[shape=outer_right"
  1563. },
  1564. "activator_rail": {
  1565. "default": "activator_rail",
  1566. "shape=north_south": "[shape=north_south",
  1567. "shape=east_west": "[shape=east_west",
  1568. "shape=ascending_east": "[shape=ascending_east",
  1569. "shape=ascending_west": "[shape=ascending_west",
  1570. "shape=ascending_north": "[shape=ascending_north",
  1571. "shape=ascending_south": "[shape=ascending_south",
  1572. "shape=south_east": "[shape=south_east",
  1573. "shape=south_west": "[shape=south_west",
  1574. "shape=north_west": "[shape=north_west",
  1575. "shape=north_east": "[shape=north_east"
  1576. },
  1577. "dropper": {
  1578. "default": "dropper",
  1579. "facing=north": "[facing=north",
  1580. "facing=east": "[facing=east",
  1581. "facing=south": "[facing=south",
  1582. "facing=west": "[facing=west",
  1583. "facing=up": "[facing=up",
  1584. "facing=down": "[facing=down",
  1585. "triggered=true": "[triggered=true",
  1586. "triggered=false": "[triggered=false"
  1587. },
  1588. "stained_hardened_clay": {
  1589. "default": "white_terracotta",
  1590. "color=white": "white_terracotta",
  1591. "color=orange": "orange_terracotta",
  1592. "color=magenta": "magenta_terracotta",
  1593. "color=light_blue": "light_blue_terracotta",
  1594. "color=yellow": "yellow_terracotta",
  1595. "color=lime": "lime_terracotta",
  1596. "color=pink": "pink_terracotta",
  1597. "color=gray": "gray_terracotta",
  1598. "color=silver": "light_gray_terracotta",
  1599. "color=cyan": "cyan_terracotta",
  1600. "color=purple": "purple_terracotta",
  1601. "color=blue": "blue_terracotta",
  1602. "color=brown": "brown_terracotta",
  1603. "color=green": "green_terracotta",
  1604. "color=red": "red_terracotta",
  1605. "color=black": "black_terracotta"
  1606. },
  1607. "stained_glass_pane": {
  1608. "default": "white_stained_glass_pane",
  1609. "color=white": "white_stained_glass_pane",
  1610. "color=orange": "orange_stained_glass_pane",
  1611. "color=magenta": "magenta_stained_glass_pane",
  1612. "color=light_blue": "light_blue_stained_glass_pane",
  1613. "color=yellow": "yellow_stained_glass_pane",
  1614. "color=lime": "lime_stained_glass_pane",
  1615. "color=pink": "pink_stained_glass_pane",
  1616. "color=gray": "gray_stained_glass_pane",
  1617. "color=silver": "light_gray_stained_glass_pane",
  1618. "color=cyan": "cyan_stained_glass_pane",
  1619. "color=purple": "purple_stained_glass_pane",
  1620. "color=blue": "blue_stained_glass_pane",
  1621. "color=brown": "brown_stained_glass_pane",
  1622. "color=green": "green_stained_glass_pane",
  1623. "color=red": "red_stained_glass_pane",
  1624. "color=black": "black_stained_glass_pane",
  1625. "north=true": "[north=true",
  1626. "north=false": "[north=false",
  1627. "east=true": "[east=true",
  1628. "east=false": "[east=false",
  1629. "south=true": "[south=true",
  1630. "south=false": "[south=false",
  1631. "west=true": "[west=true",
  1632. "west=false": "[west=false"
  1633. },
  1634. "leaves2": {
  1635. "default": "acacia_leaves",
  1636. "variant=acacia": "acacia_leaves",
  1637. "variant=dark_oak": "dark_oak_leaves",
  1638. "check_decay=true": "[check_decay=true",
  1639. "check_decay=false": "[check_decay=false",
  1640. "decayable=true": "[decayable=true",
  1641. "decayable=false": "[decayable=false"
  1642. },
  1643. "log2": {
  1644. "default": "acacia_log",
  1645. "variant=acacia,axis=none": "acacia_bark",
  1646. "variant=dark_oak,axis=none": "dark_oak_bark",
  1647. "variant=acacia": "acacia_log",
  1648. "variant=dark_oak": "dark_oak_log",
  1649. "axis=x": "[axis=x",
  1650. "axis=y": "[axis=y",
  1651. "axis=z": "[axis=z",
  1652. "axis=none": "acacia_bark"
  1653. },
  1654. "acacia_stairs": {
  1655. "default": "acacia_stairs",
  1656. "facing=north": "[facing=north",
  1657. "facing=east": "[facing=east",
  1658. "facing=south": "[facing=south",
  1659. "facing=west": "[facing=west",
  1660. "half=top": "[half=top",
  1661. "half=bottom": "[half=bottom",
  1662. "shape=straight": "[shape=straight",
  1663. "shape=inner_left": "[shape=inner_left",
  1664. "shape=inner_right": "[shape=inner_right",
  1665. "shape=outer_left": "[shape=outer_left",
  1666. "shape=outer_right": "[shape=outer_right"
  1667. },
  1668. "dark_oak_stairs": {
  1669. "default": "dark_oak_stairs",
  1670. "facing=north": "[facing=north",
  1671. "facing=east": "[facing=east",
  1672. "facing=south": "[facing=south",
  1673. "facing=west": "[facing=west",
  1674. "half=top": "[half=top",
  1675. "half=bottom": "[half=bottom",
  1676. "shape=straight": "[shape=straight",
  1677. "shape=inner_left": "[shape=inner_left",
  1678. "shape=inner_right": "[shape=inner_right",
  1679. "shape=outer_left": "[shape=outer_left",
  1680. "shape=outer_right": "[shape=outer_right"
  1681. },
  1682. "slime": {
  1683. "default": "slime_block"
  1684. },
  1685. "barrier": {
  1686. "default": "barrier"
  1687. },
  1688. "iron_trapdoor": {
  1689. "default": "iron_trapdoor",
  1690. "facing=north": "[facing=north",
  1691. "facing=east": "[facing=east",
  1692. "facing=south": "[facing=south",
  1693. "facing=west": "[facing=west",
  1694. "half=top": "[half=top",
  1695. "half=bottom": "[half=bottom",
  1696. "open=true": "[open=true",
  1697. "open=false": "[open=false"
  1698. },
  1699. "prismarine": {
  1700. "default": "prismarine",
  1701. "variant=prismarine": "prismarine",
  1702. "variant=prismarine_bricks": "prismarine_bricks",
  1703. "variant=dark_prismarine": "dark_prismarine"
  1704. },
  1705. "sea_lantern": {
  1706. "default": "sea_lantern"
  1707. },
  1708. "hay_block": {
  1709. "default": "hay_block",
  1710. "axis=y": "[axis=y",
  1711. "axis=x": "[axis=x",
  1712. "axis=z": "[axis=z"
  1713. },
  1714. "carpet": {
  1715. "default": "white_carpet",
  1716. "color=white": "white_carpet",
  1717. "color=orange": "orange_carpet",
  1718. "color=magenta": "magenta_carpet",
  1719. "color=light_blue": "light_blue_carpet",
  1720. "color=yellow": "yellow_carpet",
  1721. "color=lime": "lime_carpet",
  1722. "color=pink": "pink_carpet",
  1723. "color=gray": "gray_carpet",
  1724. "color=silver": "light_gray_carpet",
  1725. "color=cyan": "cyan_carpet",
  1726. "color=purple": "purple_carpet",
  1727. "color=blue": "blue_carpet",
  1728. "color=brown": "brown_carpet",
  1729. "color=green": "green_carpet",
  1730. "color=red": "red_carpet",
  1731. "color=black": "black_carpet"
  1732. },
  1733. "hardened_clay": {
  1734. "default": "terracotta"
  1735. },
  1736. "coal_block": {
  1737. "default": "coal_block"
  1738. },
  1739. "packed_ice": {
  1740. "default": "packed_ice"
  1741. },
  1742. "double_plant": {
  1743. "default": "sunflower[half=lower]",
  1744. "variant=sunflower": "sunflower",
  1745. "variant=syringa": "lilac",
  1746. "variant=double_grass": "tall_grass",
  1747. "variant=double_fern": "large_fern",
  1748. "variant=double_rose": "rose_bush",
  1749. "variant=paeonia": "peony",
  1750. "half=upper": "[half=upper",
  1751. "half=lower": "[half=lower",
  1752. "facing=north": "-",
  1753. "facing=east": "-",
  1754. "facing=south": "-",
  1755. "facing=west": "-"
  1756. },
  1757. "standing_banner": {
  1758. "default": "black_banner",
  1759. "{Base:0": "black_banner",
  1760. "{Base:1": "red_banner",
  1761. "{Base:2": "green_banner",
  1762. "{Base:3": "brown_banner",
  1763. "{Base:4": "blue_banner",
  1764. "{Base:5": "purple_banner",
  1765. "{Base:6": "cyan_banner",
  1766. "{Base:7": "light_gray_banner",
  1767. "{Base:8": "gray_banner",
  1768. "{Base:9": "pink_banner",
  1769. "{Base:10": "lime_banner",
  1770. "{Base:11": "yellow_banner",
  1771. "{Base:12": "light_blue_banner",
  1772. "{Base:13": "magenta_banner",
  1773. "{Base:14": "orange_banner",
  1774. "{Base:15": "white_banner",
  1775. "rotation=0": "[rotation=0",
  1776. "rotation=1": "[rotation=1",
  1777. "rotation=2": "[rotation=2",
  1778. "rotation=3": "[rotation=3",
  1779. "rotation=4": "[rotation=4",
  1780. "rotation=5": "[rotation=5",
  1781. "rotation=6": "[rotation=6",
  1782. "rotation=7": "[rotation=7",
  1783. "rotation=8": "[rotation=8",
  1784. "rotation=9": "[rotation=9",
  1785. "rotation=10": "[rotation=10",
  1786. "rotation=11": "[rotation=11",
  1787. "rotation=12": "[rotation=12",
  1788. "rotation=13": "[rotation=13",
  1789. "rotation=14": "[rotation=14",
  1790. "rotation=15": "[rotation=15"
  1791. },
  1792. "wall_banner": {
  1793. "default": "black_wall_banner",
  1794. "{Base:0": "black_wall_banner",
  1795. "{Base:1": "red_wall_banner",
  1796. "{Base:2": "green_wall_banner",
  1797. "{Base:3": "brown_wall_banner",
  1798. "{Base:4": "blue_wall_banner",
  1799. "{Base:5": "purple_wall_banner",
  1800. "{Base:6": "cyan_wall_banner",
  1801. "{Base:7": "light_gray_wall_banner",
  1802. "{Base:8": "gray_wall_banner",
  1803. "{Base:9": "pink_wall_banner",
  1804. "{Base:10": "lime_wall_banner",
  1805. "{Base:11": "yellow_wall_banner",
  1806. "{Base:12": "light_blue_wall_banner",
  1807. "{Base:13": "magenta_wall_banner",
  1808. "{Base:14": "orange_wall_banner",
  1809. "{Base:15": "white_wall_banner",
  1810. "rotation=0": "[rotation=0",
  1811. "rotation=1": "[rotation=1",
  1812. "rotation=2": "[rotation=2",
  1813. "rotation=3": "[rotation=3",
  1814. "rotation=4": "[rotation=4",
  1815. "rotation=5": "[rotation=5",
  1816. "rotation=6": "[rotation=6",
  1817. "rotation=7": "[rotation=7",
  1818. "rotation=8": "[rotation=8",
  1819. "rotation=9": "[rotation=9",
  1820. "rotation=10": "[rotation=10",
  1821. "rotation=11": "[rotation=11",
  1822. "rotation=12": "[rotation=12",
  1823. "rotation=13": "[rotation=13",
  1824. "rotation=14": "[rotation=14",
  1825. "rotation=15": "[rotation=15"
  1826. },
  1827. "daylight_detector_inverted": {
  1828. "default": "daylight_detector[inverted=true]",
  1829. "power=0": "[power=0",
  1830. "power=1": "[power=1",
  1831. "power=2": "[power=2",
  1832. "power=3": "[power=3",
  1833. "power=4": "[power=4",
  1834. "power=5": "[power=5",
  1835. "power=6": "[power=6",
  1836. "power=7": "[power=7",
  1837. "power=8": "[power=8",
  1838. "power=9": "[power=9",
  1839. "power=10": "[power=10",
  1840. "power=11": "[power=11",
  1841. "power=12": "[power=12",
  1842. "power=13": "[power=13",
  1843. "power=14": "[power=14",
  1844. "power=15": "[power=15"
  1845. },
  1846. "red_sandstone": {
  1847. "default": "red_sandstone",
  1848. "type=red_sandstone": "red_sandstone",
  1849. "type=chiseled_red_sandstone": "chiseled_red_sandstone",
  1850. "type=smooth_red_sandstone": "cut_red_sandstone"
  1851. },
  1852. "red_sandstone_stairs": {
  1853. "default": "red_sandstone_stairs",
  1854. "facing=north": "[facing=north",
  1855. "facing=east": "[facing=east",
  1856. "facing=south": "[facing=south",
  1857. "facing=west": "[facing=west",
  1858. "half=top": "[half=top",
  1859. "half=bottom": "[half=bottom",
  1860. "shape=straight": "[shape=straight",
  1861. "shape=inner_left": "[shape=inner_left",
  1862. "shape=inner_right": "[shape=inner_right",
  1863. "shape=outer_left": "[shape=outer_left",
  1864. "shape=outer_right": "[shape=outer_right"
  1865. },
  1866. "double_stone_slab2": {
  1867. "default": "red_sandstone_slab[type=double]",
  1868. "seamless=true,variant=red_sandstone": "smooth_red_sandstone",
  1869. "variant=red_sandstone": ">red_sandstone_slab[type=double]",
  1870. "seamless=false": "red_sandstone_slab[type=double]",
  1871. "seamless=true": "smooth_red_sandstone"
  1872. },
  1873. "stone_slab2": {
  1874. "default": "red_sandstone_slab",
  1875. "variant=red_sandstone": "red_sandstone_slab",
  1876. "half=top": "[type=top",
  1877. "half=bottom": "[type=bottom"
  1878. },
  1879. "spruce_fence_gate": {
  1880. "default": "spruce_fence_gate",
  1881. "facing=north": "[facing=north",
  1882. "facing=east": "[facing=east",
  1883. "facing=south": "[facing=south",
  1884. "facing=west": "[facing=west",
  1885. "in_wall=true": "[in_wall=true",
  1886. "in_wall=false": "[in_wall=false",
  1887. "open=true": "[open=true",
  1888. "open=false": "[open=false",
  1889. "powered=true": "[powered=true",
  1890. "powered=false": "[powered=false"
  1891. },
  1892. "birch_fence_gate": {
  1893. "default": "birch_fence_gate",
  1894. "facing=north": "[facing=north",
  1895. "facing=east": "[facing=east",
  1896. "facing=south": "[facing=south",
  1897. "facing=west": "[facing=west",
  1898. "in_wall=true": "[in_wall=true",
  1899. "in_wall=false": "[in_wall=false",
  1900. "open=true": "[open=true",
  1901. "open=false": "[open=false",
  1902. "powered=true": "[powered=true",
  1903. "powered=false": "[powered=false"
  1904. },
  1905. "jungle_fence_gate": {
  1906. "default": "jungle_fence_gate",
  1907. "facing=north": "[facing=north",
  1908. "facing=east": "[facing=east",
  1909. "facing=south": "[facing=south",
  1910. "facing=west": "[facing=west",
  1911. "in_wall=true": "[in_wall=true",
  1912. "in_wall=false": "[in_wall=false",
  1913. "open=true": "[open=true",
  1914. "open=false": "[open=false",
  1915. "powered=true": "[powered=true",
  1916. "powered=false": "[powered=false"
  1917. },
  1918. "dark_oak_fence_gate": {
  1919. "default": "dark_oak_fence_gate",
  1920. "facing=north": "[facing=north",
  1921. "facing=east": "[facing=east",
  1922. "facing=south": "[facing=south",
  1923. "facing=west": "[facing=west",
  1924. "in_wall=true": "[in_wall=true",
  1925. "in_wall=false": "[in_wall=false",
  1926. "open=true": "[open=true",
  1927. "open=false": "[open=false",
  1928. "powered=true": "[powered=true",
  1929. "powered=false": "[powered=false"
  1930. },
  1931. "acacia_fence_gate": {
  1932. "default": "acacia_fence_gate",
  1933. "facing=north": "[facing=north",
  1934. "facing=east": "[facing=east",
  1935. "facing=south": "[facing=south",
  1936. "facing=west": "[facing=west",
  1937. "in_wall=true": "[in_wall=true",
  1938. "in_wall=false": "[in_wall=false",
  1939. "open=true": "[open=true",
  1940. "open=false": "[open=false",
  1941. "powered=true": "[powered=true",
  1942. "powered=false": "[powered=false"
  1943. },
  1944. "spruce_fence": {
  1945. "default": "spruce_fence",
  1946. "east=true": "[east=true",
  1947. "east=false": "[east=false",
  1948. "north=true": "[north=true",
  1949. "north=false": "[north=false",
  1950. "south=true": "[south=true",
  1951. "south=false": "[south=false",
  1952. "west=true": "[west=true",
  1953. "west=false": "[west=false"
  1954. },
  1955. "birch_fence": {
  1956. "default": "birch_fence",
  1957. "east=true": "[east=true",
  1958. "east=false": "[east=false",
  1959. "north=true": "[north=true",
  1960. "north=false": "[north=false",
  1961. "south=true": "[south=true",
  1962. "south=false": "[south=false",
  1963. "west=true": "[west=true",
  1964. "west=false": "[west=false"
  1965. },
  1966. "jungle_fence": {
  1967. "default": "jungle_fence",
  1968. "east=true": "[east=true",
  1969. "east=false": "[east=false",
  1970. "north=true": "[north=true",
  1971. "north=false": "[north=false",
  1972. "south=true": "[south=true",
  1973. "south=false": "[south=false",
  1974. "west=true": "[west=true",
  1975. "west=false": "[west=false"
  1976. },
  1977. "dark_oak_fence": {
  1978. "default": "dark_oak_fence",
  1979. "east=true": "[east=true",
  1980. "east=false": "[east=false",
  1981. "north=true": "[north=true",
  1982. "north=false": "[north=false",
  1983. "south=true": "[south=true",
  1984. "south=false": "[south=false",
  1985. "west=true": "[west=true",
  1986. "west=false": "[west=false"
  1987. },
  1988. "acacia_fence": {
  1989. "default": "acacia_fence",
  1990. "east=true": "[east=true",
  1991. "east=false": "[east=false",
  1992. "north=true": "[north=true",
  1993. "north=false": "[north=false",
  1994. "south=true": "[south=true",
  1995. "south=false": "[south=false",
  1996. "west=true": "[west=true",
  1997. "west=false": "[west=false"
  1998. },
  1999. "spruce_door": {
  2000. "default": "spruce_door",
  2001. "facing=north": "[facing=north",
  2002. "facing=east": "[facing=east",
  2003. "facing=south": "[facing=south",
  2004. "facing=west": "[facing=west",
  2005. "half=upper": "[half=upper",
  2006. "half=lower": "[half=lower",
  2007. "hinge=left": "[hinge=left",
  2008. "hinge=right": "[hinge=right",
  2009. "open=false": "[open=false",
  2010. "open=true": "[open=true",
  2011. "powered=false": "[powered=false",
  2012. "powered=true": "[powered=true"
  2013. },
  2014. "birch_door": {
  2015. "default": "birch_door",
  2016. "facing=north": "[facing=north",
  2017. "facing=east": "[facing=east",
  2018. "facing=south": "[facing=south",
  2019. "facing=west": "[facing=west",
  2020. "half=upper": "[half=upper",
  2021. "half=lower": "[half=lower",
  2022. "hinge=left": "[hinge=left",
  2023. "hinge=right": "[hinge=right",
  2024. "open=false": "[open=false",
  2025. "open=true": "[open=true",
  2026. "powered=false": "[powered=false",
  2027. "powered=true": "[powered=true"
  2028. },
  2029. "jungle_door": {
  2030. "default": "jungle_door",
  2031. "facing=north": "[facing=north",
  2032. "facing=east": "[facing=east",
  2033. "facing=south": "[facing=south",
  2034. "facing=west": "[facing=west",
  2035. "half=upper": "[half=upper",
  2036. "half=lower": "[half=lower",
  2037. "hinge=left": "[hinge=left",
  2038. "hinge=right": "[hinge=right",
  2039. "open=false": "[open=false",
  2040. "open=true": "[open=true",
  2041. "powered=false": "[powered=false",
  2042. "powered=true": "[powered=true"
  2043. },
  2044. "acacia_door": {
  2045. "default": "acacia_door",
  2046. "facing=north": "[facing=north",
  2047. "facing=east": "[facing=east",
  2048. "facing=south": "[facing=south",
  2049. "facing=west": "[facing=west",
  2050. "half=upper": "[half=upper",
  2051. "half=lower": "[half=lower",
  2052. "hinge=left": "[hinge=left",
  2053. "hinge=right": "[hinge=right",
  2054. "open=false": "[open=false",
  2055. "open=true": "[open=true",
  2056. "powered=false": "[powered=false",
  2057. "powered=true": "[powered=true"
  2058. },
  2059. "dark_oak_door": {
  2060. "default": "dark_oak_door",
  2061. "facing=north": "[facing=north",
  2062. "facing=east": "[facing=east",
  2063. "facing=south": "[facing=south",
  2064. "facing=west": "[facing=west",
  2065. "half=upper": "[half=upper",
  2066. "half=lower": "[half=lower",
  2067. "hinge=left": "[hinge=left",
  2068. "hinge=right": "[hinge=right",
  2069. "open=false": "[open=false",
  2070. "open=true": "[open=true",
  2071. "powered=false": "[powered=false",
  2072. "powered=true": "[powered=true"
  2073. },
  2074. "end_rod": {
  2075. "default": "end_rod",
  2076. "facing=north": "[facing=north",
  2077. "facing=east": "[facing=east",
  2078. "facing=south": "[facing=south",
  2079. "facing=west": "[facing=west",
  2080. "facing=up": "[facing=up",
  2081. "facing=down": "[facing=down"
  2082. },
  2083. "chorus_plant": {
  2084. "default": "chorus_plant",
  2085. "down=true": "[down=true",
  2086. "down=false": "[down=false",
  2087. "east=true": "[east=true",
  2088. "east=false": "[east=false",
  2089. "north=true": "[north=true",
  2090. "north=false": "[north=false",
  2091. "south=true": "[south=true",
  2092. "south=false": "[south=false",
  2093. "up=true": "[up=true",
  2094. "up=false": "[up=false",
  2095. "west=true": "[west=true",
  2096. "west=false": "[west=false"
  2097. },
  2098. "chorus_flower": {
  2099. "default": "chorus_flower",
  2100. "age=0": "[age=0",
  2101. "age=1": "[age=1",
  2102. "age=2": "[age=2",
  2103. "age=3": "[age=3",
  2104. "age=4": "[age=4",
  2105. "age=5": "[age=5"
  2106. },
  2107. "purpur_block": {
  2108. "default": "purpur_block"
  2109. },
  2110. "purpur_pillar": {
  2111. "default": "purpur_pillar",
  2112. "axis=y": "[axis=y",
  2113. "axis=x": "[axis=x",
  2114. "axis=z": "[axis=z"
  2115. },
  2116. "purpur_stairs": {
  2117. "default": "purpur_stairs",
  2118. "facing=north": "[facing=north",
  2119. "facing=east": "[facing=east",
  2120. "facing=south": "[facing=south",
  2121. "facing=west": "[facing=west",
  2122. "half=top": "[half=top",
  2123. "half=bottom": "[half=bottom",
  2124. "shape=straight": "[shape=straight",
  2125. "shape=inner_left": "[shape=inner_left",
  2126. "shape=inner_right": "[shape=inner_right",
  2127. "shape=outer_left": "[shape=outer_left",
  2128. "shape=outer_right": "[shape=outer_right"
  2129. },
  2130. "purpur_double_slab": {
  2131. "default": "purpur_slab[type=double]"
  2132. },
  2133. "purpur_slab": {
  2134. "default": "purpur_slab",
  2135. "variant=default": "purpur_slab",
  2136. "half=top": "[type=top",
  2137. "half=bottom": "[type=bottom"
  2138. },
  2139. "end_bricks": {
  2140. "default": "end_stone_bricks"
  2141. },
  2142. "beetroots": {
  2143. "default": "beetroots",
  2144. "age=0": "[age=0",
  2145. "age=1": "[age=1",
  2146. "age=2": "[age=2",
  2147. "age=3": "[age=3"
  2148. },
  2149. "grass_path": {
  2150. "default": "grass_path"
  2151. },
  2152. "end_gateway": {
  2153. "default": "end_gateway"
  2154. },
  2155. "repeating_command_block": {
  2156. "default": "repeating_command_block",
  2157. "conditional=true": "[conditional=true",
  2158. "conditional=false": "[conditional=false",
  2159. "facing=north": "[facing=north",
  2160. "facing=east": "[facing=east",
  2161. "facing=south": "[facing=south",
  2162. "facing=west": "[facing=west"
  2163. },
  2164. "chain_command_block": {
  2165. "default": "chain_command_block",
  2166. "conditional=true": "[conditional=true",
  2167. "conditional=false": "[conditional=false",
  2168. "facing=north": "[facing=north",
  2169. "facing=east": "[facing=east",
  2170. "facing=south": "[facing=south",
  2171. "facing=west": "[facing=west"
  2172. },
  2173. "frosted_ice": {
  2174. "default": "frosted_ice",
  2175. "age=0": "[age=0",
  2176. "age=1": "[age=1",
  2177. "age=2": "[age=2",
  2178. "age=3": "[age=3"
  2179. },
  2180. "magma": {
  2181. "default": "magma_block"
  2182. },
  2183. "nether_wart_block": {
  2184. "default": "nether_wart_block"
  2185. },
  2186. "red_nether_brick": {
  2187. "default": "red_nether_bricks"
  2188. },
  2189. "bone_block": {
  2190. "default": "bone_block",
  2191. "axis=y": "[axis=y",
  2192. "axis=x": "[axis=x",
  2193. "axis=z": "[axis=z"
  2194. },
  2195. "structure_void": {
  2196. "default": "structure_void"
  2197. },
  2198. "observer": {
  2199. "default": "observer",
  2200. "facing=north": "[facing=north",
  2201. "facing=east": "[facing=east",
  2202. "facing=south": "[facing=south",
  2203. "facing=west": "[facing=west",
  2204. "facing=up": "[facing=up",
  2205. "facing=down": "[facing=down",
  2206. "powered=false": "[powered=false",
  2207. "powered=true": "[powered=true"
  2208. },
  2209. "white_shulker_box": {
  2210. "default": "white_shulker_box",
  2211. "facing=north": "[facing=north",
  2212. "facing=east": "[facing=east",
  2213. "facing=south": "[facing=south",
  2214. "facing=west": "[facing=west",
  2215. "facing=up": "[facing=up",
  2216. "facing=down": "[facing=down"
  2217. },
  2218. "orange_shulker_box": {
  2219. "default": "orange_shulker_box",
  2220. "facing=north": "[facing=north",
  2221. "facing=east": "[facing=east",
  2222. "facing=south": "[facing=south",
  2223. "facing=west": "[facing=west",
  2224. "facing=up": "[facing=up",
  2225. "facing=down": "[facing=down"
  2226. },
  2227. "magenta_shulker_box": {
  2228. "default": "magenta_shulker_box",
  2229. "facing=north": "[facing=north",
  2230. "facing=east": "[facing=east",
  2231. "facing=south": "[facing=south",
  2232. "facing=west": "[facing=west",
  2233. "facing=up": "[facing=up",
  2234. "facing=down": "[facing=down"
  2235. },
  2236. "light_blue_shulker_box": {
  2237. "default": "light_blue_shulker_box",
  2238. "facing=north": "[facing=north",
  2239. "facing=east": "[facing=east",
  2240. "facing=south": "[facing=south",
  2241. "facing=west": "[facing=west",
  2242. "facing=up": "[facing=up",
  2243. "facing=down": "[facing=down"
  2244. },
  2245. "yellow_shulker_box": {
  2246. "default": "yellow_shulker_box",
  2247. "facing=north": "[facing=north",
  2248. "facing=east": "[facing=east",
  2249. "facing=south": "[facing=south",
  2250. "facing=west": "[facing=west",
  2251. "facing=up": "[facing=up",
  2252. "facing=down": "[facing=down"
  2253. },
  2254. "lime_shulker_box": {
  2255. "default": "lime_shulker_box",
  2256. "facing=north": "[facing=north",
  2257. "facing=east": "[facing=east",
  2258. "facing=south": "[facing=south",
  2259. "facing=west": "[facing=west",
  2260. "facing=up": "[facing=up",
  2261. "facing=down": "[facing=down"
  2262. },
  2263. "pink_shulker_box": {
  2264. "default": "pink_shulker_box",
  2265. "facing=north": "[facing=north",
  2266. "facing=east": "[facing=east",
  2267. "facing=south": "[facing=south",
  2268. "facing=west": "[facing=west",
  2269. "facing=up": "[facing=up",
  2270. "facing=down": "[facing=down"
  2271. },
  2272. "gray_shulker_box": {
  2273. "default": "gray_shulker_box",
  2274. "facing=north": "[facing=north",
  2275. "facing=east": "[facing=east",
  2276. "facing=south": "[facing=south",
  2277. "facing=west": "[facing=west",
  2278. "facing=up": "[facing=up",
  2279. "facing=down": "[facing=down"
  2280. },
  2281. "silver_shulker_box": {
  2282. "default": "light_gray_shulker_box",
  2283. "facing=north": "[facing=north",
  2284. "facing=east": "[facing=east",
  2285. "facing=south": "[facing=south",
  2286. "facing=west": "[facing=west",
  2287. "facing=up": "[facing=up",
  2288. "facing=down": "[facing=down"
  2289. },
  2290. "cyan_shulker_box": {
  2291. "default": "cyan_shulker_box",
  2292. "facing=north": "[facing=north",
  2293. "facing=east": "[facing=east",
  2294. "facing=south": "[facing=south",
  2295. "facing=west": "[facing=west",
  2296. "facing=up": "[facing=up",
  2297. "facing=down": "[facing=down"
  2298. },
  2299. "purple_shulker_box": {
  2300. "default": "purple_shulker_box",
  2301. "facing=north": "[facing=north",
  2302. "facing=east": "[facing=east",
  2303. "facing=south": "[facing=south",
  2304. "facing=west": "[facing=west",
  2305. "facing=up": "[facing=up",
  2306. "facing=down": "[facing=down"
  2307. },
  2308. "blue_shulker_box": {
  2309. "default": "blue_shulker_box",
  2310. "facing=north": "[facing=north",
  2311. "facing=east": "[facing=east",
  2312. "facing=south": "[facing=south",
  2313. "facing=west": "[facing=west",
  2314. "facing=up": "[facing=up",
  2315. "facing=down": "[facing=down"
  2316. },
  2317. "brown_shulker_box": {
  2318. "default": "brown_shulker_box",
  2319. "facing=north": "[facing=north",
  2320. "facing=east": "[facing=east",
  2321. "facing=south": "[facing=south",
  2322. "facing=west": "[facing=west",
  2323. "facing=up": "[facing=up",
  2324. "facing=down": "[facing=down"
  2325. },
  2326. "green_shulker_box": {
  2327. "default": "green_shulker_box",
  2328. "facing=north": "[facing=north",
  2329. "facing=east": "[facing=east",
  2330. "facing=south": "[facing=south",
  2331. "facing=west": "[facing=west",
  2332. "facing=up": "[facing=up",
  2333. "facing=down": "[facing=down"
  2334. },
  2335. "red_shulker_box": {
  2336. "default": "red_shulker_box",
  2337. "facing=north": "[facing=north",
  2338. "facing=east": "[facing=east",
  2339. "facing=south": "[facing=south",
  2340. "facing=west": "[facing=west",
  2341. "facing=up": "[facing=up",
  2342. "facing=down": "[facing=down"
  2343. },
  2344. "black_shulker_box": {
  2345. "default": "black_shulker_box",
  2346. "facing=north": "[facing=north",
  2347. "facing=east": "[facing=east",
  2348. "facing=south": "[facing=south",
  2349. "facing=west": "[facing=west",
  2350. "facing=up": "[facing=up",
  2351. "facing=down": "[facing=down"
  2352. },
  2353. "white_glazed_terracotta": {
  2354. "default": "white_glazed_terracotta",
  2355. "facing=north": "[facing=north",
  2356. "facing=east": "[facing=east",
  2357. "facing=south": "[facing=south",
  2358. "facing=west": "[facing=west"
  2359. },
  2360. "orange_glazed_terracotta": {
  2361. "default": "orange_glazed_terracotta",
  2362. "facing=north": "[facing=north",
  2363. "facing=east": "[facing=east",
  2364. "facing=south": "[facing=south",
  2365. "facing=west": "[facing=west"
  2366. },
  2367. "magenta_glazed_terracotta": {
  2368. "default": "magenta_glazed_terracotta",
  2369. "facing=north": "[facing=north",
  2370. "facing=east": "[facing=east",
  2371. "facing=south": "[facing=south",
  2372. "facing=west": "[facing=west"
  2373. },
  2374. "light_blue_glazed_terracotta": {
  2375. "default": "light_blue_glazed_terracotta",
  2376. "facing=north": "[facing=north",
  2377. "facing=east": "[facing=east",
  2378. "facing=south": "[facing=south",
  2379. "facing=west": "[facing=west"
  2380. },
  2381. "yellow_glazed_terracotta": {
  2382. "default": "yellow_glazed_terracotta",
  2383. "facing=north": "[facing=north",
  2384. "facing=east": "[facing=east",
  2385. "facing=south": "[facing=south",
  2386. "facing=west": "[facing=west"
  2387. },
  2388. "lime_glazed_terracotta": {
  2389. "default": "lime_glazed_terracotta",
  2390. "facing=north": "[facing=north",
  2391. "facing=east": "[facing=east",
  2392. "facing=south": "[facing=south",
  2393. "facing=west": "[facing=west"
  2394. },
  2395. "pink_glazed_terracotta": {
  2396. "default": "pink_glazed_terracotta",
  2397. "facing=north": "[facing=north",
  2398. "facing=east": "[facing=east",
  2399. "facing=south": "[facing=south",
  2400. "facing=west": "[facing=west"
  2401. },
  2402. "gray_glazed_terracotta": {
  2403. "default": "gray_glazed_terracotta",
  2404. "facing=north": "[facing=north",
  2405. "facing=east": "[facing=east",
  2406. "facing=south": "[facing=south",
  2407. "facing=west": "[facing=west"
  2408. },
  2409. "silver_glazed_terracotta": {
  2410. "default": "light_gray_glazed_terracotta",
  2411. "facing=north": "[facing=north",
  2412. "facing=east": "[facing=east",
  2413. "facing=south": "[facing=south",
  2414. "facing=west": "[facing=west"
  2415. },
  2416. "cyan_glazed_terracotta": {
  2417. "default": "cyan_glazed_terracotta",
  2418. "facing=north": "[facing=north",
  2419. "facing=east": "[facing=east",
  2420. "facing=south": "[facing=south",
  2421. "facing=west": "[facing=west"
  2422. },
  2423. "purple_glazed_terracotta": {
  2424. "default": "purple_glazed_terracotta",
  2425. "facing=north": "[facing=north",
  2426. "facing=east": "[facing=east",
  2427. "facing=south": "[facing=south",
  2428. "facing=west": "[facing=west"
  2429. },
  2430. "blue_glazed_terracotta": {
  2431. "default": "blue_glazed_terracotta",
  2432. "facing=north": "[facing=north",
  2433. "facing=east": "[facing=east",
  2434. "facing=south": "[facing=south",
  2435. "facing=west": "[facing=west"
  2436. },
  2437. "brown_glazed_terracotta": {
  2438. "default": "brown_glazed_terracotta",
  2439. "facing=north": "[facing=north",
  2440. "facing=east": "[facing=east",
  2441. "facing=south": "[facing=south",
  2442. "facing=west": "[facing=west"
  2443. },
  2444. "green_glazed_terracotta": {
  2445. "default": "green_glazed_terracotta",
  2446. "facing=north": "[facing=north",
  2447. "facing=east": "[facing=east",
  2448. "facing=south": "[facing=south",
  2449. "facing=west": "[facing=west"
  2450. },
  2451. "red_glazed_terracotta": {
  2452. "default": "red_glazed_terracotta",
  2453. "facing=north": "[facing=north",
  2454. "facing=east": "[facing=east",
  2455. "facing=south": "[facing=south",
  2456. "facing=west": "[facing=west"
  2457. },
  2458. "black_glazed_terracotta": {
  2459. "default": "black_glazed_terracotta",
  2460. "facing=north": "[facing=north",
  2461. "facing=east": "[facing=east",
  2462. "facing=south": "[facing=south",
  2463. "facing=west": "[facing=west"
  2464. },
  2465. "concrete": {
  2466. "default": "white_concrete",
  2467. "color=white": "white_concrete",
  2468. "color=orange": "orange_concrete",
  2469. "color=magenta": "magenta_concrete",
  2470. "color=light_blue": "light_blue_concrete",
  2471. "color=yellow": "yellow_concrete",
  2472. "color=lime": "lime_concrete",
  2473. "color=pink": "pink_concrete",
  2474. "color=gray": "gray_concrete",
  2475. "color=silver": "light_gray_concrete",
  2476. "color=cyan": "cyan_concrete",
  2477. "color=purple": "purple_concrete",
  2478. "color=blue": "blue_concrete",
  2479. "color=brown": "brown_concrete",
  2480. "color=green": "green_concrete",
  2481. "color=red": "red_concrete",
  2482. "color=black": "black_concrete"
  2483. },
  2484. "concrete_powder": {
  2485. "default": "white_concrete_powder",
  2486. "color=white": "white_concrete_powder",
  2487. "color=orange": "orange_concrete_powder",
  2488. "color=magenta": "magenta_concrete_powder",
  2489. "color=light_blue": "light_blue_concrete_powder",
  2490. "color=yellow": "yellow_concrete_powder",
  2491. "color=lime": "lime_concrete_powder",
  2492. "color=pink": "pink_concrete_powder",
  2493. "color=gray": "gray_concrete_powder",
  2494. "color=silver": "light_gray_concrete_powder",
  2495. "color=cyan": "cyan_concrete_powder",
  2496. "color=purple": "purple_concrete_powder",
  2497. "color=blue": "blue_concrete_powder",
  2498. "color=brown": "brown_concrete_powder",
  2499. "color=green": "green_concrete_powder",
  2500. "color=red": "red_concrete_powder",
  2501. "color=black": "black_concrete_powder"
  2502. },
  2503. "structure_block": {
  2504. "default": "structure_block",
  2505. "mode=data": "[mode=data",
  2506. "mode=save": "[mode=save",
  2507. "mode=load": "[mode=load",
  2508. "mode=corner": "[mode=corner"
  2509. }
  2510. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement