minecraft-renderer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +297 -0
- package/dist/index.html +83 -0
- package/dist/static/image/arrow.6f27b59f.png +0 -0
- package/dist/static/image/blocksAtlasLatest.7850afa3.png +0 -0
- package/dist/static/image/blocksAtlasLegacy.5c76823d.png +0 -0
- package/dist/static/image/itemsAtlasLatest.36036f95.png +0 -0
- package/dist/static/image/itemsAtlasLegacy.dcb1b58d.png +0 -0
- package/dist/static/image/tipped_arrow.6f27b59f.png +0 -0
- package/dist/static/js/365.f05233ab.js +8462 -0
- package/dist/static/js/365.f05233ab.js.LICENSE.txt +52 -0
- package/dist/static/js/async/738.efa27644.js +1 -0
- package/dist/static/js/index.092ec5be.js +56 -0
- package/dist/static/js/lib-polyfill.98986ac5.js +1 -0
- package/dist/static/js/lib-react.5c9129e0.js +2 -0
- package/dist/static/js/lib-react.5c9129e0.js.LICENSE.txt +39 -0
- package/package.json +104 -0
- package/src/assets/destroy_stage_0.png +0 -0
- package/src/assets/destroy_stage_1.png +0 -0
- package/src/assets/destroy_stage_2.png +0 -0
- package/src/assets/destroy_stage_3.png +0 -0
- package/src/assets/destroy_stage_4.png +0 -0
- package/src/assets/destroy_stage_5.png +0 -0
- package/src/assets/destroy_stage_6.png +0 -0
- package/src/assets/destroy_stage_7.png +0 -0
- package/src/assets/destroy_stage_8.png +0 -0
- package/src/assets/destroy_stage_9.png +0 -0
- package/src/examples/README.md +146 -0
- package/src/examples/appViewerExample.ts +205 -0
- package/src/examples/initialMenuStart.ts +161 -0
- package/src/graphicsBackend/appViewer.ts +297 -0
- package/src/graphicsBackend/config.ts +119 -0
- package/src/graphicsBackend/index.ts +10 -0
- package/src/graphicsBackend/playerState.ts +61 -0
- package/src/graphicsBackend/types.ts +143 -0
- package/src/index.ts +97 -0
- package/src/lib/DebugGui.ts +190 -0
- package/src/lib/animationController.ts +85 -0
- package/src/lib/buildSharedConfig.mjs +1 -0
- package/src/lib/cameraBobbing.ts +94 -0
- package/src/lib/canvas2DOverlay.example.ts +361 -0
- package/src/lib/canvas2DOverlay.quickstart.ts +242 -0
- package/src/lib/canvas2DOverlay.ts +381 -0
- package/src/lib/cleanupDecorator.ts +29 -0
- package/src/lib/createPlayerObject.ts +55 -0
- package/src/lib/frameTimingCollector.ts +164 -0
- package/src/lib/guiRenderer.ts +283 -0
- package/src/lib/items.ts +140 -0
- package/src/lib/mesherlogReader.ts +131 -0
- package/src/lib/moreBlockDataGenerated.json +714 -0
- package/src/lib/preflatMap.json +1741 -0
- package/src/lib/simpleUtils.ts +40 -0
- package/src/lib/smoothSwitcher.ts +168 -0
- package/src/lib/spiral.ts +29 -0
- package/src/lib/ui/newStats.ts +120 -0
- package/src/lib/utils/proxy.ts +23 -0
- package/src/lib/utils/skins.ts +63 -0
- package/src/lib/utils.ts +76 -0
- package/src/lib/workerProxy.ts +342 -0
- package/src/lib/worldrendererCommon.ts +1088 -0
- package/src/mesher/mesher.ts +253 -0
- package/src/mesher/models.ts +769 -0
- package/src/mesher/modelsGeometryCommon.ts +142 -0
- package/src/mesher/shared.ts +80 -0
- package/src/mesher/standaloneRenderer.ts +270 -0
- package/src/mesher/test/a.ts +3 -0
- package/src/mesher/test/mesherTester.ts +76 -0
- package/src/mesher/test/playground.ts +19 -0
- package/src/mesher/test/test-perf.ts +74 -0
- package/src/mesher/test/tests.test.ts +56 -0
- package/src/mesher/world.ts +294 -0
- package/src/mesher/worldConstants.ts +1 -0
- package/src/modules/index.ts +11 -0
- package/src/modules/starfield.ts +313 -0
- package/src/modules/types.ts +110 -0
- package/src/playerState/playerState.ts +78 -0
- package/src/playerState/types.ts +36 -0
- package/src/playground/allEntitiesDebug.ts +170 -0
- package/src/playground/baseScene.ts +587 -0
- package/src/playground/mobileControls.tsx +268 -0
- package/src/playground/playground.html +83 -0
- package/src/playground/playground.ts +11 -0
- package/src/playground/playgroundUi.tsx +140 -0
- package/src/playground/reactUtils.ts +71 -0
- package/src/playground/scenes/allEntities.ts +13 -0
- package/src/playground/scenes/entities.ts +37 -0
- package/src/playground/scenes/floorRandom.ts +33 -0
- package/src/playground/scenes/frequentUpdates.ts +148 -0
- package/src/playground/scenes/geometryExport.ts +142 -0
- package/src/playground/scenes/index.ts +12 -0
- package/src/playground/scenes/lightingStarfield.ts +40 -0
- package/src/playground/scenes/main.ts +313 -0
- package/src/playground/scenes/railsCobweb.ts +14 -0
- package/src/playground/scenes/rotationIssue.ts +7 -0
- package/src/playground/scenes/slabsOptimization.ts +16 -0
- package/src/playground/scenes/transparencyIssue.ts +11 -0
- package/src/playground/shared.ts +79 -0
- package/src/resourcesManager/index.ts +5 -0
- package/src/resourcesManager/resourcesManager.ts +314 -0
- package/src/shims/minecraftData.ts +41 -0
- package/src/sign-renderer/index.html +21 -0
- package/src/sign-renderer/index.ts +216 -0
- package/src/sign-renderer/noop.js +1 -0
- package/src/sign-renderer/playground.ts +38 -0
- package/src/sign-renderer/tests.test.ts +69 -0
- package/src/sign-renderer/vite.config.ts +10 -0
- package/src/three/appShared.ts +75 -0
- package/src/three/bannerRenderer.ts +275 -0
- package/src/three/cameraShake.ts +120 -0
- package/src/three/cinimaticScript.ts +350 -0
- package/src/three/documentRenderer.ts +491 -0
- package/src/three/entities.ts +1580 -0
- package/src/three/entity/EntityMesh.ts +707 -0
- package/src/three/entity/animations.js +171 -0
- package/src/three/entity/armorModels.json +204 -0
- package/src/three/entity/armorModels.ts +36 -0
- package/src/three/entity/entities.json +6230 -0
- package/src/three/entity/exportedModels.js +38 -0
- package/src/three/entity/externalTextures.json +1 -0
- package/src/three/entity/models/allay.obj +325 -0
- package/src/three/entity/models/arrow.obj +60 -0
- package/src/three/entity/models/axolotl.obj +509 -0
- package/src/three/entity/models/blaze.obj +601 -0
- package/src/three/entity/models/boat.obj +417 -0
- package/src/three/entity/models/camel.obj +1061 -0
- package/src/three/entity/models/cat.obj +509 -0
- package/src/three/entity/models/chicken.obj +371 -0
- package/src/three/entity/models/cod.obj +371 -0
- package/src/three/entity/models/creeper.obj +279 -0
- package/src/three/entity/models/dolphin.obj +371 -0
- package/src/three/entity/models/ender_dragon.obj +2993 -0
- package/src/three/entity/models/enderman.obj +325 -0
- package/src/three/entity/models/endermite.obj +187 -0
- package/src/three/entity/models/fox.obj +463 -0
- package/src/three/entity/models/frog.obj +739 -0
- package/src/three/entity/models/ghast.obj +463 -0
- package/src/three/entity/models/goat.obj +601 -0
- package/src/three/entity/models/guardian.obj +1015 -0
- package/src/three/entity/models/horse.obj +1061 -0
- package/src/three/entity/models/llama.obj +509 -0
- package/src/three/entity/models/minecart.obj +233 -0
- package/src/three/entity/models/parrot.obj +509 -0
- package/src/three/entity/models/piglin.obj +739 -0
- package/src/three/entity/models/pillager.obj +371 -0
- package/src/three/entity/models/rabbit.obj +555 -0
- package/src/three/entity/models/sheep.obj +555 -0
- package/src/three/entity/models/shulker.obj +141 -0
- package/src/three/entity/models/sniffer.obj +693 -0
- package/src/three/entity/models/spider.obj +509 -0
- package/src/three/entity/models/tadpole.obj +95 -0
- package/src/three/entity/models/turtle.obj +371 -0
- package/src/three/entity/models/vex.obj +325 -0
- package/src/three/entity/models/villager.obj +509 -0
- package/src/three/entity/models/warden.obj +463 -0
- package/src/three/entity/models/witch.obj +647 -0
- package/src/three/entity/models/wolf.obj +509 -0
- package/src/three/entity/models/zombie_villager.obj +463 -0
- package/src/three/entity/objModels.js +1 -0
- package/src/three/fireworks.ts +661 -0
- package/src/three/fireworksRenderer.ts +434 -0
- package/src/three/globals.d.ts +7 -0
- package/src/three/graphicsBackend.ts +274 -0
- package/src/three/graphicsBackendOffThread.ts +107 -0
- package/src/three/hand.ts +89 -0
- package/src/three/holdingBlock.ts +926 -0
- package/src/three/index.ts +20 -0
- package/src/three/itemMesh.ts +427 -0
- package/src/three/modules.d.ts +14 -0
- package/src/three/panorama.ts +308 -0
- package/src/three/panoramaShared.ts +1 -0
- package/src/three/renderSlot.ts +82 -0
- package/src/three/skyboxRenderer.ts +406 -0
- package/src/three/starField.ts +13 -0
- package/src/three/threeJsMedia.ts +731 -0
- package/src/three/threeJsMethods.ts +15 -0
- package/src/three/threeJsParticles.ts +160 -0
- package/src/three/threeJsSound.ts +95 -0
- package/src/three/threeJsUtils.ts +90 -0
- package/src/three/waypointSprite.ts +435 -0
- package/src/three/waypoints.ts +163 -0
- package/src/three/world/cursorBlock.ts +172 -0
- package/src/three/world/vr.ts +257 -0
- package/src/three/worldGeometryExport.ts +259 -0
- package/src/three/worldGeometryHandler.ts +279 -0
- package/src/three/worldRendererThree.ts +1381 -0
- package/src/worldView/index.ts +6 -0
- package/src/worldView/types.ts +66 -0
- package/src/worldView/worldView.ts +424 -0
|
@@ -0,0 +1,1741 @@
|
|
|
1
|
+
{
|
|
2
|
+
"blocks": {
|
|
3
|
+
"0:0": "air",
|
|
4
|
+
"1:0": "stone",
|
|
5
|
+
"1:1": "granite",
|
|
6
|
+
"1:2": "polished_granite",
|
|
7
|
+
"1:3": "diorite",
|
|
8
|
+
"1:4": "polished_diorite",
|
|
9
|
+
"1:5": "andesite",
|
|
10
|
+
"1:6": "polished_andesite",
|
|
11
|
+
"2:0": "grass_block[snowy=false]",
|
|
12
|
+
"3:0": "dirt",
|
|
13
|
+
"3:1": "coarse_dirt",
|
|
14
|
+
"3:2": "podzol[snowy=false]",
|
|
15
|
+
"4:0": "cobblestone",
|
|
16
|
+
"5:0": "oak_planks",
|
|
17
|
+
"5:1": "spruce_planks",
|
|
18
|
+
"5:2": "birch_planks",
|
|
19
|
+
"5:3": "jungle_planks",
|
|
20
|
+
"5:4": "acacia_planks",
|
|
21
|
+
"5:5": "dark_oak_planks",
|
|
22
|
+
"6:0": "oak_sapling[stage=0]",
|
|
23
|
+
"6:1": "spruce_sapling[stage=0]",
|
|
24
|
+
"6:2": "birch_sapling[stage=0]",
|
|
25
|
+
"6:3": "jungle_sapling[stage=0]",
|
|
26
|
+
"6:4": "acacia_sapling[stage=0]",
|
|
27
|
+
"6:5": "dark_oak_sapling[stage=0]",
|
|
28
|
+
"6:8": "oak_sapling[stage=1]",
|
|
29
|
+
"6:9": "spruce_sapling[stage=1]",
|
|
30
|
+
"6:10": "birch_sapling[stage=1]",
|
|
31
|
+
"6:11": "jungle_sapling[stage=1]",
|
|
32
|
+
"6:12": "acacia_sapling[stage=1]",
|
|
33
|
+
"6:13": "dark_oak_sapling[stage=1]",
|
|
34
|
+
"7:0": "bedrock",
|
|
35
|
+
"8:0": "water[level=0]",
|
|
36
|
+
"8:1": "water[level=1]",
|
|
37
|
+
"8:2": "water[level=2]",
|
|
38
|
+
"8:3": "water[level=3]",
|
|
39
|
+
"8:4": "water[level=4]",
|
|
40
|
+
"8:5": "water[level=5]",
|
|
41
|
+
"8:6": "water[level=6]",
|
|
42
|
+
"8:7": "water[level=7]",
|
|
43
|
+
"8:8": "water[level=8]",
|
|
44
|
+
"8:9": "water[level=9]",
|
|
45
|
+
"8:10": "water[level=10]",
|
|
46
|
+
"8:11": "water[level=11]",
|
|
47
|
+
"8:12": "water[level=12]",
|
|
48
|
+
"8:13": "water[level=13]",
|
|
49
|
+
"8:14": "water[level=14]",
|
|
50
|
+
"8:15": "water[level=15]",
|
|
51
|
+
"9:0": "water[level=0]",
|
|
52
|
+
"9:1": "water[level=1]",
|
|
53
|
+
"9:2": "water[level=2]",
|
|
54
|
+
"9:3": "water[level=3]",
|
|
55
|
+
"9:4": "water[level=4]",
|
|
56
|
+
"9:5": "water[level=5]",
|
|
57
|
+
"9:6": "water[level=6]",
|
|
58
|
+
"9:7": "water[level=7]",
|
|
59
|
+
"9:8": "water[level=8]",
|
|
60
|
+
"9:9": "water[level=9]",
|
|
61
|
+
"9:10": "water[level=10]",
|
|
62
|
+
"9:11": "water[level=11]",
|
|
63
|
+
"9:12": "water[level=12]",
|
|
64
|
+
"9:13": "water[level=13]",
|
|
65
|
+
"9:14": "water[level=14]",
|
|
66
|
+
"9:15": "water[level=15]",
|
|
67
|
+
"10:0": "lava[level=0]",
|
|
68
|
+
"10:1": "lava[level=1]",
|
|
69
|
+
"10:2": "lava[level=2]",
|
|
70
|
+
"10:3": "lava[level=3]",
|
|
71
|
+
"10:4": "lava[level=4]",
|
|
72
|
+
"10:5": "lava[level=5]",
|
|
73
|
+
"10:6": "lava[level=6]",
|
|
74
|
+
"10:7": "lava[level=7]",
|
|
75
|
+
"10:8": "lava[level=8]",
|
|
76
|
+
"10:9": "lava[level=9]",
|
|
77
|
+
"10:10": "lava[level=10]",
|
|
78
|
+
"10:11": "lava[level=11]",
|
|
79
|
+
"10:12": "lava[level=12]",
|
|
80
|
+
"10:13": "lava[level=13]",
|
|
81
|
+
"10:14": "lava[level=14]",
|
|
82
|
+
"10:15": "lava[level=15]",
|
|
83
|
+
"11:0": "lava[level=0]",
|
|
84
|
+
"11:1": "lava[level=1]",
|
|
85
|
+
"11:2": "lava[level=2]",
|
|
86
|
+
"11:3": "lava[level=3]",
|
|
87
|
+
"11:4": "lava[level=4]",
|
|
88
|
+
"11:5": "lava[level=5]",
|
|
89
|
+
"11:6": "lava[level=6]",
|
|
90
|
+
"11:7": "lava[level=7]",
|
|
91
|
+
"11:8": "lava[level=8]",
|
|
92
|
+
"11:9": "lava[level=9]",
|
|
93
|
+
"11:10": "lava[level=10]",
|
|
94
|
+
"11:11": "lava[level=11]",
|
|
95
|
+
"11:12": "lava[level=12]",
|
|
96
|
+
"11:13": "lava[level=13]",
|
|
97
|
+
"11:14": "lava[level=14]",
|
|
98
|
+
"11:15": "lava[level=15]",
|
|
99
|
+
"12:0": "sand",
|
|
100
|
+
"12:1": "red_sand",
|
|
101
|
+
"13:0": "gravel",
|
|
102
|
+
"14:0": "gold_ore",
|
|
103
|
+
"15:0": "iron_ore",
|
|
104
|
+
"16:0": "coal_ore",
|
|
105
|
+
"17:0": "oak_log[axis=y]",
|
|
106
|
+
"17:1": "spruce_log[axis=y]",
|
|
107
|
+
"17:2": "birch_log[axis=y]",
|
|
108
|
+
"17:3": "jungle_log[axis=y]",
|
|
109
|
+
"17:4": "oak_log[axis=x]",
|
|
110
|
+
"17:5": "spruce_log[axis=x]",
|
|
111
|
+
"17:6": "birch_log[axis=x]",
|
|
112
|
+
"17:7": "jungle_log[axis=x]",
|
|
113
|
+
"17:8": "oak_log[axis=z]",
|
|
114
|
+
"17:9": "spruce_log[axis=z]",
|
|
115
|
+
"17:10": "birch_log[axis=z]",
|
|
116
|
+
"17:11": "jungle_log[axis=z]",
|
|
117
|
+
"17:12": "oak_bark",
|
|
118
|
+
"17:13": "spruce_bark",
|
|
119
|
+
"17:14": "birch_bark",
|
|
120
|
+
"17:15": "jungle_bark",
|
|
121
|
+
"18:0": "oak_leaves[check_decay=false,decayable=true]",
|
|
122
|
+
"18:1": "spruce_leaves[check_decay=false,decayable=true]",
|
|
123
|
+
"18:2": "birch_leaves[check_decay=false,decayable=true]",
|
|
124
|
+
"18:3": "jungle_leaves[check_decay=false,decayable=true]",
|
|
125
|
+
"18:4": "oak_leaves[check_decay=false,decayable=false]",
|
|
126
|
+
"18:5": "spruce_leaves[check_decay=false,decayable=false]",
|
|
127
|
+
"18:6": "birch_leaves[check_decay=false,decayable=false]",
|
|
128
|
+
"18:7": "jungle_leaves[check_decay=false,decayable=false]",
|
|
129
|
+
"18:8": "oak_leaves[check_decay=true,decayable=true]",
|
|
130
|
+
"18:9": "spruce_leaves[check_decay=true,decayable=true]",
|
|
131
|
+
"18:10": "birch_leaves[check_decay=true,decayable=true]",
|
|
132
|
+
"18:11": "jungle_leaves[check_decay=true,decayable=true]",
|
|
133
|
+
"18:12": "oak_leaves[check_decay=true,decayable=false]",
|
|
134
|
+
"18:13": "spruce_leaves[check_decay=true,decayable=false]",
|
|
135
|
+
"18:14": "birch_leaves[check_decay=true,decayable=false]",
|
|
136
|
+
"18:15": "jungle_leaves[check_decay=true,decayable=false]",
|
|
137
|
+
"19:0": "sponge",
|
|
138
|
+
"19:1": "wet_sponge",
|
|
139
|
+
"20:0": "glass",
|
|
140
|
+
"21:0": "lapis_ore",
|
|
141
|
+
"22:0": "lapis_block",
|
|
142
|
+
"23:0": "dispenser[facing=down,triggered=false]",
|
|
143
|
+
"23:1": "dispenser[facing=up,triggered=false]",
|
|
144
|
+
"23:2": "dispenser[facing=north,triggered=false]",
|
|
145
|
+
"23:3": "dispenser[facing=south,triggered=false]",
|
|
146
|
+
"23:4": "dispenser[facing=west,triggered=false]",
|
|
147
|
+
"23:5": "dispenser[facing=east,triggered=false]",
|
|
148
|
+
"23:8": "dispenser[facing=down,triggered=true]",
|
|
149
|
+
"23:9": "dispenser[facing=up,triggered=true]",
|
|
150
|
+
"23:10": "dispenser[facing=north,triggered=true]",
|
|
151
|
+
"23:11": "dispenser[facing=south,triggered=true]",
|
|
152
|
+
"23:12": "dispenser[facing=west,triggered=true]",
|
|
153
|
+
"23:13": "dispenser[facing=east,triggered=true]",
|
|
154
|
+
"24:0": "sandstone",
|
|
155
|
+
"24:1": "chiseled_sandstone",
|
|
156
|
+
"24:2": "cut_sandstone",
|
|
157
|
+
"25:0": "note_block",
|
|
158
|
+
"26:0": "red_bed[facing=south,occupied=false,part=foot]",
|
|
159
|
+
"26:1": "red_bed[facing=west,occupied=false,part=foot]",
|
|
160
|
+
"26:2": "red_bed[facing=north,occupied=false,part=foot]",
|
|
161
|
+
"26:3": "red_bed[facing=east,occupied=false,part=foot]",
|
|
162
|
+
"26:8": "red_bed[facing=south,occupied=false,part=head]",
|
|
163
|
+
"26:9": "red_bed[facing=west,occupied=false,part=head]",
|
|
164
|
+
"26:10": "red_bed[facing=north,occupied=false,part=head]",
|
|
165
|
+
"26:11": "red_bed[facing=east,occupied=false,part=head]",
|
|
166
|
+
"26:12": "red_bed[facing=south,occupied=true,part=head]",
|
|
167
|
+
"26:13": "red_bed[facing=west,occupied=true,part=head]",
|
|
168
|
+
"26:14": "red_bed[facing=north,occupied=true,part=head]",
|
|
169
|
+
"26:15": "red_bed[facing=east,occupied=true,part=head]",
|
|
170
|
+
"27:0": "powered_rail[powered=false,shape=north_south]",
|
|
171
|
+
"27:1": "powered_rail[powered=false,shape=east_west]",
|
|
172
|
+
"27:2": "powered_rail[powered=false,shape=ascending_east]",
|
|
173
|
+
"27:3": "powered_rail[powered=false,shape=ascending_west]",
|
|
174
|
+
"27:4": "powered_rail[powered=false,shape=ascending_north]",
|
|
175
|
+
"27:5": "powered_rail[powered=false,shape=ascending_south]",
|
|
176
|
+
"27:8": "powered_rail[powered=true,shape=north_south]",
|
|
177
|
+
"27:9": "powered_rail[powered=true,shape=east_west]",
|
|
178
|
+
"27:10": "powered_rail[powered=true,shape=ascending_east]",
|
|
179
|
+
"27:11": "powered_rail[powered=true,shape=ascending_west]",
|
|
180
|
+
"27:12": "powered_rail[powered=true,shape=ascending_north]",
|
|
181
|
+
"27:13": "powered_rail[powered=true,shape=ascending_south]",
|
|
182
|
+
"28:0": "detector_rail[powered=false,shape=north_south]",
|
|
183
|
+
"28:1": "detector_rail[powered=false,shape=east_west]",
|
|
184
|
+
"28:2": "detector_rail[powered=false,shape=ascending_east]",
|
|
185
|
+
"28:3": "detector_rail[powered=false,shape=ascending_west]",
|
|
186
|
+
"28:4": "detector_rail[powered=false,shape=ascending_north]",
|
|
187
|
+
"28:5": "detector_rail[powered=false,shape=ascending_south]",
|
|
188
|
+
"28:8": "detector_rail[powered=true,shape=north_south]",
|
|
189
|
+
"28:9": "detector_rail[powered=true,shape=east_west]",
|
|
190
|
+
"28:10": "detector_rail[powered=true,shape=ascending_east]",
|
|
191
|
+
"28:11": "detector_rail[powered=true,shape=ascending_west]",
|
|
192
|
+
"28:12": "detector_rail[powered=true,shape=ascending_north]",
|
|
193
|
+
"28:13": "detector_rail[powered=true,shape=ascending_south]",
|
|
194
|
+
"29:0": "sticky_piston[extended=false,facing=down]",
|
|
195
|
+
"29:1": "sticky_piston[extended=false,facing=up]",
|
|
196
|
+
"29:2": "sticky_piston[extended=false,facing=north]",
|
|
197
|
+
"29:3": "sticky_piston[extended=false,facing=south]",
|
|
198
|
+
"29:4": "sticky_piston[extended=false,facing=west]",
|
|
199
|
+
"29:5": "sticky_piston[extended=false,facing=east]",
|
|
200
|
+
"29:8": "sticky_piston[extended=true,facing=down]",
|
|
201
|
+
"29:9": "sticky_piston[extended=true,facing=up]",
|
|
202
|
+
"29:10": "sticky_piston[extended=true,facing=north]",
|
|
203
|
+
"29:11": "sticky_piston[extended=true,facing=south]",
|
|
204
|
+
"29:12": "sticky_piston[extended=true,facing=west]",
|
|
205
|
+
"29:13": "sticky_piston[extended=true,facing=east]",
|
|
206
|
+
"30:0": "cobweb",
|
|
207
|
+
"31:0": "dead_bush",
|
|
208
|
+
"31:1": "grass",
|
|
209
|
+
"31:2": "fern",
|
|
210
|
+
"32:0": "dead_bush",
|
|
211
|
+
"33:0": "piston[extended=false,facing=down]",
|
|
212
|
+
"33:1": "piston[extended=false,facing=up]",
|
|
213
|
+
"33:2": "piston[extended=false,facing=north]",
|
|
214
|
+
"33:3": "piston[extended=false,facing=south]",
|
|
215
|
+
"33:4": "piston[extended=false,facing=west]",
|
|
216
|
+
"33:5": "piston[extended=false,facing=east]",
|
|
217
|
+
"33:8": "piston[extended=true,facing=down]",
|
|
218
|
+
"33:9": "piston[extended=true,facing=up]",
|
|
219
|
+
"33:10": "piston[extended=true,facing=north]",
|
|
220
|
+
"33:11": "piston[extended=true,facing=south]",
|
|
221
|
+
"33:12": "piston[extended=true,facing=west]",
|
|
222
|
+
"33:13": "piston[extended=true,facing=east]",
|
|
223
|
+
"34:0": "piston_head[facing=down,short=false,type=normal]",
|
|
224
|
+
"34:1": "piston_head[facing=up,short=false,type=normal]",
|
|
225
|
+
"34:2": "piston_head[facing=north,short=false,type=normal]",
|
|
226
|
+
"34:3": "piston_head[facing=south,short=false,type=normal]",
|
|
227
|
+
"34:4": "piston_head[facing=west,short=false,type=normal]",
|
|
228
|
+
"34:5": "piston_head[facing=east,short=false,type=normal]",
|
|
229
|
+
"34:8": "piston_head[facing=down,short=false,type=sticky]",
|
|
230
|
+
"34:9": "piston_head[facing=up,short=false,type=sticky]",
|
|
231
|
+
"34:10": "piston_head[facing=north,short=false,type=sticky]",
|
|
232
|
+
"34:11": "piston_head[facing=south,short=false,type=sticky]",
|
|
233
|
+
"34:12": "piston_head[facing=west,short=false,type=sticky]",
|
|
234
|
+
"34:13": "piston_head[facing=east,short=false,type=sticky]",
|
|
235
|
+
"35:0": "white_wool",
|
|
236
|
+
"35:1": "orange_wool",
|
|
237
|
+
"35:2": "magenta_wool",
|
|
238
|
+
"35:3": "light_blue_wool",
|
|
239
|
+
"35:4": "yellow_wool",
|
|
240
|
+
"35:5": "lime_wool",
|
|
241
|
+
"35:6": "pink_wool",
|
|
242
|
+
"35:7": "gray_wool",
|
|
243
|
+
"35:8": "light_gray_wool",
|
|
244
|
+
"35:9": "cyan_wool",
|
|
245
|
+
"35:10": "purple_wool",
|
|
246
|
+
"35:11": "blue_wool",
|
|
247
|
+
"35:12": "brown_wool",
|
|
248
|
+
"35:13": "green_wool",
|
|
249
|
+
"35:14": "red_wool",
|
|
250
|
+
"35:15": "black_wool",
|
|
251
|
+
"36:0": "moving_piston[facing=down,type=normal]",
|
|
252
|
+
"36:1": "moving_piston[facing=up,type=normal]",
|
|
253
|
+
"36:2": "moving_piston[facing=north,type=normal]",
|
|
254
|
+
"36:3": "moving_piston[facing=south,type=normal]",
|
|
255
|
+
"36:4": "moving_piston[facing=west,type=normal]",
|
|
256
|
+
"36:5": "moving_piston[facing=east,type=normal]",
|
|
257
|
+
"36:8": "moving_piston[facing=down,type=sticky]",
|
|
258
|
+
"36:9": "moving_piston[facing=up,type=sticky]",
|
|
259
|
+
"36:10": "moving_piston[facing=north,type=sticky]",
|
|
260
|
+
"36:11": "moving_piston[facing=south,type=sticky]",
|
|
261
|
+
"36:12": "moving_piston[facing=west,type=sticky]",
|
|
262
|
+
"36:13": "moving_piston[facing=east,type=sticky]",
|
|
263
|
+
"37:0": "dandelion",
|
|
264
|
+
"38:0": "poppy",
|
|
265
|
+
"38:1": "blue_orchid",
|
|
266
|
+
"38:2": "allium",
|
|
267
|
+
"38:3": "azure_bluet",
|
|
268
|
+
"38:4": "red_tulip",
|
|
269
|
+
"38:5": "orange_tulip",
|
|
270
|
+
"38:6": "white_tulip",
|
|
271
|
+
"38:7": "pink_tulip",
|
|
272
|
+
"38:8": "oxeye_daisy",
|
|
273
|
+
"39:0": "brown_mushroom",
|
|
274
|
+
"40:0": "red_mushroom",
|
|
275
|
+
"41:0": "gold_block",
|
|
276
|
+
"42:0": "iron_block",
|
|
277
|
+
"43:0": "stone_slab[type=double]",
|
|
278
|
+
"43:1": "sandstone_slab[type=double]",
|
|
279
|
+
"43:2": "petrified_oak_slab[type=double]",
|
|
280
|
+
"43:3": "cobblestone_slab[type=double]",
|
|
281
|
+
"43:4": "brick_slab[type=double]",
|
|
282
|
+
"43:5": "stone_brick_slab[type=double]",
|
|
283
|
+
"43:6": "nether_brick_slab[type=double]",
|
|
284
|
+
"43:7": "quartz_slab[type=double]",
|
|
285
|
+
"43:8": "smooth_stone",
|
|
286
|
+
"43:9": "smooth_sandstone",
|
|
287
|
+
"43:10": "petrified_oak_slab[type=double]",
|
|
288
|
+
"43:11": "cobblestone_slab[type=double]",
|
|
289
|
+
"43:12": "brick_slab[type=double]",
|
|
290
|
+
"43:13": "stone_brick_slab[type=double]",
|
|
291
|
+
"43:14": "nether_brick_slab[type=double]",
|
|
292
|
+
"43:15": "smooth_quartz",
|
|
293
|
+
"44:0": "stone_slab[type=bottom]",
|
|
294
|
+
"44:1": "sandstone_slab[type=bottom]",
|
|
295
|
+
"44:2": "petrified_oak_slab[type=bottom]",
|
|
296
|
+
"44:3": "cobblestone_slab[type=bottom]",
|
|
297
|
+
"44:4": "brick_slab[type=bottom]",
|
|
298
|
+
"44:5": "stone_brick_slab[type=bottom]",
|
|
299
|
+
"44:6": "nether_brick_slab[type=bottom]",
|
|
300
|
+
"44:7": "quartz_slab[type=bottom]",
|
|
301
|
+
"44:8": "stone_slab[type=top]",
|
|
302
|
+
"44:9": "sandstone_slab[type=top]",
|
|
303
|
+
"44:10": "petrified_oak_slab[type=top]",
|
|
304
|
+
"44:11": "cobblestone_slab[type=top]",
|
|
305
|
+
"44:12": "brick_slab[type=top]",
|
|
306
|
+
"44:13": "stone_brick_slab[type=top]",
|
|
307
|
+
"44:14": "nether_brick_slab[type=top]",
|
|
308
|
+
"44:15": "quartz_slab[type=top]",
|
|
309
|
+
"45:0": "bricks",
|
|
310
|
+
"46:0": "tnt[unstable=false]",
|
|
311
|
+
"46:1": "tnt[unstable=true]",
|
|
312
|
+
"47:0": "bookshelf",
|
|
313
|
+
"48:0": "mossy_cobblestone",
|
|
314
|
+
"49:0": "obsidian",
|
|
315
|
+
"50:1": "wall_torch[facing=east]",
|
|
316
|
+
"50:2": "wall_torch[facing=west]",
|
|
317
|
+
"50:3": "wall_torch[facing=south]",
|
|
318
|
+
"50:4": "wall_torch[facing=north]",
|
|
319
|
+
"50:5": "torch",
|
|
320
|
+
"51:0": "fire[age=0,east=false,north=false,south=false,up=false,west=false]",
|
|
321
|
+
"51:1": "fire[age=1,east=false,north=false,south=false,up=false,west=false]",
|
|
322
|
+
"51:2": "fire[age=2,east=false,north=false,south=false,up=false,west=false]",
|
|
323
|
+
"51:3": "fire[age=3,east=false,north=false,south=false,up=false,west=false]",
|
|
324
|
+
"51:4": "fire[age=4,east=false,north=false,south=false,up=false,west=false]",
|
|
325
|
+
"51:5": "fire[age=5,east=false,north=false,south=false,up=false,west=false]",
|
|
326
|
+
"51:6": "fire[age=6,east=false,north=false,south=false,up=false,west=false]",
|
|
327
|
+
"51:7": "fire[age=7,east=false,north=false,south=false,up=false,west=false]",
|
|
328
|
+
"51:8": "fire[age=8,east=false,north=false,south=false,up=false,west=false]",
|
|
329
|
+
"51:9": "fire[age=9,east=false,north=false,south=false,up=false,west=false]",
|
|
330
|
+
"51:10": "fire[age=10,east=false,north=false,south=false,up=false,west=false]",
|
|
331
|
+
"51:11": "fire[age=11,east=false,north=false,south=false,up=false,west=false]",
|
|
332
|
+
"51:12": "fire[age=12,east=false,north=false,south=false,up=false,west=false]",
|
|
333
|
+
"51:13": "fire[age=13,east=false,north=false,south=false,up=false,west=false]",
|
|
334
|
+
"51:14": "fire[age=14,east=false,north=false,south=false,up=false,west=false]",
|
|
335
|
+
"51:15": "fire[age=15,east=false,north=false,south=false,up=false,west=false]",
|
|
336
|
+
"52:0": "mob_spawner",
|
|
337
|
+
"53:0": "oak_stairs[facing=east,half=bottom,shape=straight]",
|
|
338
|
+
"53:1": "oak_stairs[facing=west,half=bottom,shape=straight]",
|
|
339
|
+
"53:2": "oak_stairs[facing=south,half=bottom,shape=straight]",
|
|
340
|
+
"53:3": "oak_stairs[facing=north,half=bottom,shape=straight]",
|
|
341
|
+
"53:4": "oak_stairs[facing=east,half=top,shape=straight]",
|
|
342
|
+
"53:5": "oak_stairs[facing=west,half=top,shape=straight]",
|
|
343
|
+
"53:6": "oak_stairs[facing=south,half=top,shape=straight]",
|
|
344
|
+
"53:7": "oak_stairs[facing=north,half=top,shape=straight]",
|
|
345
|
+
"54:2": "chest[facing=north,type=single]",
|
|
346
|
+
"54:3": "chest[facing=south,type=single]",
|
|
347
|
+
"54:4": "chest[facing=west,type=single]",
|
|
348
|
+
"54:5": "chest[facing=east,type=single]",
|
|
349
|
+
"55:0": "redstone_wire[east=none,north=none,power=0,south=none,west=none]",
|
|
350
|
+
"55:1": "redstone_wire[east=none,north=none,power=1,south=none,west=none]",
|
|
351
|
+
"55:2": "redstone_wire[east=none,north=none,power=2,south=none,west=none]",
|
|
352
|
+
"55:3": "redstone_wire[east=none,north=none,power=3,south=none,west=none]",
|
|
353
|
+
"55:4": "redstone_wire[east=none,north=none,power=4,south=none,west=none]",
|
|
354
|
+
"55:5": "redstone_wire[east=none,north=none,power=5,south=none,west=none]",
|
|
355
|
+
"55:6": "redstone_wire[east=none,north=none,power=6,south=none,west=none]",
|
|
356
|
+
"55:7": "redstone_wire[east=none,north=none,power=7,south=none,west=none]",
|
|
357
|
+
"55:8": "redstone_wire[east=none,north=none,power=8,south=none,west=none]",
|
|
358
|
+
"55:9": "redstone_wire[east=none,north=none,power=9,south=none,west=none]",
|
|
359
|
+
"55:10": "redstone_wire[east=none,north=none,power=10,south=none,west=none]",
|
|
360
|
+
"55:11": "redstone_wire[east=none,north=none,power=11,south=none,west=none]",
|
|
361
|
+
"55:12": "redstone_wire[east=none,north=none,power=12,south=none,west=none]",
|
|
362
|
+
"55:13": "redstone_wire[east=none,north=none,power=13,south=none,west=none]",
|
|
363
|
+
"55:14": "redstone_wire[east=none,north=none,power=14,south=none,west=none]",
|
|
364
|
+
"55:15": "redstone_wire[east=none,north=none,power=15,south=none,west=none]",
|
|
365
|
+
"56:0": "diamond_ore",
|
|
366
|
+
"57:0": "diamond_block",
|
|
367
|
+
"58:0": "crafting_table",
|
|
368
|
+
"59:0": "wheat[age=0]",
|
|
369
|
+
"59:1": "wheat[age=1]",
|
|
370
|
+
"59:2": "wheat[age=2]",
|
|
371
|
+
"59:3": "wheat[age=3]",
|
|
372
|
+
"59:4": "wheat[age=4]",
|
|
373
|
+
"59:5": "wheat[age=5]",
|
|
374
|
+
"59:6": "wheat[age=6]",
|
|
375
|
+
"59:7": "wheat[age=7]",
|
|
376
|
+
"60:0": "farmland[moisture=0]",
|
|
377
|
+
"60:1": "farmland[moisture=1]",
|
|
378
|
+
"60:2": "farmland[moisture=2]",
|
|
379
|
+
"60:3": "farmland[moisture=3]",
|
|
380
|
+
"60:4": "farmland[moisture=4]",
|
|
381
|
+
"60:5": "farmland[moisture=5]",
|
|
382
|
+
"60:6": "farmland[moisture=6]",
|
|
383
|
+
"60:7": "farmland[moisture=7]",
|
|
384
|
+
"61:2": "furnace[facing=north,lit=false]",
|
|
385
|
+
"61:3": "furnace[facing=south,lit=false]",
|
|
386
|
+
"61:4": "furnace[facing=west,lit=false]",
|
|
387
|
+
"61:5": "furnace[facing=east,lit=false]",
|
|
388
|
+
"62:2": "furnace[facing=north,lit=true]",
|
|
389
|
+
"62:3": "furnace[facing=south,lit=true]",
|
|
390
|
+
"62:4": "furnace[facing=west,lit=true]",
|
|
391
|
+
"62:5": "furnace[facing=east,lit=true]",
|
|
392
|
+
"63:0": "sign[rotation=0]",
|
|
393
|
+
"63:1": "sign[rotation=1]",
|
|
394
|
+
"63:2": "sign[rotation=2]",
|
|
395
|
+
"63:3": "sign[rotation=3]",
|
|
396
|
+
"63:4": "sign[rotation=4]",
|
|
397
|
+
"63:5": "sign[rotation=5]",
|
|
398
|
+
"63:6": "sign[rotation=6]",
|
|
399
|
+
"63:7": "sign[rotation=7]",
|
|
400
|
+
"63:8": "sign[rotation=8]",
|
|
401
|
+
"63:9": "sign[rotation=9]",
|
|
402
|
+
"63:10": "sign[rotation=10]",
|
|
403
|
+
"63:11": "sign[rotation=11]",
|
|
404
|
+
"63:12": "sign[rotation=12]",
|
|
405
|
+
"63:13": "sign[rotation=13]",
|
|
406
|
+
"63:14": "sign[rotation=14]",
|
|
407
|
+
"63:15": "sign[rotation=15]",
|
|
408
|
+
"64:0": "oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
409
|
+
"64:1": "oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
410
|
+
"64:2": "oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
411
|
+
"64:3": "oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
412
|
+
"64:4": "oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
413
|
+
"64:5": "oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
414
|
+
"64:6": "oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
415
|
+
"64:7": "oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
416
|
+
"64:8": "oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
417
|
+
"64:9": "oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
418
|
+
"64:10": "oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
419
|
+
"64:11": "oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
420
|
+
"65:2": "ladder[facing=north]",
|
|
421
|
+
"65:3": "ladder[facing=south]",
|
|
422
|
+
"65:4": "ladder[facing=west]",
|
|
423
|
+
"65:5": "ladder[facing=east]",
|
|
424
|
+
"66:0": "rail[shape=north_south]",
|
|
425
|
+
"66:1": "rail[shape=east_west]",
|
|
426
|
+
"66:2": "rail[shape=ascending_east]",
|
|
427
|
+
"66:3": "rail[shape=ascending_west]",
|
|
428
|
+
"66:4": "rail[shape=ascending_north]",
|
|
429
|
+
"66:5": "rail[shape=ascending_south]",
|
|
430
|
+
"66:6": "rail[shape=south_east]",
|
|
431
|
+
"66:7": "rail[shape=south_west]",
|
|
432
|
+
"66:8": "rail[shape=north_west]",
|
|
433
|
+
"66:9": "rail[shape=north_east]",
|
|
434
|
+
"67:0": "cobblestone_stairs[facing=east,half=bottom,shape=straight]",
|
|
435
|
+
"67:1": "cobblestone_stairs[facing=west,half=bottom,shape=straight]",
|
|
436
|
+
"67:2": "cobblestone_stairs[facing=south,half=bottom,shape=straight]",
|
|
437
|
+
"67:3": "cobblestone_stairs[facing=north,half=bottom,shape=straight]",
|
|
438
|
+
"67:4": "cobblestone_stairs[facing=east,half=top,shape=straight]",
|
|
439
|
+
"67:5": "cobblestone_stairs[facing=west,half=top,shape=straight]",
|
|
440
|
+
"67:6": "cobblestone_stairs[facing=south,half=top,shape=straight]",
|
|
441
|
+
"67:7": "cobblestone_stairs[facing=north,half=top,shape=straight]",
|
|
442
|
+
"68:2": "wall_sign[facing=north]",
|
|
443
|
+
"68:3": "wall_sign[facing=south]",
|
|
444
|
+
"68:4": "wall_sign[facing=west]",
|
|
445
|
+
"68:5": "wall_sign[facing=east]",
|
|
446
|
+
"69:0": "lever[face=ceiling,facing=west,powered=false]",
|
|
447
|
+
"69:1": "lever[face=wall,facing=east,powered=false]",
|
|
448
|
+
"69:2": "lever[face=wall,facing=west,powered=false]",
|
|
449
|
+
"69:3": "lever[face=wall,facing=south,powered=false]",
|
|
450
|
+
"69:4": "lever[face=wall,facing=north,powered=false]",
|
|
451
|
+
"69:5": "lever[face=floor,facing=north,powered=false]",
|
|
452
|
+
"69:6": "lever[face=floor,facing=west,powered=false]",
|
|
453
|
+
"69:7": "lever[face=ceiling,facing=north,powered=false]",
|
|
454
|
+
"69:8": "lever[face=ceiling,facing=west,powered=true]",
|
|
455
|
+
"69:9": "lever[face=wall,facing=east,powered=true]",
|
|
456
|
+
"69:10": "lever[face=wall,facing=west,powered=true]",
|
|
457
|
+
"69:11": "lever[face=wall,facing=south,powered=true]",
|
|
458
|
+
"69:12": "lever[face=wall,facing=north,powered=true]",
|
|
459
|
+
"69:13": "lever[face=floor,facing=north,powered=true]",
|
|
460
|
+
"69:14": "lever[face=floor,facing=west,powered=true]",
|
|
461
|
+
"69:15": "lever[face=ceiling,facing=north,powered=true]",
|
|
462
|
+
"70:0": "stone_pressure_plate[powered=false]",
|
|
463
|
+
"70:1": "stone_pressure_plate[powered=true]",
|
|
464
|
+
"71:0": "iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
465
|
+
"71:1": "iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
466
|
+
"71:2": "iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
467
|
+
"71:3": "iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
468
|
+
"71:4": "iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
469
|
+
"71:5": "iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
470
|
+
"71:6": "iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
471
|
+
"71:7": "iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
472
|
+
"71:8": "iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
473
|
+
"71:9": "iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
474
|
+
"71:10": "iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
475
|
+
"71:11": "iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
476
|
+
"72:0": "oak_pressure_plate[powered=false]",
|
|
477
|
+
"72:1": "oak_pressure_plate[powered=true]",
|
|
478
|
+
"73:0": "redstone_ore[lit=false]",
|
|
479
|
+
"74:0": "redstone_ore[lit=true]",
|
|
480
|
+
"75:1": "redstone_wall_torch[facing=east,lit=false]",
|
|
481
|
+
"75:2": "redstone_wall_torch[facing=west,lit=false]",
|
|
482
|
+
"75:3": "redstone_wall_torch[facing=south,lit=false]",
|
|
483
|
+
"75:4": "redstone_wall_torch[facing=north,lit=false]",
|
|
484
|
+
"75:5": "redstone_torch[lit=false]",
|
|
485
|
+
"76:1": "redstone_wall_torch[facing=east,lit=true]",
|
|
486
|
+
"76:2": "redstone_wall_torch[facing=west,lit=true]",
|
|
487
|
+
"76:3": "redstone_wall_torch[facing=south,lit=true]",
|
|
488
|
+
"76:4": "redstone_wall_torch[facing=north,lit=true]",
|
|
489
|
+
"76:5": "redstone_torch[lit=true]",
|
|
490
|
+
"77:0": "stone_button[face=ceiling,facing=north,powered=false]",
|
|
491
|
+
"77:1": "stone_button[face=wall,facing=east,powered=false]",
|
|
492
|
+
"77:2": "stone_button[face=wall,facing=west,powered=false]",
|
|
493
|
+
"77:3": "stone_button[face=wall,facing=south,powered=false]",
|
|
494
|
+
"77:4": "stone_button[face=wall,facing=north,powered=false]",
|
|
495
|
+
"77:5": "stone_button[face=floor,facing=north,powered=false]",
|
|
496
|
+
"77:8": "stone_button[face=ceiling,facing=north,powered=true]",
|
|
497
|
+
"77:9": "stone_button[face=wall,facing=east,powered=true]",
|
|
498
|
+
"77:10": "stone_button[face=wall,facing=west,powered=true]",
|
|
499
|
+
"77:11": "stone_button[face=wall,facing=south,powered=true]",
|
|
500
|
+
"77:12": "stone_button[face=wall,facing=north,powered=true]",
|
|
501
|
+
"77:13": "stone_button[face=floor,facing=north,powered=true]",
|
|
502
|
+
"78:0": "snow[layers=1]",
|
|
503
|
+
"78:1": "snow[layers=2]",
|
|
504
|
+
"78:2": "snow[layers=3]",
|
|
505
|
+
"78:3": "snow[layers=4]",
|
|
506
|
+
"78:4": "snow[layers=5]",
|
|
507
|
+
"78:5": "snow[layers=6]",
|
|
508
|
+
"78:6": "snow[layers=7]",
|
|
509
|
+
"78:7": "snow[layers=8]",
|
|
510
|
+
"79:0": "ice",
|
|
511
|
+
"80:0": "snow_block",
|
|
512
|
+
"81:0": "cactus[age=0]",
|
|
513
|
+
"81:1": "cactus[age=1]",
|
|
514
|
+
"81:2": "cactus[age=2]",
|
|
515
|
+
"81:3": "cactus[age=3]",
|
|
516
|
+
"81:4": "cactus[age=4]",
|
|
517
|
+
"81:5": "cactus[age=5]",
|
|
518
|
+
"81:6": "cactus[age=6]",
|
|
519
|
+
"81:7": "cactus[age=7]",
|
|
520
|
+
"81:8": "cactus[age=8]",
|
|
521
|
+
"81:9": "cactus[age=9]",
|
|
522
|
+
"81:10": "cactus[age=10]",
|
|
523
|
+
"81:11": "cactus[age=11]",
|
|
524
|
+
"81:12": "cactus[age=12]",
|
|
525
|
+
"81:13": "cactus[age=13]",
|
|
526
|
+
"81:14": "cactus[age=14]",
|
|
527
|
+
"81:15": "cactus[age=15]",
|
|
528
|
+
"82:0": "clay",
|
|
529
|
+
"83:0": "sugar_cane[age=0]",
|
|
530
|
+
"83:1": "sugar_cane[age=1]",
|
|
531
|
+
"83:2": "sugar_cane[age=2]",
|
|
532
|
+
"83:3": "sugar_cane[age=3]",
|
|
533
|
+
"83:4": "sugar_cane[age=4]",
|
|
534
|
+
"83:5": "sugar_cane[age=5]",
|
|
535
|
+
"83:6": "sugar_cane[age=6]",
|
|
536
|
+
"83:7": "sugar_cane[age=7]",
|
|
537
|
+
"83:8": "sugar_cane[age=8]",
|
|
538
|
+
"83:9": "sugar_cane[age=9]",
|
|
539
|
+
"83:10": "sugar_cane[age=10]",
|
|
540
|
+
"83:11": "sugar_cane[age=11]",
|
|
541
|
+
"83:12": "sugar_cane[age=12]",
|
|
542
|
+
"83:13": "sugar_cane[age=13]",
|
|
543
|
+
"83:14": "sugar_cane[age=14]",
|
|
544
|
+
"83:15": "sugar_cane[age=15]",
|
|
545
|
+
"84:0": "jukebox[has_record=false]",
|
|
546
|
+
"84:1": "jukebox[has_record=true]",
|
|
547
|
+
"85:0": "oak_fence[east=false,north=false,south=false,west=false]",
|
|
548
|
+
"86:0": "carved_pumpkin[facing=south]",
|
|
549
|
+
"86:1": "carved_pumpkin[facing=west]",
|
|
550
|
+
"86:2": "carved_pumpkin[facing=north]",
|
|
551
|
+
"86:3": "carved_pumpkin[facing=east]",
|
|
552
|
+
"87:0": "netherrack",
|
|
553
|
+
"88:0": "soul_sand",
|
|
554
|
+
"89:0": "glowstone",
|
|
555
|
+
"90:1": "portal[axis=x]",
|
|
556
|
+
"90:2": "portal[axis=z]",
|
|
557
|
+
"91:0": "jack_o_lantern[facing=south]",
|
|
558
|
+
"91:1": "jack_o_lantern[facing=west]",
|
|
559
|
+
"91:2": "jack_o_lantern[facing=north]",
|
|
560
|
+
"91:3": "jack_o_lantern[facing=east]",
|
|
561
|
+
"92:0": "cake[bites=0]",
|
|
562
|
+
"92:1": "cake[bites=1]",
|
|
563
|
+
"92:2": "cake[bites=2]",
|
|
564
|
+
"92:3": "cake[bites=3]",
|
|
565
|
+
"92:4": "cake[bites=4]",
|
|
566
|
+
"92:5": "cake[bites=5]",
|
|
567
|
+
"92:6": "cake[bites=6]",
|
|
568
|
+
"93:0": "repeater[delay=1,facing=south,locked=false,powered=false]",
|
|
569
|
+
"93:1": "repeater[delay=1,facing=west,locked=false,powered=false]",
|
|
570
|
+
"93:2": "repeater[delay=1,facing=north,locked=false,powered=false]",
|
|
571
|
+
"93:3": "repeater[delay=1,facing=east,locked=false,powered=false]",
|
|
572
|
+
"93:4": "repeater[delay=2,facing=south,locked=false,powered=false]",
|
|
573
|
+
"93:5": "repeater[delay=2,facing=west,locked=false,powered=false]",
|
|
574
|
+
"93:6": "repeater[delay=2,facing=north,locked=false,powered=false]",
|
|
575
|
+
"93:7": "repeater[delay=2,facing=east,locked=false,powered=false]",
|
|
576
|
+
"93:8": "repeater[delay=3,facing=south,locked=false,powered=false]",
|
|
577
|
+
"93:9": "repeater[delay=3,facing=west,locked=false,powered=false]",
|
|
578
|
+
"93:10": "repeater[delay=3,facing=north,locked=false,powered=false]",
|
|
579
|
+
"93:11": "repeater[delay=3,facing=east,locked=false,powered=false]",
|
|
580
|
+
"93:12": "repeater[delay=4,facing=south,locked=false,powered=false]",
|
|
581
|
+
"93:13": "repeater[delay=4,facing=west,locked=false,powered=false]",
|
|
582
|
+
"93:14": "repeater[delay=4,facing=north,locked=false,powered=false]",
|
|
583
|
+
"93:15": "repeater[delay=4,facing=east,locked=false,powered=false]",
|
|
584
|
+
"94:0": "repeater[delay=1,facing=south,locked=false,powered=true]",
|
|
585
|
+
"94:1": "repeater[delay=1,facing=west,locked=false,powered=true]",
|
|
586
|
+
"94:2": "repeater[delay=1,facing=north,locked=false,powered=true]",
|
|
587
|
+
"94:3": "repeater[delay=1,facing=east,locked=false,powered=true]",
|
|
588
|
+
"94:4": "repeater[delay=2,facing=south,locked=false,powered=true]",
|
|
589
|
+
"94:5": "repeater[delay=2,facing=west,locked=false,powered=true]",
|
|
590
|
+
"94:6": "repeater[delay=2,facing=north,locked=false,powered=true]",
|
|
591
|
+
"94:7": "repeater[delay=2,facing=east,locked=false,powered=true]",
|
|
592
|
+
"94:8": "repeater[delay=3,facing=south,locked=false,powered=true]",
|
|
593
|
+
"94:9": "repeater[delay=3,facing=west,locked=false,powered=true]",
|
|
594
|
+
"94:10": "repeater[delay=3,facing=north,locked=false,powered=true]",
|
|
595
|
+
"94:11": "repeater[delay=3,facing=east,locked=false,powered=true]",
|
|
596
|
+
"94:12": "repeater[delay=4,facing=south,locked=false,powered=true]",
|
|
597
|
+
"94:13": "repeater[delay=4,facing=west,locked=false,powered=true]",
|
|
598
|
+
"94:14": "repeater[delay=4,facing=north,locked=false,powered=true]",
|
|
599
|
+
"94:15": "repeater[delay=4,facing=east,locked=false,powered=true]",
|
|
600
|
+
"95:0": "white_stained_glass",
|
|
601
|
+
"95:1": "orange_stained_glass",
|
|
602
|
+
"95:2": "magenta_stained_glass",
|
|
603
|
+
"95:3": "light_blue_stained_glass",
|
|
604
|
+
"95:4": "yellow_stained_glass",
|
|
605
|
+
"95:5": "lime_stained_glass",
|
|
606
|
+
"95:6": "pink_stained_glass",
|
|
607
|
+
"95:7": "gray_stained_glass",
|
|
608
|
+
"95:8": "light_gray_stained_glass",
|
|
609
|
+
"95:9": "cyan_stained_glass",
|
|
610
|
+
"95:10": "purple_stained_glass",
|
|
611
|
+
"95:11": "blue_stained_glass",
|
|
612
|
+
"95:12": "brown_stained_glass",
|
|
613
|
+
"95:13": "green_stained_glass",
|
|
614
|
+
"95:14": "red_stained_glass",
|
|
615
|
+
"95:15": "black_stained_glass",
|
|
616
|
+
"96:0": "oak_trapdoor[facing=north,half=bottom,open=false]",
|
|
617
|
+
"96:1": "oak_trapdoor[facing=south,half=bottom,open=false]",
|
|
618
|
+
"96:2": "oak_trapdoor[facing=west,half=bottom,open=false]",
|
|
619
|
+
"96:3": "oak_trapdoor[facing=east,half=bottom,open=false]",
|
|
620
|
+
"96:4": "oak_trapdoor[facing=north,half=bottom,open=true]",
|
|
621
|
+
"96:5": "oak_trapdoor[facing=south,half=bottom,open=true]",
|
|
622
|
+
"96:6": "oak_trapdoor[facing=west,half=bottom,open=true]",
|
|
623
|
+
"96:7": "oak_trapdoor[facing=east,half=bottom,open=true]",
|
|
624
|
+
"96:8": "oak_trapdoor[facing=north,half=top,open=false]",
|
|
625
|
+
"96:9": "oak_trapdoor[facing=south,half=top,open=false]",
|
|
626
|
+
"96:10": "oak_trapdoor[facing=west,half=top,open=false]",
|
|
627
|
+
"96:11": "oak_trapdoor[facing=east,half=top,open=false]",
|
|
628
|
+
"96:12": "oak_trapdoor[facing=north,half=top,open=true]",
|
|
629
|
+
"96:13": "oak_trapdoor[facing=south,half=top,open=true]",
|
|
630
|
+
"96:14": "oak_trapdoor[facing=west,half=top,open=true]",
|
|
631
|
+
"96:15": "oak_trapdoor[facing=east,half=top,open=true]",
|
|
632
|
+
"97:0": "infested_stone",
|
|
633
|
+
"97:1": "infested_cobblestone",
|
|
634
|
+
"97:2": "infested_stone_bricks",
|
|
635
|
+
"97:3": "infested_mossy_stone_bricks",
|
|
636
|
+
"97:4": "infested_cracked_stone_bricks",
|
|
637
|
+
"97:5": "infested_chiseled_stone_bricks",
|
|
638
|
+
"98:0": "stone_bricks",
|
|
639
|
+
"98:1": "mossy_stone_bricks",
|
|
640
|
+
"98:2": "cracked_stone_bricks",
|
|
641
|
+
"98:3": "chiseled_stone_bricks",
|
|
642
|
+
"99:0": "brown_mushroom_block[north=false,east=false,south=false,west=false,up=false,down=false]",
|
|
643
|
+
"99:1": "brown_mushroom_block[north=true,east=false,south=false,west=true,up=true,down=false]",
|
|
644
|
+
"99:2": "brown_mushroom_block[north=true,east=false,south=false,west=false,up=true,down=false]",
|
|
645
|
+
"99:3": "brown_mushroom_block[north=true,east=true,south=false,west=false,up=true,down=false]",
|
|
646
|
+
"99:4": "brown_mushroom_block[north=false,east=false,south=false,west=true,up=true,down=false]",
|
|
647
|
+
"99:5": "brown_mushroom_block[north=false,east=false,south=false,west=false,up=true,down=false]",
|
|
648
|
+
"99:6": "brown_mushroom_block[north=false,east=true,south=false,west=false,up=true,down=false]",
|
|
649
|
+
"99:7": "brown_mushroom_block[north=false,east=false,south=true,west=true,up=true,down=false]",
|
|
650
|
+
"99:8": "brown_mushroom_block[north=false,east=false,south=true,west=false,up=true,down=false]",
|
|
651
|
+
"99:9": "brown_mushroom_block[north=false,east=true,south=true,west=false,up=true,down=false]",
|
|
652
|
+
"99:10": "mushroom_stem[north=true,east=true,south=true,west=true,up=false,down=false]",
|
|
653
|
+
"99:14": "brown_mushroom_block[north=true,east=true,south=true,west=true,up=true,down=true]",
|
|
654
|
+
"99:15": "mushroom_stem[north=true,east=true,south=true,west=true,up=true,down=true]",
|
|
655
|
+
"100:0": "red_mushroom_block[north=false,east=false,south=false,west=false,up=false,down=false]",
|
|
656
|
+
"100:1": "red_mushroom_block[north=true,east=false,south=false,west=true,up=true,down=false]",
|
|
657
|
+
"100:2": "red_mushroom_block[north=true,east=false,south=false,west=false,up=true,down=false]",
|
|
658
|
+
"100:3": "red_mushroom_block[north=true,east=true,south=false,west=false,up=true,down=false]",
|
|
659
|
+
"100:4": "red_mushroom_block[north=false,east=false,south=false,west=true,up=true,down=false]",
|
|
660
|
+
"100:5": "red_mushroom_block[north=false,east=false,south=false,west=false,up=true,down=false]",
|
|
661
|
+
"100:6": "red_mushroom_block[north=false,east=true,south=false,west=false,up=true,down=false]",
|
|
662
|
+
"100:7": "red_mushroom_block[north=false,east=false,south=true,west=true,up=true,down=false]",
|
|
663
|
+
"100:8": "red_mushroom_block[north=false,east=false,south=true,west=false,up=true,down=false]",
|
|
664
|
+
"100:9": "red_mushroom_block[north=false,east=true,south=true,west=false,up=true,down=false]",
|
|
665
|
+
"100:10": "mushroom_stem[north=true,east=true,south=true,west=true,up=false,down=false]",
|
|
666
|
+
"100:14": "red_mushroom_block[north=true,east=true,south=true,west=true,up=true,down=true]",
|
|
667
|
+
"100:15": "mushroom_stem[north=true,east=true,south=true,west=true,up=true,down=true]",
|
|
668
|
+
"101:0": "iron_bars[east=false,north=false,south=false,west=false]",
|
|
669
|
+
"102:0": "glass_pane[east=false,north=false,south=false,west=false]",
|
|
670
|
+
"103:0": "melon_block",
|
|
671
|
+
"104:0": "pumpkin_stem[age=0]",
|
|
672
|
+
"104:1": "pumpkin_stem[age=1]",
|
|
673
|
+
"104:2": "pumpkin_stem[age=2]",
|
|
674
|
+
"104:3": "pumpkin_stem[age=3]",
|
|
675
|
+
"104:4": "pumpkin_stem[age=4]",
|
|
676
|
+
"104:5": "pumpkin_stem[age=5]",
|
|
677
|
+
"104:6": "pumpkin_stem[age=6]",
|
|
678
|
+
"104:7": "pumpkin_stem[age=7]",
|
|
679
|
+
"105:0": "melon_stem[age=0]",
|
|
680
|
+
"105:1": "melon_stem[age=1]",
|
|
681
|
+
"105:2": "melon_stem[age=2]",
|
|
682
|
+
"105:3": "melon_stem[age=3]",
|
|
683
|
+
"105:4": "melon_stem[age=4]",
|
|
684
|
+
"105:5": "melon_stem[age=5]",
|
|
685
|
+
"105:6": "melon_stem[age=6]",
|
|
686
|
+
"105:7": "melon_stem[age=7]",
|
|
687
|
+
"106:0": "vine[east=false,north=false,south=false,up=true,west=false]",
|
|
688
|
+
"106:1": "vine[east=false,north=false,south=true,up=true,west=false]",
|
|
689
|
+
"106:2": "vine[east=false,north=false,south=false,up=true,west=true]",
|
|
690
|
+
"106:3": "vine[east=false,north=false,south=true,up=true,west=true]",
|
|
691
|
+
"106:4": "vine[east=false,north=true,south=false,up=true,west=false]",
|
|
692
|
+
"106:5": "vine[east=false,north=true,south=true,up=true,west=false]",
|
|
693
|
+
"106:6": "vine[east=false,north=true,south=false,up=true,west=true]",
|
|
694
|
+
"106:7": "vine[east=false,north=true,south=true,up=true,west=true]",
|
|
695
|
+
"106:8": "vine[east=true,north=false,south=false,up=true,west=false]",
|
|
696
|
+
"106:9": "vine[east=true,north=false,south=true,up=true,west=false]",
|
|
697
|
+
"106:10": "vine[east=true,north=false,south=false,up=true,west=true]",
|
|
698
|
+
"106:11": "vine[east=true,north=false,south=true,up=true,west=true]",
|
|
699
|
+
"106:12": "vine[east=true,north=true,south=false,up=true,west=false]",
|
|
700
|
+
"106:13": "vine[east=true,north=true,south=true,up=true,west=false]",
|
|
701
|
+
"106:14": "vine[east=true,north=true,south=false,up=true,west=true]",
|
|
702
|
+
"106:15": "vine[east=true,north=true,south=true,up=true,west=true]",
|
|
703
|
+
"107:0": "oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
704
|
+
"107:1": "oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
705
|
+
"107:2": "oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
706
|
+
"107:3": "oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
707
|
+
"107:4": "oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
708
|
+
"107:5": "oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
709
|
+
"107:6": "oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
710
|
+
"107:7": "oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
711
|
+
"107:8": "oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
712
|
+
"107:9": "oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
713
|
+
"107:10": "oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
714
|
+
"107:11": "oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
715
|
+
"107:12": "oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
716
|
+
"107:13": "oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
717
|
+
"107:14": "oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
718
|
+
"107:15": "oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
719
|
+
"108:0": "brick_stairs[facing=east,half=bottom,shape=straight]",
|
|
720
|
+
"108:1": "brick_stairs[facing=west,half=bottom,shape=straight]",
|
|
721
|
+
"108:2": "brick_stairs[facing=south,half=bottom,shape=straight]",
|
|
722
|
+
"108:3": "brick_stairs[facing=north,half=bottom,shape=straight]",
|
|
723
|
+
"108:4": "brick_stairs[facing=east,half=top,shape=straight]",
|
|
724
|
+
"108:5": "brick_stairs[facing=west,half=top,shape=straight]",
|
|
725
|
+
"108:6": "brick_stairs[facing=south,half=top,shape=straight]",
|
|
726
|
+
"108:7": "brick_stairs[facing=north,half=top,shape=straight]",
|
|
727
|
+
"109:0": "stone_brick_stairs[facing=east,half=bottom,shape=straight]",
|
|
728
|
+
"109:1": "stone_brick_stairs[facing=west,half=bottom,shape=straight]",
|
|
729
|
+
"109:2": "stone_brick_stairs[facing=south,half=bottom,shape=straight]",
|
|
730
|
+
"109:3": "stone_brick_stairs[facing=north,half=bottom,shape=straight]",
|
|
731
|
+
"109:4": "stone_brick_stairs[facing=east,half=top,shape=straight]",
|
|
732
|
+
"109:5": "stone_brick_stairs[facing=west,half=top,shape=straight]",
|
|
733
|
+
"109:6": "stone_brick_stairs[facing=south,half=top,shape=straight]",
|
|
734
|
+
"109:7": "stone_brick_stairs[facing=north,half=top,shape=straight]",
|
|
735
|
+
"110:0": "mycelium[snowy=false]",
|
|
736
|
+
"111:0": "lily_pad",
|
|
737
|
+
"112:0": "nether_bricks",
|
|
738
|
+
"113:0": "nether_brick_fence[east=false,north=false,south=false,west=false]",
|
|
739
|
+
"114:0": "nether_brick_stairs[facing=east,half=bottom,shape=straight]",
|
|
740
|
+
"114:1": "nether_brick_stairs[facing=west,half=bottom,shape=straight]",
|
|
741
|
+
"114:2": "nether_brick_stairs[facing=south,half=bottom,shape=straight]",
|
|
742
|
+
"114:3": "nether_brick_stairs[facing=north,half=bottom,shape=straight]",
|
|
743
|
+
"114:4": "nether_brick_stairs[facing=east,half=top,shape=straight]",
|
|
744
|
+
"114:5": "nether_brick_stairs[facing=west,half=top,shape=straight]",
|
|
745
|
+
"114:6": "nether_brick_stairs[facing=south,half=top,shape=straight]",
|
|
746
|
+
"114:7": "nether_brick_stairs[facing=north,half=top,shape=straight]",
|
|
747
|
+
"115:0": "nether_wart[age=0]",
|
|
748
|
+
"115:1": "nether_wart[age=1]",
|
|
749
|
+
"115:2": "nether_wart[age=2]",
|
|
750
|
+
"115:3": "nether_wart[age=3]",
|
|
751
|
+
"116:0": "enchanting_table",
|
|
752
|
+
"117:0": "brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]",
|
|
753
|
+
"117:1": "brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]",
|
|
754
|
+
"117:2": "brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]",
|
|
755
|
+
"117:3": "brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]",
|
|
756
|
+
"117:4": "brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]",
|
|
757
|
+
"117:5": "brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]",
|
|
758
|
+
"117:6": "brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]",
|
|
759
|
+
"117:7": "brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]",
|
|
760
|
+
"118:0": "cauldron[level=0]",
|
|
761
|
+
"118:1": "cauldron[level=1]",
|
|
762
|
+
"118:2": "cauldron[level=2]",
|
|
763
|
+
"118:3": "cauldron[level=3]",
|
|
764
|
+
"119:0": "end_portal",
|
|
765
|
+
"120:0": "end_portal_frame[eye=false,facing=south]",
|
|
766
|
+
"120:1": "end_portal_frame[eye=false,facing=west]",
|
|
767
|
+
"120:2": "end_portal_frame[eye=false,facing=north]",
|
|
768
|
+
"120:3": "end_portal_frame[eye=false,facing=east]",
|
|
769
|
+
"120:4": "end_portal_frame[eye=true,facing=south]",
|
|
770
|
+
"120:5": "end_portal_frame[eye=true,facing=west]",
|
|
771
|
+
"120:6": "end_portal_frame[eye=true,facing=north]",
|
|
772
|
+
"120:7": "end_portal_frame[eye=true,facing=east]",
|
|
773
|
+
"121:0": "end_stone",
|
|
774
|
+
"122:0": "dragon_egg",
|
|
775
|
+
"123:0": "redstone_lamp[lit=false]",
|
|
776
|
+
"124:0": "redstone_lamp[lit=true]",
|
|
777
|
+
"125:0": "oak_slab[type=double]",
|
|
778
|
+
"125:1": "spruce_slab[type=double]",
|
|
779
|
+
"125:2": "birch_slab[type=double]",
|
|
780
|
+
"125:3": "jungle_slab[type=double]",
|
|
781
|
+
"125:4": "acacia_slab[type=double]",
|
|
782
|
+
"125:5": "dark_oak_slab[type=double]",
|
|
783
|
+
"126:0": "oak_slab[type=bottom]",
|
|
784
|
+
"126:1": "spruce_slab[type=bottom]",
|
|
785
|
+
"126:2": "birch_slab[type=bottom]",
|
|
786
|
+
"126:3": "jungle_slab[type=bottom]",
|
|
787
|
+
"126:4": "acacia_slab[type=bottom]",
|
|
788
|
+
"126:5": "dark_oak_slab[type=bottom]",
|
|
789
|
+
"126:8": "oak_slab[type=top]",
|
|
790
|
+
"126:9": "spruce_slab[type=top]",
|
|
791
|
+
"126:10": "birch_slab[type=top]",
|
|
792
|
+
"126:11": "jungle_slab[type=top]",
|
|
793
|
+
"126:12": "acacia_slab[type=top]",
|
|
794
|
+
"126:13": "dark_oak_slab[type=top]",
|
|
795
|
+
"127:0": "cocoa[age=0,facing=south]",
|
|
796
|
+
"127:1": "cocoa[age=0,facing=west]",
|
|
797
|
+
"127:2": "cocoa[age=0,facing=north]",
|
|
798
|
+
"127:3": "cocoa[age=0,facing=east]",
|
|
799
|
+
"127:4": "cocoa[age=1,facing=south]",
|
|
800
|
+
"127:5": "cocoa[age=1,facing=west]",
|
|
801
|
+
"127:6": "cocoa[age=1,facing=north]",
|
|
802
|
+
"127:7": "cocoa[age=1,facing=east]",
|
|
803
|
+
"127:8": "cocoa[age=2,facing=south]",
|
|
804
|
+
"127:9": "cocoa[age=2,facing=west]",
|
|
805
|
+
"127:10": "cocoa[age=2,facing=north]",
|
|
806
|
+
"127:11": "cocoa[age=2,facing=east]",
|
|
807
|
+
"128:0": "sandstone_stairs[facing=east,half=bottom,shape=straight]",
|
|
808
|
+
"128:1": "sandstone_stairs[facing=west,half=bottom,shape=straight]",
|
|
809
|
+
"128:2": "sandstone_stairs[facing=south,half=bottom,shape=straight]",
|
|
810
|
+
"128:3": "sandstone_stairs[facing=north,half=bottom,shape=straight]",
|
|
811
|
+
"128:4": "sandstone_stairs[facing=east,half=top,shape=straight]",
|
|
812
|
+
"128:5": "sandstone_stairs[facing=west,half=top,shape=straight]",
|
|
813
|
+
"128:6": "sandstone_stairs[facing=south,half=top,shape=straight]",
|
|
814
|
+
"128:7": "sandstone_stairs[facing=north,half=top,shape=straight]",
|
|
815
|
+
"129:0": "emerald_ore",
|
|
816
|
+
"130:2": "ender_chest[facing=north]",
|
|
817
|
+
"130:3": "ender_chest[facing=south]",
|
|
818
|
+
"130:4": "ender_chest[facing=west]",
|
|
819
|
+
"130:5": "ender_chest[facing=east]",
|
|
820
|
+
"131:0": "tripwire_hook[attached=false,facing=south,powered=false]",
|
|
821
|
+
"131:1": "tripwire_hook[attached=false,facing=west,powered=false]",
|
|
822
|
+
"131:2": "tripwire_hook[attached=false,facing=north,powered=false]",
|
|
823
|
+
"131:3": "tripwire_hook[attached=false,facing=east,powered=false]",
|
|
824
|
+
"131:4": "tripwire_hook[attached=true,facing=south,powered=false]",
|
|
825
|
+
"131:5": "tripwire_hook[attached=true,facing=west,powered=false]",
|
|
826
|
+
"131:6": "tripwire_hook[attached=true,facing=north,powered=false]",
|
|
827
|
+
"131:7": "tripwire_hook[attached=true,facing=east,powered=false]",
|
|
828
|
+
"131:8": "tripwire_hook[attached=false,facing=south,powered=true]",
|
|
829
|
+
"131:9": "tripwire_hook[attached=false,facing=west,powered=true]",
|
|
830
|
+
"131:10": "tripwire_hook[attached=false,facing=north,powered=true]",
|
|
831
|
+
"131:11": "tripwire_hook[attached=false,facing=east,powered=true]",
|
|
832
|
+
"131:12": "tripwire_hook[attached=true,facing=south,powered=true]",
|
|
833
|
+
"131:13": "tripwire_hook[attached=true,facing=west,powered=true]",
|
|
834
|
+
"131:14": "tripwire_hook[attached=true,facing=north,powered=true]",
|
|
835
|
+
"131:15": "tripwire_hook[attached=true,facing=east,powered=true]",
|
|
836
|
+
"132:0": "tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]",
|
|
837
|
+
"132:1": "tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]",
|
|
838
|
+
"132:4": "tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]",
|
|
839
|
+
"132:5": "tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]",
|
|
840
|
+
"132:8": "tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]",
|
|
841
|
+
"132:9": "tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]",
|
|
842
|
+
"132:12": "tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]",
|
|
843
|
+
"132:13": "tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]",
|
|
844
|
+
"133:0": "emerald_block",
|
|
845
|
+
"134:0": "spruce_stairs[facing=east,half=bottom,shape=straight]",
|
|
846
|
+
"134:1": "spruce_stairs[facing=west,half=bottom,shape=straight]",
|
|
847
|
+
"134:2": "spruce_stairs[facing=south,half=bottom,shape=straight]",
|
|
848
|
+
"134:3": "spruce_stairs[facing=north,half=bottom,shape=straight]",
|
|
849
|
+
"134:4": "spruce_stairs[facing=east,half=top,shape=straight]",
|
|
850
|
+
"134:5": "spruce_stairs[facing=west,half=top,shape=straight]",
|
|
851
|
+
"134:6": "spruce_stairs[facing=south,half=top,shape=straight]",
|
|
852
|
+
"134:7": "spruce_stairs[facing=north,half=top,shape=straight]",
|
|
853
|
+
"135:0": "birch_stairs[facing=east,half=bottom,shape=straight]",
|
|
854
|
+
"135:1": "birch_stairs[facing=west,half=bottom,shape=straight]",
|
|
855
|
+
"135:2": "birch_stairs[facing=south,half=bottom,shape=straight]",
|
|
856
|
+
"135:3": "birch_stairs[facing=north,half=bottom,shape=straight]",
|
|
857
|
+
"135:4": "birch_stairs[facing=east,half=top,shape=straight]",
|
|
858
|
+
"135:5": "birch_stairs[facing=west,half=top,shape=straight]",
|
|
859
|
+
"135:6": "birch_stairs[facing=south,half=top,shape=straight]",
|
|
860
|
+
"135:7": "birch_stairs[facing=north,half=top,shape=straight]",
|
|
861
|
+
"136:0": "jungle_stairs[facing=east,half=bottom,shape=straight]",
|
|
862
|
+
"136:1": "jungle_stairs[facing=west,half=bottom,shape=straight]",
|
|
863
|
+
"136:2": "jungle_stairs[facing=south,half=bottom,shape=straight]",
|
|
864
|
+
"136:3": "jungle_stairs[facing=north,half=bottom,shape=straight]",
|
|
865
|
+
"136:4": "jungle_stairs[facing=east,half=top,shape=straight]",
|
|
866
|
+
"136:5": "jungle_stairs[facing=west,half=top,shape=straight]",
|
|
867
|
+
"136:6": "jungle_stairs[facing=south,half=top,shape=straight]",
|
|
868
|
+
"136:7": "jungle_stairs[facing=north,half=top,shape=straight]",
|
|
869
|
+
"137:0": "command_block[conditional=false,facing=down]",
|
|
870
|
+
"137:1": "command_block[conditional=false,facing=up]",
|
|
871
|
+
"137:2": "command_block[conditional=false,facing=north]",
|
|
872
|
+
"137:3": "command_block[conditional=false,facing=south]",
|
|
873
|
+
"137:4": "command_block[conditional=false,facing=west]",
|
|
874
|
+
"137:5": "command_block[conditional=false,facing=east]",
|
|
875
|
+
"137:8": "command_block[conditional=true,facing=down]",
|
|
876
|
+
"137:9": "command_block[conditional=true,facing=up]",
|
|
877
|
+
"137:10": "command_block[conditional=true,facing=north]",
|
|
878
|
+
"137:11": "command_block[conditional=true,facing=south]",
|
|
879
|
+
"137:12": "command_block[conditional=true,facing=west]",
|
|
880
|
+
"137:13": "command_block[conditional=true,facing=east]",
|
|
881
|
+
"138:0": "beacon",
|
|
882
|
+
"139:0": "cobblestone_wall[east=false,north=false,south=false,up=false,west=false]",
|
|
883
|
+
"139:1": "mossy_cobblestone_wall[east=false,north=false,south=false,up=false,west=false]",
|
|
884
|
+
"140:0": "potted_cactus",
|
|
885
|
+
"140:1": "potted_cactus",
|
|
886
|
+
"140:2": "potted_cactus",
|
|
887
|
+
"140:3": "potted_cactus",
|
|
888
|
+
"140:4": "potted_cactus",
|
|
889
|
+
"140:5": "potted_cactus",
|
|
890
|
+
"140:6": "potted_cactus",
|
|
891
|
+
"140:7": "potted_cactus",
|
|
892
|
+
"140:8": "potted_cactus",
|
|
893
|
+
"140:9": "potted_cactus",
|
|
894
|
+
"140:10": "potted_cactus",
|
|
895
|
+
"140:11": "potted_cactus",
|
|
896
|
+
"140:12": "potted_cactus",
|
|
897
|
+
"140:13": "potted_cactus",
|
|
898
|
+
"140:14": "potted_cactus",
|
|
899
|
+
"140:15": "potted_cactus",
|
|
900
|
+
"141:0": "carrots[age=0]",
|
|
901
|
+
"141:1": "carrots[age=1]",
|
|
902
|
+
"141:2": "carrots[age=2]",
|
|
903
|
+
"141:3": "carrots[age=3]",
|
|
904
|
+
"141:4": "carrots[age=4]",
|
|
905
|
+
"141:5": "carrots[age=5]",
|
|
906
|
+
"141:6": "carrots[age=6]",
|
|
907
|
+
"141:7": "carrots[age=7]",
|
|
908
|
+
"142:0": "potatoes[age=0]",
|
|
909
|
+
"142:1": "potatoes[age=1]",
|
|
910
|
+
"142:2": "potatoes[age=2]",
|
|
911
|
+
"142:3": "potatoes[age=3]",
|
|
912
|
+
"142:4": "potatoes[age=4]",
|
|
913
|
+
"142:5": "potatoes[age=5]",
|
|
914
|
+
"142:6": "potatoes[age=6]",
|
|
915
|
+
"142:7": "potatoes[age=7]",
|
|
916
|
+
"143:0": "oak_button[face=ceiling,facing=north,powered=false]",
|
|
917
|
+
"143:1": "oak_button[face=wall,facing=east,powered=false]",
|
|
918
|
+
"143:2": "oak_button[face=wall,facing=west,powered=false]",
|
|
919
|
+
"143:3": "oak_button[face=wall,facing=south,powered=false]",
|
|
920
|
+
"143:4": "oak_button[face=wall,facing=north,powered=false]",
|
|
921
|
+
"143:5": "oak_button[face=floor,facing=north,powered=false]",
|
|
922
|
+
"143:8": "oak_button[face=ceiling,facing=north,powered=true]",
|
|
923
|
+
"143:9": "oak_button[face=wall,facing=east,powered=true]",
|
|
924
|
+
"143:10": "oak_button[face=wall,facing=west,powered=true]",
|
|
925
|
+
"143:11": "oak_button[face=wall,facing=south,powered=true]",
|
|
926
|
+
"143:12": "oak_button[face=wall,facing=north,powered=true]",
|
|
927
|
+
"143:13": "oak_button[face=floor,facing=north,powered=true]",
|
|
928
|
+
"144:0": "player_head[facing=down]",
|
|
929
|
+
"144:1": "player_head[facing=up]",
|
|
930
|
+
"144:2": "player_head[facing=north]",
|
|
931
|
+
"144:3": "player_head[facing=south]",
|
|
932
|
+
"144:4": "player_head[facing=west]",
|
|
933
|
+
"144:5": "player_head[facing=east]",
|
|
934
|
+
"144:8": "player_head[facing=down]",
|
|
935
|
+
"144:9": "player_head[facing=up]",
|
|
936
|
+
"144:10": "player_head[facing=north]",
|
|
937
|
+
"144:11": "player_head[facing=south]",
|
|
938
|
+
"144:12": "player_head[facing=west]",
|
|
939
|
+
"144:13": "player_head[facing=east]",
|
|
940
|
+
"145:0": "anvil[facing=south]",
|
|
941
|
+
"145:1": "anvil[facing=west]",
|
|
942
|
+
"145:2": "anvil[facing=north]",
|
|
943
|
+
"145:3": "anvil[facing=east]",
|
|
944
|
+
"145:4": "chipped_anvil[facing=south]",
|
|
945
|
+
"145:5": "chipped_anvil[facing=west]",
|
|
946
|
+
"145:6": "chipped_anvil[facing=north]",
|
|
947
|
+
"145:7": "chipped_anvil[facing=east]",
|
|
948
|
+
"145:8": "damaged_anvil[facing=south]",
|
|
949
|
+
"145:9": "damaged_anvil[facing=west]",
|
|
950
|
+
"145:10": "damaged_anvil[facing=north]",
|
|
951
|
+
"145:11": "damaged_anvil[facing=east]",
|
|
952
|
+
"146:2": "trapped_chest[facing=north,type=single]",
|
|
953
|
+
"146:3": "trapped_chest[facing=south,type=single]",
|
|
954
|
+
"146:4": "trapped_chest[facing=west,type=single]",
|
|
955
|
+
"146:5": "trapped_chest[facing=east,type=single]",
|
|
956
|
+
"147:0": "light_weighted_pressure_plate[power=0]",
|
|
957
|
+
"147:1": "light_weighted_pressure_plate[power=1]",
|
|
958
|
+
"147:2": "light_weighted_pressure_plate[power=2]",
|
|
959
|
+
"147:3": "light_weighted_pressure_plate[power=3]",
|
|
960
|
+
"147:4": "light_weighted_pressure_plate[power=4]",
|
|
961
|
+
"147:5": "light_weighted_pressure_plate[power=5]",
|
|
962
|
+
"147:6": "light_weighted_pressure_plate[power=6]",
|
|
963
|
+
"147:7": "light_weighted_pressure_plate[power=7]",
|
|
964
|
+
"147:8": "light_weighted_pressure_plate[power=8]",
|
|
965
|
+
"147:9": "light_weighted_pressure_plate[power=9]",
|
|
966
|
+
"147:10": "light_weighted_pressure_plate[power=10]",
|
|
967
|
+
"147:11": "light_weighted_pressure_plate[power=11]",
|
|
968
|
+
"147:12": "light_weighted_pressure_plate[power=12]",
|
|
969
|
+
"147:13": "light_weighted_pressure_plate[power=13]",
|
|
970
|
+
"147:14": "light_weighted_pressure_plate[power=14]",
|
|
971
|
+
"147:15": "light_weighted_pressure_plate[power=15]",
|
|
972
|
+
"148:0": "heavy_weighted_pressure_plate[power=0]",
|
|
973
|
+
"148:1": "heavy_weighted_pressure_plate[power=1]",
|
|
974
|
+
"148:2": "heavy_weighted_pressure_plate[power=2]",
|
|
975
|
+
"148:3": "heavy_weighted_pressure_plate[power=3]",
|
|
976
|
+
"148:4": "heavy_weighted_pressure_plate[power=4]",
|
|
977
|
+
"148:5": "heavy_weighted_pressure_plate[power=5]",
|
|
978
|
+
"148:6": "heavy_weighted_pressure_plate[power=6]",
|
|
979
|
+
"148:7": "heavy_weighted_pressure_plate[power=7]",
|
|
980
|
+
"148:8": "heavy_weighted_pressure_plate[power=8]",
|
|
981
|
+
"148:9": "heavy_weighted_pressure_plate[power=9]",
|
|
982
|
+
"148:10": "heavy_weighted_pressure_plate[power=10]",
|
|
983
|
+
"148:11": "heavy_weighted_pressure_plate[power=11]",
|
|
984
|
+
"148:12": "heavy_weighted_pressure_plate[power=12]",
|
|
985
|
+
"148:13": "heavy_weighted_pressure_plate[power=13]",
|
|
986
|
+
"148:14": "heavy_weighted_pressure_plate[power=14]",
|
|
987
|
+
"148:15": "heavy_weighted_pressure_plate[power=15]",
|
|
988
|
+
"149:0": "comparator[facing=south,mode=compare,powered=false]",
|
|
989
|
+
"149:1": "comparator[facing=west,mode=compare,powered=false]",
|
|
990
|
+
"149:2": "comparator[facing=north,mode=compare,powered=false]",
|
|
991
|
+
"149:3": "comparator[facing=east,mode=compare,powered=false]",
|
|
992
|
+
"149:4": "comparator[facing=south,mode=subtract,powered=false]",
|
|
993
|
+
"149:5": "comparator[facing=west,mode=subtract,powered=false]",
|
|
994
|
+
"149:6": "comparator[facing=north,mode=subtract,powered=false]",
|
|
995
|
+
"149:7": "comparator[facing=east,mode=subtract,powered=false]",
|
|
996
|
+
"149:8": "comparator[facing=south,mode=compare,powered=true]",
|
|
997
|
+
"149:9": "comparator[facing=west,mode=compare,powered=true]",
|
|
998
|
+
"149:10": "comparator[facing=north,mode=compare,powered=true]",
|
|
999
|
+
"149:11": "comparator[facing=east,mode=compare,powered=true]",
|
|
1000
|
+
"149:12": "comparator[facing=south,mode=subtract,powered=true]",
|
|
1001
|
+
"149:13": "comparator[facing=west,mode=subtract,powered=true]",
|
|
1002
|
+
"149:14": "comparator[facing=north,mode=subtract,powered=true]",
|
|
1003
|
+
"149:15": "comparator[facing=east,mode=subtract,powered=true]",
|
|
1004
|
+
"150:0": "comparator[facing=south,mode=compare,powered=false]",
|
|
1005
|
+
"150:1": "comparator[facing=west,mode=compare,powered=false]",
|
|
1006
|
+
"150:2": "comparator[facing=north,mode=compare,powered=false]",
|
|
1007
|
+
"150:3": "comparator[facing=east,mode=compare,powered=false]",
|
|
1008
|
+
"150:4": "comparator[facing=south,mode=subtract,powered=false]",
|
|
1009
|
+
"150:5": "comparator[facing=west,mode=subtract,powered=false]",
|
|
1010
|
+
"150:6": "comparator[facing=north,mode=subtract,powered=false]",
|
|
1011
|
+
"150:7": "comparator[facing=east,mode=subtract,powered=false]",
|
|
1012
|
+
"150:8": "comparator[facing=south,mode=compare,powered=true]",
|
|
1013
|
+
"150:9": "comparator[facing=west,mode=compare,powered=true]",
|
|
1014
|
+
"150:10": "comparator[facing=north,mode=compare,powered=true]",
|
|
1015
|
+
"150:11": "comparator[facing=east,mode=compare,powered=true]",
|
|
1016
|
+
"150:12": "comparator[facing=south,mode=subtract,powered=true]",
|
|
1017
|
+
"150:13": "comparator[facing=west,mode=subtract,powered=true]",
|
|
1018
|
+
"150:14": "comparator[facing=north,mode=subtract,powered=true]",
|
|
1019
|
+
"150:15": "comparator[facing=east,mode=subtract,powered=true]",
|
|
1020
|
+
"151:0": "daylight_detector[inverted=false,power=0]",
|
|
1021
|
+
"151:1": "daylight_detector[inverted=false,power=1]",
|
|
1022
|
+
"151:2": "daylight_detector[inverted=false,power=2]",
|
|
1023
|
+
"151:3": "daylight_detector[inverted=false,power=3]",
|
|
1024
|
+
"151:4": "daylight_detector[inverted=false,power=4]",
|
|
1025
|
+
"151:5": "daylight_detector[inverted=false,power=5]",
|
|
1026
|
+
"151:6": "daylight_detector[inverted=false,power=6]",
|
|
1027
|
+
"151:7": "daylight_detector[inverted=false,power=7]",
|
|
1028
|
+
"151:8": "daylight_detector[inverted=false,power=8]",
|
|
1029
|
+
"151:9": "daylight_detector[inverted=false,power=9]",
|
|
1030
|
+
"151:10": "daylight_detector[inverted=false,power=10]",
|
|
1031
|
+
"151:11": "daylight_detector[inverted=false,power=11]",
|
|
1032
|
+
"151:12": "daylight_detector[inverted=false,power=12]",
|
|
1033
|
+
"151:13": "daylight_detector[inverted=false,power=13]",
|
|
1034
|
+
"151:14": "daylight_detector[inverted=false,power=14]",
|
|
1035
|
+
"151:15": "daylight_detector[inverted=false,power=15]",
|
|
1036
|
+
"152:0": "redstone_block",
|
|
1037
|
+
"153:0": "nether_quartz_ore",
|
|
1038
|
+
"154:0": "hopper[enabled=true,facing=down]",
|
|
1039
|
+
"154:2": "hopper[enabled=true,facing=north]",
|
|
1040
|
+
"154:3": "hopper[enabled=true,facing=south]",
|
|
1041
|
+
"154:4": "hopper[enabled=true,facing=west]",
|
|
1042
|
+
"154:5": "hopper[enabled=true,facing=east]",
|
|
1043
|
+
"154:8": "hopper[enabled=false,facing=down]",
|
|
1044
|
+
"154:10": "hopper[enabled=false,facing=north]",
|
|
1045
|
+
"154:11": "hopper[enabled=false,facing=south]",
|
|
1046
|
+
"154:12": "hopper[enabled=false,facing=west]",
|
|
1047
|
+
"154:13": "hopper[enabled=false,facing=east]",
|
|
1048
|
+
"155:0": "quartz_block",
|
|
1049
|
+
"155:1": "chiseled_quartz_block",
|
|
1050
|
+
"155:2": "quartz_pillar[axis=y]",
|
|
1051
|
+
"155:3": "quartz_pillar[axis=x]",
|
|
1052
|
+
"155:4": "quartz_pillar[axis=z]",
|
|
1053
|
+
"156:0": "quartz_stairs[facing=east,half=bottom,shape=straight]",
|
|
1054
|
+
"156:1": "quartz_stairs[facing=west,half=bottom,shape=straight]",
|
|
1055
|
+
"156:2": "quartz_stairs[facing=south,half=bottom,shape=straight]",
|
|
1056
|
+
"156:3": "quartz_stairs[facing=north,half=bottom,shape=straight]",
|
|
1057
|
+
"156:4": "quartz_stairs[facing=east,half=top,shape=straight]",
|
|
1058
|
+
"156:5": "quartz_stairs[facing=west,half=top,shape=straight]",
|
|
1059
|
+
"156:6": "quartz_stairs[facing=south,half=top,shape=straight]",
|
|
1060
|
+
"156:7": "quartz_stairs[facing=north,half=top,shape=straight]",
|
|
1061
|
+
"157:0": "activator_rail[powered=false,shape=north_south]",
|
|
1062
|
+
"157:1": "activator_rail[powered=false,shape=east_west]",
|
|
1063
|
+
"157:2": "activator_rail[powered=false,shape=ascending_east]",
|
|
1064
|
+
"157:3": "activator_rail[powered=false,shape=ascending_west]",
|
|
1065
|
+
"157:4": "activator_rail[powered=false,shape=ascending_north]",
|
|
1066
|
+
"157:5": "activator_rail[powered=false,shape=ascending_south]",
|
|
1067
|
+
"157:8": "activator_rail[powered=true,shape=north_south]",
|
|
1068
|
+
"157:9": "activator_rail[powered=true,shape=east_west]",
|
|
1069
|
+
"157:10": "activator_rail[powered=true,shape=ascending_east]",
|
|
1070
|
+
"157:11": "activator_rail[powered=true,shape=ascending_west]",
|
|
1071
|
+
"157:12": "activator_rail[powered=true,shape=ascending_north]",
|
|
1072
|
+
"157:13": "activator_rail[powered=true,shape=ascending_south]",
|
|
1073
|
+
"158:0": "dropper[facing=down,triggered=false]",
|
|
1074
|
+
"158:1": "dropper[facing=up,triggered=false]",
|
|
1075
|
+
"158:2": "dropper[facing=north,triggered=false]",
|
|
1076
|
+
"158:3": "dropper[facing=south,triggered=false]",
|
|
1077
|
+
"158:4": "dropper[facing=west,triggered=false]",
|
|
1078
|
+
"158:5": "dropper[facing=east,triggered=false]",
|
|
1079
|
+
"158:8": "dropper[facing=down,triggered=true]",
|
|
1080
|
+
"158:9": "dropper[facing=up,triggered=true]",
|
|
1081
|
+
"158:10": "dropper[facing=north,triggered=true]",
|
|
1082
|
+
"158:11": "dropper[facing=south,triggered=true]",
|
|
1083
|
+
"158:12": "dropper[facing=west,triggered=true]",
|
|
1084
|
+
"158:13": "dropper[facing=east,triggered=true]",
|
|
1085
|
+
"159:0": "white_terracotta",
|
|
1086
|
+
"159:1": "orange_terracotta",
|
|
1087
|
+
"159:2": "magenta_terracotta",
|
|
1088
|
+
"159:3": "light_blue_terracotta",
|
|
1089
|
+
"159:4": "yellow_terracotta",
|
|
1090
|
+
"159:5": "lime_terracotta",
|
|
1091
|
+
"159:6": "pink_terracotta",
|
|
1092
|
+
"159:7": "gray_terracotta",
|
|
1093
|
+
"159:8": "light_gray_terracotta",
|
|
1094
|
+
"159:9": "cyan_terracotta",
|
|
1095
|
+
"159:10": "purple_terracotta",
|
|
1096
|
+
"159:11": "blue_terracotta",
|
|
1097
|
+
"159:12": "brown_terracotta",
|
|
1098
|
+
"159:13": "green_terracotta",
|
|
1099
|
+
"159:14": "red_terracotta",
|
|
1100
|
+
"159:15": "black_terracotta",
|
|
1101
|
+
"160:0": "white_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1102
|
+
"160:1": "orange_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1103
|
+
"160:2": "magenta_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1104
|
+
"160:3": "light_blue_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1105
|
+
"160:4": "yellow_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1106
|
+
"160:5": "lime_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1107
|
+
"160:6": "pink_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1108
|
+
"160:7": "gray_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1109
|
+
"160:8": "light_gray_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1110
|
+
"160:9": "cyan_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1111
|
+
"160:10": "purple_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1112
|
+
"160:11": "blue_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1113
|
+
"160:12": "brown_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1114
|
+
"160:13": "green_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1115
|
+
"160:14": "red_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1116
|
+
"160:15": "black_stained_glass_pane[east=false,north=false,south=false,west=false]",
|
|
1117
|
+
"161:0": "acacia_leaves[check_decay=false,decayable=true]",
|
|
1118
|
+
"161:1": "dark_oak_leaves[check_decay=false,decayable=true]",
|
|
1119
|
+
"161:4": "acacia_leaves[check_decay=false,decayable=false]",
|
|
1120
|
+
"161:5": "dark_oak_leaves[check_decay=false,decayable=false]",
|
|
1121
|
+
"161:8": "acacia_leaves[check_decay=true,decayable=true]",
|
|
1122
|
+
"161:9": "dark_oak_leaves[check_decay=true,decayable=true]",
|
|
1123
|
+
"161:12": "acacia_leaves[check_decay=true,decayable=false]",
|
|
1124
|
+
"161:13": "dark_oak_leaves[check_decay=true,decayable=false]",
|
|
1125
|
+
"162:0": "acacia_log[axis=y]",
|
|
1126
|
+
"162:1": "dark_oak_log[axis=y]",
|
|
1127
|
+
"162:4": "acacia_log[axis=x]",
|
|
1128
|
+
"162:5": "dark_oak_log[axis=x]",
|
|
1129
|
+
"162:8": "acacia_log[axis=z]",
|
|
1130
|
+
"162:9": "dark_oak_log[axis=z]",
|
|
1131
|
+
"162:12": "acacia_bark",
|
|
1132
|
+
"162:13": "dark_oak_bark",
|
|
1133
|
+
"163:0": "acacia_stairs[facing=east,half=bottom,shape=straight]",
|
|
1134
|
+
"163:1": "acacia_stairs[facing=west,half=bottom,shape=straight]",
|
|
1135
|
+
"163:2": "acacia_stairs[facing=south,half=bottom,shape=straight]",
|
|
1136
|
+
"163:3": "acacia_stairs[facing=north,half=bottom,shape=straight]",
|
|
1137
|
+
"163:4": "acacia_stairs[facing=east,half=top,shape=straight]",
|
|
1138
|
+
"163:5": "acacia_stairs[facing=west,half=top,shape=straight]",
|
|
1139
|
+
"163:6": "acacia_stairs[facing=south,half=top,shape=straight]",
|
|
1140
|
+
"163:7": "acacia_stairs[facing=north,half=top,shape=straight]",
|
|
1141
|
+
"164:0": "dark_oak_stairs[facing=east,half=bottom,shape=straight]",
|
|
1142
|
+
"164:1": "dark_oak_stairs[facing=west,half=bottom,shape=straight]",
|
|
1143
|
+
"164:2": "dark_oak_stairs[facing=south,half=bottom,shape=straight]",
|
|
1144
|
+
"164:3": "dark_oak_stairs[facing=north,half=bottom,shape=straight]",
|
|
1145
|
+
"164:4": "dark_oak_stairs[facing=east,half=top,shape=straight]",
|
|
1146
|
+
"164:5": "dark_oak_stairs[facing=west,half=top,shape=straight]",
|
|
1147
|
+
"164:6": "dark_oak_stairs[facing=south,half=top,shape=straight]",
|
|
1148
|
+
"164:7": "dark_oak_stairs[facing=north,half=top,shape=straight]",
|
|
1149
|
+
"165:0": "slime_block",
|
|
1150
|
+
"166:0": "barrier",
|
|
1151
|
+
"167:0": "iron_trapdoor[facing=north,half=bottom,open=false]",
|
|
1152
|
+
"167:1": "iron_trapdoor[facing=south,half=bottom,open=false]",
|
|
1153
|
+
"167:2": "iron_trapdoor[facing=west,half=bottom,open=false]",
|
|
1154
|
+
"167:3": "iron_trapdoor[facing=east,half=bottom,open=false]",
|
|
1155
|
+
"167:4": "iron_trapdoor[facing=north,half=bottom,open=true]",
|
|
1156
|
+
"167:5": "iron_trapdoor[facing=south,half=bottom,open=true]",
|
|
1157
|
+
"167:6": "iron_trapdoor[facing=west,half=bottom,open=true]",
|
|
1158
|
+
"167:7": "iron_trapdoor[facing=east,half=bottom,open=true]",
|
|
1159
|
+
"167:8": "iron_trapdoor[facing=north,half=top,open=false]",
|
|
1160
|
+
"167:9": "iron_trapdoor[facing=south,half=top,open=false]",
|
|
1161
|
+
"167:10": "iron_trapdoor[facing=west,half=top,open=false]",
|
|
1162
|
+
"167:11": "iron_trapdoor[facing=east,half=top,open=false]",
|
|
1163
|
+
"167:12": "iron_trapdoor[facing=north,half=top,open=true]",
|
|
1164
|
+
"167:13": "iron_trapdoor[facing=south,half=top,open=true]",
|
|
1165
|
+
"167:14": "iron_trapdoor[facing=west,half=top,open=true]",
|
|
1166
|
+
"167:15": "iron_trapdoor[facing=east,half=top,open=true]",
|
|
1167
|
+
"168:0": "prismarine",
|
|
1168
|
+
"168:1": "prismarine_bricks",
|
|
1169
|
+
"168:2": "dark_prismarine",
|
|
1170
|
+
"169:0": "sea_lantern",
|
|
1171
|
+
"170:0": "hay_block[axis=y]",
|
|
1172
|
+
"170:4": "hay_block[axis=x]",
|
|
1173
|
+
"170:8": "hay_block[axis=z]",
|
|
1174
|
+
"171:0": "white_carpet",
|
|
1175
|
+
"171:1": "orange_carpet",
|
|
1176
|
+
"171:2": "magenta_carpet",
|
|
1177
|
+
"171:3": "light_blue_carpet",
|
|
1178
|
+
"171:4": "yellow_carpet",
|
|
1179
|
+
"171:5": "lime_carpet",
|
|
1180
|
+
"171:6": "pink_carpet",
|
|
1181
|
+
"171:7": "gray_carpet",
|
|
1182
|
+
"171:8": "light_gray_carpet",
|
|
1183
|
+
"171:9": "cyan_carpet",
|
|
1184
|
+
"171:10": "purple_carpet",
|
|
1185
|
+
"171:11": "blue_carpet",
|
|
1186
|
+
"171:12": "brown_carpet",
|
|
1187
|
+
"171:13": "green_carpet",
|
|
1188
|
+
"171:14": "red_carpet",
|
|
1189
|
+
"171:15": "black_carpet",
|
|
1190
|
+
"172:0": "terracotta",
|
|
1191
|
+
"173:0": "coal_block",
|
|
1192
|
+
"174:0": "packed_ice",
|
|
1193
|
+
"175:0": "sunflower[half=lower]",
|
|
1194
|
+
"175:1": "lilac[half=lower]",
|
|
1195
|
+
"175:2": "tall_grass[half=lower]",
|
|
1196
|
+
"175:3": "large_fern[half=lower]",
|
|
1197
|
+
"175:4": "rose_bush[half=lower]",
|
|
1198
|
+
"175:5": "peony[half=lower]",
|
|
1199
|
+
"175:8": "peony[half=upper]",
|
|
1200
|
+
"175:9": "peony[half=upper]",
|
|
1201
|
+
"175:10": "peony[half=upper]",
|
|
1202
|
+
"175:11": "peony[half=upper]",
|
|
1203
|
+
"176:0": "white_banner[rotation=0]",
|
|
1204
|
+
"176:1": "white_banner[rotation=1]",
|
|
1205
|
+
"176:2": "white_banner[rotation=2]",
|
|
1206
|
+
"176:3": "white_banner[rotation=3]",
|
|
1207
|
+
"176:4": "white_banner[rotation=4]",
|
|
1208
|
+
"176:5": "white_banner[rotation=5]",
|
|
1209
|
+
"176:6": "white_banner[rotation=6]",
|
|
1210
|
+
"176:7": "white_banner[rotation=7]",
|
|
1211
|
+
"176:8": "white_banner[rotation=8]",
|
|
1212
|
+
"176:9": "white_banner[rotation=9]",
|
|
1213
|
+
"176:10": "white_banner[rotation=10]",
|
|
1214
|
+
"176:11": "white_banner[rotation=11]",
|
|
1215
|
+
"176:12": "white_banner[rotation=12]",
|
|
1216
|
+
"176:13": "white_banner[rotation=13]",
|
|
1217
|
+
"176:14": "white_banner[rotation=14]",
|
|
1218
|
+
"176:15": "white_banner[rotation=15]",
|
|
1219
|
+
"177:2": "white_wall_banner[facing=north]",
|
|
1220
|
+
"177:3": "white_wall_banner[facing=south]",
|
|
1221
|
+
"177:4": "white_wall_banner[facing=west]",
|
|
1222
|
+
"177:5": "white_wall_banner[facing=east]",
|
|
1223
|
+
"178:0": "daylight_detector[inverted=true,power=0]",
|
|
1224
|
+
"178:1": "daylight_detector[inverted=true,power=1]",
|
|
1225
|
+
"178:2": "daylight_detector[inverted=true,power=2]",
|
|
1226
|
+
"178:3": "daylight_detector[inverted=true,power=3]",
|
|
1227
|
+
"178:4": "daylight_detector[inverted=true,power=4]",
|
|
1228
|
+
"178:5": "daylight_detector[inverted=true,power=5]",
|
|
1229
|
+
"178:6": "daylight_detector[inverted=true,power=6]",
|
|
1230
|
+
"178:7": "daylight_detector[inverted=true,power=7]",
|
|
1231
|
+
"178:8": "daylight_detector[inverted=true,power=8]",
|
|
1232
|
+
"178:9": "daylight_detector[inverted=true,power=9]",
|
|
1233
|
+
"178:10": "daylight_detector[inverted=true,power=10]",
|
|
1234
|
+
"178:11": "daylight_detector[inverted=true,power=11]",
|
|
1235
|
+
"178:12": "daylight_detector[inverted=true,power=12]",
|
|
1236
|
+
"178:13": "daylight_detector[inverted=true,power=13]",
|
|
1237
|
+
"178:14": "daylight_detector[inverted=true,power=14]",
|
|
1238
|
+
"178:15": "daylight_detector[inverted=true,power=15]",
|
|
1239
|
+
"179:0": "red_sandstone",
|
|
1240
|
+
"179:1": "chiseled_red_sandstone",
|
|
1241
|
+
"179:2": "cut_red_sandstone",
|
|
1242
|
+
"180:0": "red_sandstone_stairs[facing=east,half=bottom,shape=straight]",
|
|
1243
|
+
"180:1": "red_sandstone_stairs[facing=west,half=bottom,shape=straight]",
|
|
1244
|
+
"180:2": "red_sandstone_stairs[facing=south,half=bottom,shape=straight]",
|
|
1245
|
+
"180:3": "red_sandstone_stairs[facing=north,half=bottom,shape=straight]",
|
|
1246
|
+
"180:4": "red_sandstone_stairs[facing=east,half=top,shape=straight]",
|
|
1247
|
+
"180:5": "red_sandstone_stairs[facing=west,half=top,shape=straight]",
|
|
1248
|
+
"180:6": "red_sandstone_stairs[facing=south,half=top,shape=straight]",
|
|
1249
|
+
"180:7": "red_sandstone_stairs[facing=north,half=top,shape=straight]",
|
|
1250
|
+
"181:0": "red_sandstone_slab[type=double]",
|
|
1251
|
+
"181:8": "smooth_red_sandstone",
|
|
1252
|
+
"182:0": "red_sandstone_slab[type=bottom]",
|
|
1253
|
+
"182:8": "red_sandstone_slab[type=top]",
|
|
1254
|
+
"183:0": "spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
1255
|
+
"183:1": "spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
1256
|
+
"183:2": "spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
1257
|
+
"183:3": "spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
1258
|
+
"183:4": "spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
1259
|
+
"183:5": "spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
1260
|
+
"183:6": "spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
1261
|
+
"183:7": "spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
1262
|
+
"183:8": "spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
1263
|
+
"183:9": "spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
1264
|
+
"183:10": "spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
1265
|
+
"183:11": "spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
1266
|
+
"183:12": "spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
1267
|
+
"183:13": "spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
1268
|
+
"183:14": "spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
1269
|
+
"183:15": "spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
1270
|
+
"184:0": "birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
1271
|
+
"184:1": "birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
1272
|
+
"184:2": "birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
1273
|
+
"184:3": "birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
1274
|
+
"184:4": "birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
1275
|
+
"184:5": "birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
1276
|
+
"184:6": "birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
1277
|
+
"184:7": "birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
1278
|
+
"184:8": "birch_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
1279
|
+
"184:9": "birch_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
1280
|
+
"184:10": "birch_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
1281
|
+
"184:11": "birch_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
1282
|
+
"184:12": "birch_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
1283
|
+
"184:13": "birch_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
1284
|
+
"184:14": "birch_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
1285
|
+
"184:15": "birch_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
1286
|
+
"185:0": "jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
1287
|
+
"185:1": "jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
1288
|
+
"185:2": "jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
1289
|
+
"185:3": "jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
1290
|
+
"185:4": "jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
1291
|
+
"185:5": "jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
1292
|
+
"185:6": "jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
1293
|
+
"185:7": "jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
1294
|
+
"185:8": "jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
1295
|
+
"185:9": "jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
1296
|
+
"185:10": "jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
1297
|
+
"185:11": "jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
1298
|
+
"185:12": "jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
1299
|
+
"185:13": "jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
1300
|
+
"185:14": "jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
1301
|
+
"185:15": "jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
1302
|
+
"186:0": "dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
1303
|
+
"186:1": "dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
1304
|
+
"186:2": "dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
1305
|
+
"186:3": "dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
1306
|
+
"186:4": "dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
1307
|
+
"186:5": "dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
1308
|
+
"186:6": "dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
1309
|
+
"186:7": "dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
1310
|
+
"186:8": "dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
1311
|
+
"186:9": "dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
1312
|
+
"186:10": "dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
1313
|
+
"186:11": "dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
1314
|
+
"186:12": "dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
1315
|
+
"186:13": "dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
1316
|
+
"186:14": "dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
1317
|
+
"186:15": "dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
1318
|
+
"187:0": "acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]",
|
|
1319
|
+
"187:1": "acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]",
|
|
1320
|
+
"187:2": "acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]",
|
|
1321
|
+
"187:3": "acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]",
|
|
1322
|
+
"187:4": "acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]",
|
|
1323
|
+
"187:5": "acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]",
|
|
1324
|
+
"187:6": "acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]",
|
|
1325
|
+
"187:7": "acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]",
|
|
1326
|
+
"187:8": "acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true]",
|
|
1327
|
+
"187:9": "acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true]",
|
|
1328
|
+
"187:10": "acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true]",
|
|
1329
|
+
"187:11": "acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true]",
|
|
1330
|
+
"187:12": "acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true]",
|
|
1331
|
+
"187:13": "acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true]",
|
|
1332
|
+
"187:14": "acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true]",
|
|
1333
|
+
"187:15": "acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true]",
|
|
1334
|
+
"188:0": "spruce_fence[east=false,north=false,south=false,west=false]",
|
|
1335
|
+
"189:0": "birch_fence[east=false,north=false,south=false,west=false]",
|
|
1336
|
+
"190:0": "jungle_fence[east=false,north=false,south=false,west=false]",
|
|
1337
|
+
"191:0": "dark_oak_fence[east=false,north=false,south=false,west=false]",
|
|
1338
|
+
"192:0": "acacia_fence[east=false,north=false,south=false,west=false]",
|
|
1339
|
+
"193:0": "spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
1340
|
+
"193:1": "spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
1341
|
+
"193:2": "spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
1342
|
+
"193:3": "spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
1343
|
+
"193:4": "spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
1344
|
+
"193:5": "spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
1345
|
+
"193:6": "spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
1346
|
+
"193:7": "spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
1347
|
+
"193:8": "spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
1348
|
+
"193:9": "spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
1349
|
+
"193:10": "spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
1350
|
+
"193:11": "spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
1351
|
+
"194:0": "birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
1352
|
+
"194:1": "birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
1353
|
+
"194:2": "birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
1354
|
+
"194:3": "birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
1355
|
+
"194:4": "birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
1356
|
+
"194:5": "birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
1357
|
+
"194:6": "birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
1358
|
+
"194:7": "birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
1359
|
+
"194:8": "birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
1360
|
+
"194:9": "birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
1361
|
+
"194:10": "birch_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
1362
|
+
"194:11": "birch_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
1363
|
+
"195:0": "jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
1364
|
+
"195:1": "jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
1365
|
+
"195:2": "jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
1366
|
+
"195:3": "jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
1367
|
+
"195:4": "jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
1368
|
+
"195:5": "jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
1369
|
+
"195:6": "jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
1370
|
+
"195:7": "jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
1371
|
+
"195:8": "jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
1372
|
+
"195:9": "jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
1373
|
+
"195:10": "jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
1374
|
+
"195:11": "jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
1375
|
+
"196:0": "acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
1376
|
+
"196:1": "acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
1377
|
+
"196:2": "acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
1378
|
+
"196:3": "acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
1379
|
+
"196:4": "acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
1380
|
+
"196:5": "acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
1381
|
+
"196:6": "acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
1382
|
+
"196:7": "acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
1383
|
+
"196:8": "acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
1384
|
+
"196:9": "acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
1385
|
+
"196:10": "acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
1386
|
+
"196:11": "acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
1387
|
+
"197:0": "dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]",
|
|
1388
|
+
"197:1": "dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]",
|
|
1389
|
+
"197:2": "dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]",
|
|
1390
|
+
"197:3": "dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]",
|
|
1391
|
+
"197:4": "dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]",
|
|
1392
|
+
"197:5": "dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]",
|
|
1393
|
+
"197:6": "dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]",
|
|
1394
|
+
"197:7": "dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]",
|
|
1395
|
+
"197:8": "dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]",
|
|
1396
|
+
"197:9": "dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]",
|
|
1397
|
+
"197:10": "dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]",
|
|
1398
|
+
"197:11": "dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]",
|
|
1399
|
+
"198:0": "end_rod[facing=down]",
|
|
1400
|
+
"198:1": "end_rod[facing=up]",
|
|
1401
|
+
"198:2": "end_rod[facing=north]",
|
|
1402
|
+
"198:3": "end_rod[facing=south]",
|
|
1403
|
+
"198:4": "end_rod[facing=west]",
|
|
1404
|
+
"198:5": "end_rod[facing=east]",
|
|
1405
|
+
"199:0": "chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]",
|
|
1406
|
+
"200:0": "chorus_flower[age=0]",
|
|
1407
|
+
"200:1": "chorus_flower[age=1]",
|
|
1408
|
+
"200:2": "chorus_flower[age=2]",
|
|
1409
|
+
"200:3": "chorus_flower[age=3]",
|
|
1410
|
+
"200:4": "chorus_flower[age=4]",
|
|
1411
|
+
"200:5": "chorus_flower[age=5]",
|
|
1412
|
+
"201:0": "purpur_block",
|
|
1413
|
+
"202:0": "purpur_pillar[axis=y]",
|
|
1414
|
+
"202:4": "purpur_pillar[axis=x]",
|
|
1415
|
+
"202:8": "purpur_pillar[axis=z]",
|
|
1416
|
+
"203:0": "purpur_stairs[facing=east,half=bottom,shape=straight]",
|
|
1417
|
+
"203:1": "purpur_stairs[facing=west,half=bottom,shape=straight]",
|
|
1418
|
+
"203:2": "purpur_stairs[facing=south,half=bottom,shape=straight]",
|
|
1419
|
+
"203:3": "purpur_stairs[facing=north,half=bottom,shape=straight]",
|
|
1420
|
+
"203:4": "purpur_stairs[facing=east,half=top,shape=straight]",
|
|
1421
|
+
"203:5": "purpur_stairs[facing=west,half=top,shape=straight]",
|
|
1422
|
+
"203:6": "purpur_stairs[facing=south,half=top,shape=straight]",
|
|
1423
|
+
"203:7": "purpur_stairs[facing=north,half=top,shape=straight]",
|
|
1424
|
+
"204:0": "purpur_slab[type=double]",
|
|
1425
|
+
"205:0": "purpur_slab[type=bottom]",
|
|
1426
|
+
"205:8": "purpur_slab[type=top]",
|
|
1427
|
+
"206:0": "end_stone_bricks",
|
|
1428
|
+
"207:0": "beetroots[age=0]",
|
|
1429
|
+
"207:1": "beetroots[age=1]",
|
|
1430
|
+
"207:2": "beetroots[age=2]",
|
|
1431
|
+
"207:3": "beetroots[age=3]",
|
|
1432
|
+
"208:0": "grass_path",
|
|
1433
|
+
"209:0": "end_gateway",
|
|
1434
|
+
"210:0": "repeating_command_block[conditional=false,facing=down]",
|
|
1435
|
+
"210:1": "repeating_command_block[conditional=false,facing=up]",
|
|
1436
|
+
"210:2": "repeating_command_block[conditional=false,facing=north]",
|
|
1437
|
+
"210:3": "repeating_command_block[conditional=false,facing=south]",
|
|
1438
|
+
"210:4": "repeating_command_block[conditional=false,facing=west]",
|
|
1439
|
+
"210:5": "repeating_command_block[conditional=false,facing=east]",
|
|
1440
|
+
"210:8": "repeating_command_block[conditional=true,facing=down]",
|
|
1441
|
+
"210:9": "repeating_command_block[conditional=true,facing=up]",
|
|
1442
|
+
"210:10": "repeating_command_block[conditional=true,facing=north]",
|
|
1443
|
+
"210:11": "repeating_command_block[conditional=true,facing=south]",
|
|
1444
|
+
"210:12": "repeating_command_block[conditional=true,facing=west]",
|
|
1445
|
+
"210:13": "repeating_command_block[conditional=true,facing=east]",
|
|
1446
|
+
"211:0": "chain_command_block[conditional=false,facing=down]",
|
|
1447
|
+
"211:1": "chain_command_block[conditional=false,facing=up]",
|
|
1448
|
+
"211:2": "chain_command_block[conditional=false,facing=north]",
|
|
1449
|
+
"211:3": "chain_command_block[conditional=false,facing=south]",
|
|
1450
|
+
"211:4": "chain_command_block[conditional=false,facing=west]",
|
|
1451
|
+
"211:5": "chain_command_block[conditional=false,facing=east]",
|
|
1452
|
+
"211:8": "chain_command_block[conditional=true,facing=down]",
|
|
1453
|
+
"211:9": "chain_command_block[conditional=true,facing=up]",
|
|
1454
|
+
"211:10": "chain_command_block[conditional=true,facing=north]",
|
|
1455
|
+
"211:11": "chain_command_block[conditional=true,facing=south]",
|
|
1456
|
+
"211:12": "chain_command_block[conditional=true,facing=west]",
|
|
1457
|
+
"211:13": "chain_command_block[conditional=true,facing=east]",
|
|
1458
|
+
"212:0": "frosted_ice[age=0]",
|
|
1459
|
+
"212:1": "frosted_ice[age=1]",
|
|
1460
|
+
"212:2": "frosted_ice[age=2]",
|
|
1461
|
+
"212:3": "frosted_ice[age=3]",
|
|
1462
|
+
"213:0": "magma_block",
|
|
1463
|
+
"214:0": "nether_wart_block",
|
|
1464
|
+
"215:0": "red_nether_bricks",
|
|
1465
|
+
"216:0": "bone_block[axis=y]",
|
|
1466
|
+
"216:4": "bone_block[axis=x]",
|
|
1467
|
+
"216:8": "bone_block[axis=z]",
|
|
1468
|
+
"217:0": "structure_void",
|
|
1469
|
+
"218:0": "observer[facing=down,powered=false]",
|
|
1470
|
+
"218:1": "observer[facing=up,powered=false]",
|
|
1471
|
+
"218:2": "observer[facing=north,powered=false]",
|
|
1472
|
+
"218:3": "observer[facing=south,powered=false]",
|
|
1473
|
+
"218:4": "observer[facing=west,powered=false]",
|
|
1474
|
+
"218:5": "observer[facing=east,powered=false]",
|
|
1475
|
+
"218:8": "observer[facing=down,powered=true]",
|
|
1476
|
+
"218:9": "observer[facing=up,powered=true]",
|
|
1477
|
+
"218:10": "observer[facing=north,powered=true]",
|
|
1478
|
+
"218:11": "observer[facing=south,powered=true]",
|
|
1479
|
+
"218:12": "observer[facing=west,powered=true]",
|
|
1480
|
+
"218:13": "observer[facing=east,powered=true]",
|
|
1481
|
+
"219:0": "white_shulker_box[facing=down]",
|
|
1482
|
+
"219:1": "white_shulker_box[facing=up]",
|
|
1483
|
+
"219:2": "white_shulker_box[facing=north]",
|
|
1484
|
+
"219:3": "white_shulker_box[facing=south]",
|
|
1485
|
+
"219:4": "white_shulker_box[facing=west]",
|
|
1486
|
+
"219:5": "white_shulker_box[facing=east]",
|
|
1487
|
+
"220:0": "orange_shulker_box[facing=down]",
|
|
1488
|
+
"220:1": "orange_shulker_box[facing=up]",
|
|
1489
|
+
"220:2": "orange_shulker_box[facing=north]",
|
|
1490
|
+
"220:3": "orange_shulker_box[facing=south]",
|
|
1491
|
+
"220:4": "orange_shulker_box[facing=west]",
|
|
1492
|
+
"220:5": "orange_shulker_box[facing=east]",
|
|
1493
|
+
"221:0": "magenta_shulker_box[facing=down]",
|
|
1494
|
+
"221:1": "magenta_shulker_box[facing=up]",
|
|
1495
|
+
"221:2": "magenta_shulker_box[facing=north]",
|
|
1496
|
+
"221:3": "magenta_shulker_box[facing=south]",
|
|
1497
|
+
"221:4": "magenta_shulker_box[facing=west]",
|
|
1498
|
+
"221:5": "magenta_shulker_box[facing=east]",
|
|
1499
|
+
"222:0": "light_blue_shulker_box[facing=down]",
|
|
1500
|
+
"222:1": "light_blue_shulker_box[facing=up]",
|
|
1501
|
+
"222:2": "light_blue_shulker_box[facing=north]",
|
|
1502
|
+
"222:3": "light_blue_shulker_box[facing=south]",
|
|
1503
|
+
"222:4": "light_blue_shulker_box[facing=west]",
|
|
1504
|
+
"222:5": "light_blue_shulker_box[facing=east]",
|
|
1505
|
+
"223:0": "yellow_shulker_box[facing=down]",
|
|
1506
|
+
"223:1": "yellow_shulker_box[facing=up]",
|
|
1507
|
+
"223:2": "yellow_shulker_box[facing=north]",
|
|
1508
|
+
"223:3": "yellow_shulker_box[facing=south]",
|
|
1509
|
+
"223:4": "yellow_shulker_box[facing=west]",
|
|
1510
|
+
"223:5": "yellow_shulker_box[facing=east]",
|
|
1511
|
+
"224:0": "lime_shulker_box[facing=down]",
|
|
1512
|
+
"224:1": "lime_shulker_box[facing=up]",
|
|
1513
|
+
"224:2": "lime_shulker_box[facing=north]",
|
|
1514
|
+
"224:3": "lime_shulker_box[facing=south]",
|
|
1515
|
+
"224:4": "lime_shulker_box[facing=west]",
|
|
1516
|
+
"224:5": "lime_shulker_box[facing=east]",
|
|
1517
|
+
"225:0": "pink_shulker_box[facing=down]",
|
|
1518
|
+
"225:1": "pink_shulker_box[facing=up]",
|
|
1519
|
+
"225:2": "pink_shulker_box[facing=north]",
|
|
1520
|
+
"225:3": "pink_shulker_box[facing=south]",
|
|
1521
|
+
"225:4": "pink_shulker_box[facing=west]",
|
|
1522
|
+
"225:5": "pink_shulker_box[facing=east]",
|
|
1523
|
+
"226:0": "gray_shulker_box[facing=down]",
|
|
1524
|
+
"226:1": "gray_shulker_box[facing=up]",
|
|
1525
|
+
"226:2": "gray_shulker_box[facing=north]",
|
|
1526
|
+
"226:3": "gray_shulker_box[facing=south]",
|
|
1527
|
+
"226:4": "gray_shulker_box[facing=west]",
|
|
1528
|
+
"226:5": "gray_shulker_box[facing=east]",
|
|
1529
|
+
"227:0": "light_gray_shulker_box[facing=down]",
|
|
1530
|
+
"227:1": "light_gray_shulker_box[facing=up]",
|
|
1531
|
+
"227:2": "light_gray_shulker_box[facing=north]",
|
|
1532
|
+
"227:3": "light_gray_shulker_box[facing=south]",
|
|
1533
|
+
"227:4": "light_gray_shulker_box[facing=west]",
|
|
1534
|
+
"227:5": "light_gray_shulker_box[facing=east]",
|
|
1535
|
+
"228:0": "cyan_shulker_box[facing=down]",
|
|
1536
|
+
"228:1": "cyan_shulker_box[facing=up]",
|
|
1537
|
+
"228:2": "cyan_shulker_box[facing=north]",
|
|
1538
|
+
"228:3": "cyan_shulker_box[facing=south]",
|
|
1539
|
+
"228:4": "cyan_shulker_box[facing=west]",
|
|
1540
|
+
"228:5": "cyan_shulker_box[facing=east]",
|
|
1541
|
+
"229:0": "purple_shulker_box[facing=down]",
|
|
1542
|
+
"229:1": "purple_shulker_box[facing=up]",
|
|
1543
|
+
"229:2": "purple_shulker_box[facing=north]",
|
|
1544
|
+
"229:3": "purple_shulker_box[facing=south]",
|
|
1545
|
+
"229:4": "purple_shulker_box[facing=west]",
|
|
1546
|
+
"229:5": "purple_shulker_box[facing=east]",
|
|
1547
|
+
"230:0": "blue_shulker_box[facing=down]",
|
|
1548
|
+
"230:1": "blue_shulker_box[facing=up]",
|
|
1549
|
+
"230:2": "blue_shulker_box[facing=north]",
|
|
1550
|
+
"230:3": "blue_shulker_box[facing=south]",
|
|
1551
|
+
"230:4": "blue_shulker_box[facing=west]",
|
|
1552
|
+
"230:5": "blue_shulker_box[facing=east]",
|
|
1553
|
+
"231:0": "brown_shulker_box[facing=down]",
|
|
1554
|
+
"231:1": "brown_shulker_box[facing=up]",
|
|
1555
|
+
"231:2": "brown_shulker_box[facing=north]",
|
|
1556
|
+
"231:3": "brown_shulker_box[facing=south]",
|
|
1557
|
+
"231:4": "brown_shulker_box[facing=west]",
|
|
1558
|
+
"231:5": "brown_shulker_box[facing=east]",
|
|
1559
|
+
"232:0": "green_shulker_box[facing=down]",
|
|
1560
|
+
"232:1": "green_shulker_box[facing=up]",
|
|
1561
|
+
"232:2": "green_shulker_box[facing=north]",
|
|
1562
|
+
"232:3": "green_shulker_box[facing=south]",
|
|
1563
|
+
"232:4": "green_shulker_box[facing=west]",
|
|
1564
|
+
"232:5": "green_shulker_box[facing=east]",
|
|
1565
|
+
"233:0": "red_shulker_box[facing=down]",
|
|
1566
|
+
"233:1": "red_shulker_box[facing=up]",
|
|
1567
|
+
"233:2": "red_shulker_box[facing=north]",
|
|
1568
|
+
"233:3": "red_shulker_box[facing=south]",
|
|
1569
|
+
"233:4": "red_shulker_box[facing=west]",
|
|
1570
|
+
"233:5": "red_shulker_box[facing=east]",
|
|
1571
|
+
"234:0": "black_shulker_box[facing=down]",
|
|
1572
|
+
"234:1": "black_shulker_box[facing=up]",
|
|
1573
|
+
"234:2": "black_shulker_box[facing=north]",
|
|
1574
|
+
"234:3": "black_shulker_box[facing=south]",
|
|
1575
|
+
"234:4": "black_shulker_box[facing=west]",
|
|
1576
|
+
"234:5": "black_shulker_box[facing=east]",
|
|
1577
|
+
"235:0": "white_glazed_terracotta[facing=south]",
|
|
1578
|
+
"235:1": "white_glazed_terracotta[facing=west]",
|
|
1579
|
+
"235:2": "white_glazed_terracotta[facing=north]",
|
|
1580
|
+
"235:3": "white_glazed_terracotta[facing=east]",
|
|
1581
|
+
"236:0": "orange_glazed_terracotta[facing=south]",
|
|
1582
|
+
"236:1": "orange_glazed_terracotta[facing=west]",
|
|
1583
|
+
"236:2": "orange_glazed_terracotta[facing=north]",
|
|
1584
|
+
"236:3": "orange_glazed_terracotta[facing=east]",
|
|
1585
|
+
"237:0": "magenta_glazed_terracotta[facing=south]",
|
|
1586
|
+
"237:1": "magenta_glazed_terracotta[facing=west]",
|
|
1587
|
+
"237:2": "magenta_glazed_terracotta[facing=north]",
|
|
1588
|
+
"237:3": "magenta_glazed_terracotta[facing=east]",
|
|
1589
|
+
"238:0": "light_blue_glazed_terracotta[facing=south]",
|
|
1590
|
+
"238:1": "light_blue_glazed_terracotta[facing=west]",
|
|
1591
|
+
"238:2": "light_blue_glazed_terracotta[facing=north]",
|
|
1592
|
+
"238:3": "light_blue_glazed_terracotta[facing=east]",
|
|
1593
|
+
"239:0": "yellow_glazed_terracotta[facing=south]",
|
|
1594
|
+
"239:1": "yellow_glazed_terracotta[facing=west]",
|
|
1595
|
+
"239:2": "yellow_glazed_terracotta[facing=north]",
|
|
1596
|
+
"239:3": "yellow_glazed_terracotta[facing=east]",
|
|
1597
|
+
"240:0": "lime_glazed_terracotta[facing=south]",
|
|
1598
|
+
"240:1": "lime_glazed_terracotta[facing=west]",
|
|
1599
|
+
"240:2": "lime_glazed_terracotta[facing=north]",
|
|
1600
|
+
"240:3": "lime_glazed_terracotta[facing=east]",
|
|
1601
|
+
"241:0": "pink_glazed_terracotta[facing=south]",
|
|
1602
|
+
"241:1": "pink_glazed_terracotta[facing=west]",
|
|
1603
|
+
"241:2": "pink_glazed_terracotta[facing=north]",
|
|
1604
|
+
"241:3": "pink_glazed_terracotta[facing=east]",
|
|
1605
|
+
"242:0": "gray_glazed_terracotta[facing=south]",
|
|
1606
|
+
"242:1": "gray_glazed_terracotta[facing=west]",
|
|
1607
|
+
"242:2": "gray_glazed_terracotta[facing=north]",
|
|
1608
|
+
"242:3": "gray_glazed_terracotta[facing=east]",
|
|
1609
|
+
"243:0": "light_gray_glazed_terracotta[facing=south]",
|
|
1610
|
+
"243:1": "light_gray_glazed_terracotta[facing=west]",
|
|
1611
|
+
"243:2": "light_gray_glazed_terracotta[facing=north]",
|
|
1612
|
+
"243:3": "light_gray_glazed_terracotta[facing=east]",
|
|
1613
|
+
"244:0": "cyan_glazed_terracotta[facing=south]",
|
|
1614
|
+
"244:1": "cyan_glazed_terracotta[facing=west]",
|
|
1615
|
+
"244:2": "cyan_glazed_terracotta[facing=north]",
|
|
1616
|
+
"244:3": "cyan_glazed_terracotta[facing=east]",
|
|
1617
|
+
"245:0": "purple_glazed_terracotta[facing=south]",
|
|
1618
|
+
"245:1": "purple_glazed_terracotta[facing=west]",
|
|
1619
|
+
"245:2": "purple_glazed_terracotta[facing=north]",
|
|
1620
|
+
"245:3": "purple_glazed_terracotta[facing=east]",
|
|
1621
|
+
"246:0": "blue_glazed_terracotta[facing=south]",
|
|
1622
|
+
"246:1": "blue_glazed_terracotta[facing=west]",
|
|
1623
|
+
"246:2": "blue_glazed_terracotta[facing=north]",
|
|
1624
|
+
"246:3": "blue_glazed_terracotta[facing=east]",
|
|
1625
|
+
"247:0": "brown_glazed_terracotta[facing=south]",
|
|
1626
|
+
"247:1": "brown_glazed_terracotta[facing=west]",
|
|
1627
|
+
"247:2": "brown_glazed_terracotta[facing=north]",
|
|
1628
|
+
"247:3": "brown_glazed_terracotta[facing=east]",
|
|
1629
|
+
"248:0": "green_glazed_terracotta[facing=south]",
|
|
1630
|
+
"248:1": "green_glazed_terracotta[facing=west]",
|
|
1631
|
+
"248:2": "green_glazed_terracotta[facing=north]",
|
|
1632
|
+
"248:3": "green_glazed_terracotta[facing=east]",
|
|
1633
|
+
"249:0": "red_glazed_terracotta[facing=south]",
|
|
1634
|
+
"249:1": "red_glazed_terracotta[facing=west]",
|
|
1635
|
+
"249:2": "red_glazed_terracotta[facing=north]",
|
|
1636
|
+
"249:3": "red_glazed_terracotta[facing=east]",
|
|
1637
|
+
"250:0": "black_glazed_terracotta[facing=south]",
|
|
1638
|
+
"250:1": "black_glazed_terracotta[facing=west]",
|
|
1639
|
+
"250:2": "black_glazed_terracotta[facing=north]",
|
|
1640
|
+
"250:3": "black_glazed_terracotta[facing=east]",
|
|
1641
|
+
"251:0": "white_concrete",
|
|
1642
|
+
"251:1": "orange_concrete",
|
|
1643
|
+
"251:2": "magenta_concrete",
|
|
1644
|
+
"251:3": "light_blue_concrete",
|
|
1645
|
+
"251:4": "yellow_concrete",
|
|
1646
|
+
"251:5": "lime_concrete",
|
|
1647
|
+
"251:6": "pink_concrete",
|
|
1648
|
+
"251:7": "gray_concrete",
|
|
1649
|
+
"251:8": "light_gray_concrete",
|
|
1650
|
+
"251:9": "cyan_concrete",
|
|
1651
|
+
"251:10": "purple_concrete",
|
|
1652
|
+
"251:11": "blue_concrete",
|
|
1653
|
+
"251:12": "brown_concrete",
|
|
1654
|
+
"251:13": "green_concrete",
|
|
1655
|
+
"251:14": "red_concrete",
|
|
1656
|
+
"251:15": "black_concrete",
|
|
1657
|
+
"252:0": "white_concrete_powder",
|
|
1658
|
+
"252:1": "orange_concrete_powder",
|
|
1659
|
+
"252:2": "magenta_concrete_powder",
|
|
1660
|
+
"252:3": "light_blue_concrete_powder",
|
|
1661
|
+
"252:4": "yellow_concrete_powder",
|
|
1662
|
+
"252:5": "lime_concrete_powder",
|
|
1663
|
+
"252:6": "pink_concrete_powder",
|
|
1664
|
+
"252:7": "gray_concrete_powder",
|
|
1665
|
+
"252:8": "light_gray_concrete_powder",
|
|
1666
|
+
"252:9": "cyan_concrete_powder",
|
|
1667
|
+
"252:10": "purple_concrete_powder",
|
|
1668
|
+
"252:11": "blue_concrete_powder",
|
|
1669
|
+
"252:12": "brown_concrete_powder",
|
|
1670
|
+
"252:13": "green_concrete_powder",
|
|
1671
|
+
"252:14": "red_concrete_powder",
|
|
1672
|
+
"252:15": "black_concrete_powder",
|
|
1673
|
+
"255:0": "structure_block[mode=save]",
|
|
1674
|
+
"255:1": "structure_block[mode=load]",
|
|
1675
|
+
"255:2": "structure_block[mode=corner]",
|
|
1676
|
+
"255:3": "structure_block[mode=data]"
|
|
1677
|
+
},
|
|
1678
|
+
"clientCalculatedBlocks": {
|
|
1679
|
+
"block_snowy": [
|
|
1680
|
+
"grass_block",
|
|
1681
|
+
"dirt",
|
|
1682
|
+
"coarse_dirt",
|
|
1683
|
+
"podzol",
|
|
1684
|
+
"mycelium"
|
|
1685
|
+
],
|
|
1686
|
+
"directional": [
|
|
1687
|
+
"fire",
|
|
1688
|
+
"redstone_wire",
|
|
1689
|
+
"oak_fence",
|
|
1690
|
+
"iron_bars",
|
|
1691
|
+
"glass_pane",
|
|
1692
|
+
"vine",
|
|
1693
|
+
"nether_brick_fence",
|
|
1694
|
+
"tripwire",
|
|
1695
|
+
"cobblestone_wall",
|
|
1696
|
+
"mossy_cobblestone_wall",
|
|
1697
|
+
"white_stained_glass_pane",
|
|
1698
|
+
"orange_stained_glass_pane",
|
|
1699
|
+
"magenta_stained_glass_pane",
|
|
1700
|
+
"light_blue_stained_glass_pane",
|
|
1701
|
+
"yellow_stained_glass_pane",
|
|
1702
|
+
"lime_stained_glass_pane",
|
|
1703
|
+
"pink_stained_glass_pane",
|
|
1704
|
+
"gray_stained_glass_pane",
|
|
1705
|
+
"light_gray_stained_glass_pane",
|
|
1706
|
+
"cyan_stained_glass_pane",
|
|
1707
|
+
"purple_stained_glass_pane",
|
|
1708
|
+
"blue_stained_glass_pane",
|
|
1709
|
+
"brown_stained_glass_pane",
|
|
1710
|
+
"green_stained_glass_pane",
|
|
1711
|
+
"red_stained_glass_pane",
|
|
1712
|
+
"black_stained_glass_pane",
|
|
1713
|
+
"spruce_fence",
|
|
1714
|
+
"birch_fence",
|
|
1715
|
+
"jungle_fence",
|
|
1716
|
+
"dark_oak_fence",
|
|
1717
|
+
"acacia_fence",
|
|
1718
|
+
"chorus_plant"
|
|
1719
|
+
],
|
|
1720
|
+
"door": [
|
|
1721
|
+
"oak_door",
|
|
1722
|
+
"iron_door",
|
|
1723
|
+
"spruce_door",
|
|
1724
|
+
"birch_door",
|
|
1725
|
+
"jungle_door",
|
|
1726
|
+
"acacia_door",
|
|
1727
|
+
"dark_oak_door"
|
|
1728
|
+
],
|
|
1729
|
+
"repeater_locked": [
|
|
1730
|
+
"repeater"
|
|
1731
|
+
],
|
|
1732
|
+
"gate_in_wall": [
|
|
1733
|
+
"oak_fence_gate",
|
|
1734
|
+
"spruce_fence_gate",
|
|
1735
|
+
"birch_fence_gate",
|
|
1736
|
+
"jungle_fence_gate",
|
|
1737
|
+
"dark_oak_fence_gate",
|
|
1738
|
+
"acacia_fence_gate"
|
|
1739
|
+
]
|
|
1740
|
+
}
|
|
1741
|
+
}
|