Search This Blog

Tuesday, August 30, 2016

Set up your local MineCraft to code in Python!!!







I get a lot of questions about setting up my Minecraft to be able to script python code with it.
There are many PyCraft starters out there i.e. bukkit etc. The one I like and we use on the server is from Alex Pruss RaspberryJam Mod. I like it the best for the main reason Alex hasn't dropped the project and he updates it almost instantly when a request is made or when the game update is made.  Most of the instruction here was taken from Instructables.
We are currently using 1.9.4 on the server here is the link to the installs I have available. It includes the Forge install for 1.9.4 and RaspberryJamMod for 1.9.4


First thing first, you need to set a profile dedicated to 1.9.4 So open your Minecraft Launcher and click new profile in the bottom left hand corner.



After clicking new profile a window pops up called the Profile Editor.
May want to name it 1.9.4 test because when this is done you will be using a forge profile not this one. Find the use version  portion about 3/4 the way down.



Save the profile. Before you hit play, make sure the Profile says 1.9.4 test.

The point of this is to make sure you have no issues with running a 1.9.4 world prior to installing the forge.

After making the world is playable (can break blocks etc). Close out of Minecraft and the launcher. Go to the link I provided. Install the forge-1.9.4-12.17.0.2051-installer.jar Leave everything as is and just click Okay to install.



When done it should say forge profile installed.
Now, go back to to Minecraft launcher. Change the profile from 1.9.4 test to the new forge profile.






Almost there.

Now one more time to the link to get the RaspberryJamMod-Installer.exe.
Install the RJM then go back into your 1.9.4 world.

In the world hit 't' like your going to chat and type /py helloworld. It should print to the chat window 'Hello World' and you should have a diamond oar block directly under you.

You can type /py tab to see all the scripts available to you.

It is possible to run those scripts on the PyCraft server. When your on the server, instead of typing /py you type /lpy to run your local script. Remember though in order to get marked you need to send in your better scripts you have written to move up.

I hope this makes playing on the PyCraft server more fun as you don't need to wait for me to check your work and upload it.

If you do not have java installed, you will need to install the latest version.
If your not a student you can sign up at homeschoolhackers.org












Sunday, August 28, 2016

A Cool house for the village

I wanted to throw up a sample of one of the student houses in the PyCraft neighborhood.
This will work on the raspberry pi but you may need to change some of the block id's around.


Now this is a work in progress. But you get the idea with this script.










# Import Minecraft libraries
import mcpi.minecraft as minecraft
#import building
import mcpi.block as block   
from mc import *
import time
import random
mc = minecraft.Minecraft.create()
x,y,z = mc.player.getPos()
mc.setBlocks(x-19,y,z-19,x+19,y+10,z+19,0)#wipe
mc.setBlocks(x-19,y-1,z-19,x+19,y-1,z+19,2)#yard

mc.setBlocks(x-8,y-1,z-8,x+8,y-1,z+8,43)#floor


mc.setBlocks(x-4,y,z-4,x+4,y+4,z-4,95,12)#glass wall
mc.setBlocks(x-4,y,z+4,x+4,y+4,z+4,95,12)#glass wall
mc.setBlocks(x-4,y,z+4,x-4,y+4,z-4,95,12)#glass wall
mc.setBlocks(x+4,y,z+4,x+4,y+4,z-4,95,12)#glass wall

mc.setBlocks(x-4,y-1,z-4,x-4,y+4,z-4,5,5)#pillar
mc.setBlocks(x+4,y-1,z+4,x+4,y+4,z+4,5,5)#pillar
mc.setBlocks(x+4,y-1,z-4,x+4,y+4,z-4,5,5)#pillar
mc.setBlocks(x-4,y-1,z+4,x-4,y+4,z+4,5,5)#pillar
mc.setBlocks(x-8,y+5,z-8,x+8,y+5,z+8,159,7)#ceiling


mc.setBlocks(x-8,y+6,z-8,x+8,y+6,z-8,159,8)#secondFloorClayBottom
mc.setBlocks(x-8,y+6,z+8,x+8,y+6,z+8,159,8)#secondFloorClayBottom
mc.setBlocks(x+8,y+6,z-8,x+8,y+6,z+8,159,8)#secondFloorClayBottom
mc.setBlocks(x-8,y+6,z+8,x-8,y+6,z-8,159,8)#secondFloorClayBottom


mc.setBlocks(x-8,y+7,z-8,x+8,y+10,z-8,5)#secondFloor wall
mc.setBlocks(x-8,y+7,z+8,x+8,y+10,z+8,5)#secondFloor wall
mc.setBlocks(x+8,y+7,z-8,x+8,y+10,z+8,5)#secondFloor wall
mc.setBlocks(x-8,y+7,z+8,x-8,y+10,z-8,5)#secondFloor wall

mc.setBlocks(x-8,y+7,z-8,x+8,y+9,z-8,20)#secondFloor window
mc.setBlocks(x-8,y+7,z+8,x+8,y+9,z+8,20)#secondFloor window
mc.setBlocks(x+8,y+7,z-8,x+8,y+9,z+8,20)#secondFloor window
mc.setBlocks(x-8,y+7,z+8,x-8,y+9,z-8,20)#secondFloor window

mc.setBlocks(x-10,y+10,z-10,x+10,y+10,z+10,159,7)#ceiling/roof 1
mc.setBlocks(x-8,y+11,z-8,x+8,y+11,z+8,159,7)#ceiling/roof 2
mc.setBlocks(x-7,y+12,z-7,x+7,y+12,z+7,159,7)#ceiling/roof 3

#########Lower Level Light Fixtures########
mc.setBlock(x+8,y+4,z+8,188,)#light post
mc.setBlock(x+8,y+3,z+8,169,)#light
mc.setBlock(x-8,y+4,z-8,188,)#light post
mc.setBlock(x-8,y+3,z-8,169,)#light
mc.setBlock(x+8,y+4,z-8,188,)#light post
mc.setBlock(x+8,y+3,z-8,169,)#light
mc.setBlock(x-8,y+4,z+8,188,)#light post
mc.setBlock(x-8,y+3,z+8,169,)#light

#########Upper Level Light Fixtures########
mc.setBlock(x+10,y+9,z+10,188,)#light post
mc.setBlock(x+10,y+8,z+10,169,)#light
mc.setBlock(x-10,y+9,z-10,188,)#light post
mc.setBlock(x-10,y+8,z-10,169,)#light
mc.setBlock(x+10,y+9,z-10,188,)#light post
mc.setBlock(x+10,y+8,z-10,169,)#light
mc.setBlock(x-10,y+9,z+10,188,)#light post
mc.setBlock(x-10,y+8,z+10,169,)#light
#MOVEDmc.setBlock(x+1,y,z+19,198)#endRod
#MOVEDmc.setBlock(x-1,y,z+19,198)#endRod


###Chorus Plant and end stone#####
#mc.setBlock(x+1,y-1,z+18,121)#end stone
mc.setBlocks(x+1,y,z+9,x+1,y,z+18,18)#fenceWalkway
mc.setBlocks(x-1,y,z+9,x-1,y,z+18,18)#fenceWalkway
mc.setBlocks(x-19,y,z-19,x-19,y,z+19,85)#leftFenceYard
mc.setBlocks(x+19,y,z-19,x+19,y,z+19,85)#rightFenceYard
mc.setBlocks(x+19,y,z-19,x-19,y,z-19,85)#backFenceYard
mc.setBlocks(x+19,y,z+19,x-19,y,z+19,85)#frontFenceYard
mc.setBlock(x+2,y,z+18,85)
mc.setBlock(x-2,y,z+18,85)
#chorus plant = 199
mc.setBlock(x+1,y,z+19,198)#endRod
mc.setBlock(x-1,y,z+19,198)#endRod

mc.setBlocks(x,y,z,x,y+1,z+20,0)#door

mc.setBlocks(x,y-1,z,x,y-2,z+20,43)#walkway

mc.setBlock(x,y-1,z,1,4)#Center Pointt


####STAIRS######
mc.setBlock(x-2,y,z-2,44,7)
mc.setBlock(x-2,y,z-3,44,7)
mc.setBlock(x-3,y,z-3,44,7)
mc.setBlock(x-3,y+1,z-2,44,7)
mc.setBlock(x-3,y+2,z-1,44,7)
mc.setBlock(x-3,y+3,z,44,7)
mc.setBlock(x-3,y+4,z+1,44,7)
mc.setBlock(x-3,y+5,z+2,44,7)
mc.setBlock(x-3,y+5,z+1,0)
mc.setBlock(x-3,y+5,z,0)
mc.setBlock(x-3,y+5,z-1,0)



Turtle with whileLoop

 Not being a turtle expert myself I wanted to use turtle to show most of the examples I can come up with. Remember that if you can do it in turtle then you can do it in PyCraft. Just with a specific block type. For instance here I can loop through block types instead of colors.

import turtle
t = turtle.Pen()
turtle.bgcolor('black')
colors = ["red", "yellow", "blue", "green"]

for x in range(10):
    x = 0
    while x <100:
        t.pencolor(colors[x%4])
        t.forward(x)
        t.left(91)
        x = x+1
        print(x)
           
    x = 0
    while x <100:
        t.pencolor(colors[x%4])
        t.forward(x)
        t.left(91)
        x = x+1
        print(x)

Saturday, August 27, 2016

block id's

Minecraft Block IDs and APIs
Here is a list of Minecraft block IDs and APIs for use on the PyCraft server.

  • 0      Air(minecraft:air)

  • 1       Stone(minecraft:stone)

  • 1:1     Granite(minecraft:stone)

  • 1:2     Polished Granite(minecraft:stone)

  • 1:3     Diorite(minecraft:stone)

  • 1:4     Polished Diorite(minecraft:stone)

  • 1:5     Andesite(minecraft:stone)

  • 1:6     Polished Andesite(minecraft:stone)

  • 2       Grass(minecraft:grass)

  • 3       Dirt(minecraft:dirt)

  • 3:1     Coarse Dirt(minecraft:dirt)

  • 3:2     Podzol(minecraft:dirt)

  • 4       Cobblestone(minecraft:cobblestone)

  • 5       Oak Wood Plank(minecraft:planks)

  • 5:1     Spruce Wood Plank(minecraft:planks)

  • 5:2     Birch Wood Plank(minecraft:planks)

  • 5:3     Jungle Wood Plank(minecraft:planks)

  • 5:4     Acacia Wood Plank(minecraft:planks)

  • 5:5     Dark Oak Wood Plank(minecraft:planks)

  • 6       Oak Sapling(minecraft:sapling)

  • 6:1     Spruce Sapling(minecraft:sapling)

  • 6:2     Birch Sapling(minecraft:sapling)

  • 6:3     Jungle Sapling(minecraft:sapling)

  • 6:4     Acacia Sapling(minecraft:sapling)

  • 6:5     Dark Oak Sapling(minecraft:sapling)

  • 7       Bedrock(minecraft:bedrock)

  • 8       Flowing Water(minecraft:flowing_water)

  • 9       Still Water(minecraft:water)

  • 10       Flowing Lava(minecraft:flowing_lava)

  • 11       Still Lava(minecraft:lava)

  • 12       Sand(minecraft:sand)

  • 12:1     Red Sand(minecraft:sand)

  • 13       Gravel(minecraft:gravel)

  • 14       Gold Ore(minecraft:gold_ore)

  • 15       Iron Ore(minecraft:iron_ore)

  • 16       Coal Ore(minecraft:coal_ore)

  • 17       Oak Wood(minecraft:log)

  • 17:1     Spruce Wood(minecraft:log)

  • 17:2     Birch Wood(minecraft:log)

  • 17:3     Jungle Wood(minecraft:log)

  • 18       Oak Leaves(minecraft:leaves)

  • 18:1     Spruce Leaves(minecraft:leaves)

  • 18:2     Birch Leaves(minecraft:leaves)

  • 18:3     Jungle Leaves(minecraft:leaves)

  • 19       Sponge(minecraft:sponge)

  • 19:1     Wet Sponge(minecraft:sponge)

  • 20      Glass(minecraft:glass)

  • 21       Lapis Lazuli Ore(minecraft:lapis_ore)

  • 22       Lapis Lazuli Block(minecraft:lapis_block)

  • 23       Dispenser(minecraft:dispenser)

  • 24       Sandstone(minecraft:sandstone)

  • 24:1     Chiseled Sandstone(minecraft:sandstone)

  • 24:2     Smooth Sandstone(minecraft:sandstone)

  • 25       Note Block(minecraft:noteblock)

  • 26       Bed(minecraft:bed)

  • 27       Powered Rail(minecraft:golden_rail)

  • 28       Detector Rail(minecraft:detector_rail)

  • 29       Sticky Piston(minecraft:sticky_piston)

  • 30       Cobweb(minecraft:web)

  • 31       Dead Shrub(minecraft:tallgrass)

  • 31:1     Grass(minecraft:tallgrass)

  • 31:2     Fern(minecraft:tallgrass)

  • 32       Dead Bush(minecraft:deadbush)

  • 33       Piston(minecraft:piston)

  • 34       Piston Head(minecraft:piston_head)

  • 35       White Wool(minecraft:wool)

  • 35:1     Orange Wool(minecraft:wool)

  • 35:2     Magenta Wool(minecraft:wool)

  • 35:3     Light Blue Wool(minecraft:wool)

  • 35:4     Yellow Wool(minecraft:wool)

  • 35:5     Lime Wool(minecraft:wool)

  • 35:6     Pink Wool(minecraft:wool)

  • 35:7     Gray Wool(minecraft:wool)

  • 35:8     Light Gray Wool(minecraft:wool)

  • 35:9     Cyan Wool(minecraft:wool)

  • 35:10     Purple Wool(minecraft:wool)

  • 35:11     Blue Wool(minecraft:wool)

  • 35:12     Brown Wool(minecraft:wool)

  • 35:13     Green Wool(minecraft:wool)

  • 35:14     Red Wool(minecraft:wool)

  • 35:15     Black Wool(minecraft:wool)

  • 37        Dandelion(minecraft:yellow_flower)

  • 38        Poppy(minecraft:red_flower)

  • 38:1      Blue Orchid(minecraft:red_flower)

  • 38:2      Allium(minecraft:red_flower)

  • 38:3     Azure Bluet(minecraft:red_flower)

  • 38:4     Red Tulip(minecraft:red_flower)

  • 38:5     Orange Tulip(minecraft:red_flower)

  • 38:6     White Tulip(minecraft:red_flower)

  • 38:7     Pink Tulip(minecraft:red_flower)

  • 38:8     Oxeye Daisy(minecraft:red_flower)

  • 39        Brown Mushroom(minecraft:brown_mushroom)

  • 40        Red Mushroom(minecraft:red_mushroom)

  • 41         Gold Block(minecraft:gold_block)

  • 42         Iron Block(minecraft:iron_block)

  • 43         Double Stone Slab(minecraft:double_stone_slab)

  • 43:1       Double Sandstone Slab(minecraft:double_stone_slab)

  • 43:2       Double Wooden Slab(minecraft:double_stone_slab)

  • 43:3      Double Cobblestone Slab(minecraft:double_stone_slab)

  • 43:4      Double Brick Slab(minecraft:double_stone_slab)

  • 43:5      Double Stone Brick Slab(minecraft:double_stone_slab)

  • 43:6      Double Nether Brick Slab(minecraft:double_stone_slab)

  • 43:7      Double Quartz Slab(minecraft:double_stone_slab)

  • 44        Stone Slab(minecraft:stone_slab)

  • 44:1      Sandstone Slab(minecraft:stone_slab)

  • 44:2      Wooden Slab(minecraft:stone_slab)

  • 44:3      Cobblestone Slab(minecraft:stone_slab)

  • 44:4      Brick Slab(minecraft:stone_slab)

  • 44:5      Stone Brick Slab(minecraft:stone_slab)

  • 44:6      Nether Brick Slab(minecraft:stone_slab)

  • 44:7      Quartz Slab(minecraft:stone_slab)

  • 45         Bricks(minecraft:brick_block)

  • 46         TNT(minecraft:tnt)

  • 47         Bookshelf(minecraft:bookshelf)

  • 48         Moss Stone(minecraft:mossy_cobblestone)

  • 49         Obsidian(minecraft:obsidian)

  • 50         Torch(minecraft:torch)

  • 51          Fire(minecraft:fire)

  • 52          Monster Spawner(minecraft:mob_spawner)

  • 53          Oak Wood Stairs(minecraft:oak_stairs)

  • 54          Chest(minecraft:chest)

  • 55          Redstone Wire(minecraft:redstone_wire)

  • 56         Diamond Ore(minecraft:diamond_ore)

  • 57         Diamond Block(minecraft:diamond_block)

  • 58         Crafting Table(minecraft:crafting_table)

  • 59         Wheat Crops(minecraft:wheat)

  • 60         Farmland(minecraft:farmland)

  • 61         Furnace(minecraft:furnace)

  • 62         Burning Furnace(minecraft:lit_furnace)

  • 63         Standing Sign Block(minecraft:standing_sign)

  • 64       Oak Door Block(minecraft:wooden_door)

  • 65         Ladder(minecraft:ladder)

  • 66         Rail(minecraft:rail)

  • 67         Cobblestone Stairs(minecraft:stone_stairs)

  • 68         Wall-mounted Sign Block(minecraft:wall_sign)

  • 69         Lever(minecraft:lever)

  • 70         Stone Pressure Plate(minecraft:stone_pressure_plate)

  • 71         Iron Door Block(minecraft:iron_door)

  • 72         Wooden Pressure Plate(minecraft:wooden_pressure_plate)

  • 73         Redstone Ore(minecraft:redstone_ore)

  • 74         Glowing Redstone Ore(minecraft:lit_redstone_ore)

  • 75         Redstone Torch (off)(minecraft:unlit_redstone_torch)

  • 76         Redstone Torch (on)(minecraft:redstone_torch)

  • 77         Stone Button(minecraft:stone_button)

  • 78         Snow(minecraft:snow_layer)

  • 79         Ice(minecraft:ice)

  • 80         Snow Block(minecraft:snow)

  • 81         Cactus(minecraft:cactus)

  • 82         Clay(minecraft:clay)

  • 83         Sugar Canes(minecraft:reeds)

  • 84         Jukebox(minecraft:jukebox)

  • 85         Oak Fence(minecraft:fence)

  • 86         Pumpkin(minecraft:pumpkin)

  • 87         Netherrack(minecraft:netherrack)

  • 88         Soul Sand(minecraft:soul_sand)

  • 89         Glowstone(minecraft:glowstone)

  • 90         Nether Portal(minecraft:portal)

  • 91         Jack o'Lantern(minecraft:lit_pumpkin)

  • 92         Cake Block(minecraft:cake)

  • 93         Redstone Repeater Block (off)(minecraft:unpowered_repeater)

  • 94         Redstone Repeater Block (on)(minecraft:powered_repeater)

  • 95         White Stained Glass(minecraft:stained_glass)

  • 95:1     Orange Stained Glass(minecraft:stained_glass)

  • 95:2     Magenta Stained Glass(minecraft:stained_glass)

  • 95:3     Light Blue Stained Glass(minecraft:stained_glass)

  • 95:4     Yellow Stained Glass(minecraft:stained_glass)

  • 95:5     Lime Stained Glass(minecraft:stained_glass)

  • 95:6     Pink Stained Glass(minecraft:stained_glass)

  • 95:7     Gray Stained Glass(minecraft:stained_glass)

  • 95:8     Light Gray Stained Glass(minecraft:stained_glass)

  • 95:9     Cyan Stained Glass(minecraft:stained_glass)

  • 95:10     Purple Stained Glass(minecraft:stained_glass)

  • 95:11     Blue Stained Glass(minecraft:stained_glass)

  • 95:12     Brown Stained Glass(minecraft:stained_glass)

  • 95:13     Green Stained Glass(minecraft:stained_glass)

  • 95:14     Red Stained Glass(minecraft:stained_glass)

  • 95:15     Black Stained Glass(minecraft:stained_glass)

  • 96         Wooden Trapdoor(minecraft:trapdoor)

  • 97         Stone Monster Egg(minecraft:monster_egg)

  • 97:1     Cobblestone Monster Egg(minecraft:monster_egg)

  • 97:2     Stone Brick Monster Egg(minecraft:monster_egg)

  • 97:3     Mossy Stone Brick Monster Egg(minecraft:monster_egg)

  • 97:4     Cracked Stone Brick Monster Egg(minecraft:monster_egg)

  • 97:5     Chiseled Stone Brick Monster Egg(minecraft:monster_egg)

  • 98         Stone Bricks(minecraft:stonebrick)

  • 98:1     Mossy Stone Bricks(minecraft:stonebrick)

  • 98:2     Cracked Stone Bricks(minecraft:stonebrick)

  • 98:3     Chiseled Stone Bricks(minecraft:stonebrick)

  • 99         Brown Mushroom Block(minecraft:brown_mushroom_block)

  • 100     Red Mushroom Block(minecraft:red_mushroom_block)

  • 101     Iron Bars(minecraft:iron_bars)

  • 102     Glass Pane(minecraft:glass_pane)

  • 103     Melon Block(minecraft:melon_block)

  • 104     Pumpkin Stem(minecraft:pumpkin_stem)

  • 105     Melon Stem(minecraft:melon_stem)

  • 106     Vines(minecraft:vine)

  • 107     Oak Fence Gate(minecraft:fence_gate)

  • 108     Brick Stairs(minecraft:brick_stairs)

  • 109     Stone Brick Stairs(minecraft:stone_brick_stairs)

  • 110     Mycelium(minecraft:mycelium)

  • 111     Lily Pad(minecraft:waterlily)

  • 112     Nether Brick(minecraft:nether_brick)

  • 113     Nether Brick Fence(minecraft:nether_brick_fence)

  • 114     Nether Brick Stairs(minecraft:nether_brick_stairs)

  • 115     Nether Wart(minecraft:nether_wart)

  • 116     Enchantment Table(minecraft:enchanting_table)

  • 117     Brewing Stand(minecraft:brewing_stand)

  • 118     Cauldron(minecraft:cauldron)

  • 119     End Portal(minecraft:end_portal)

  • 120     End Portal Frame(minecraft:end_portal_frame)

  • 121     End Stone(minecraft:end_stone)

  • 122     Dragon Egg(minecraft:dragon_egg)

  • 123     Redstone Lamp (inactive)(minecraft:redstone_lamp)

  • 124     Redstone Lamp (active)(minecraft:lit_redstone_lamp)

  • 125     Double Oak Wood Slab(minecraft:double_wooden_slab)

  • 125:1     Double Spruce Wood Slab(minecraft:double_wooden_slab)

  • 125:2     Double Birch Wood Slab(minecraft:double_wooden_slab)

  • 125:3     Double Jungle Wood Slab(minecraft:double_wooden_slab)

  • 125:4     Double Acacia Wood Slab(minecraft:double_wooden_slab)

  • 125:5     Double Dark Oak Wood Slab(minecraft:double_wooden_slab)

  • 126     Oak Wood Slab(minecraft:wooden_slab)

  • 126:1     Spruce Wood Slab(minecraft:wooden_slab)

  • 126:2     Birch Wood Slab(minecraft:wooden_slab)

  • 126:3     Jungle Wood Slab(minecraft:wooden_slab)

  • 126:4     Acacia Wood Slab(minecraft:wooden_slab)

  • 126:5     Dark Oak Wood Slab(minecraft:wooden_slab)

  • 127     Cocoa(minecraft:cocoa)

  • 128     Sandstone Stairs(minecraft:sandstone_stairs)

  • 129     Emerald Ore(minecraft:emerald_ore)

  • 130     Ender Chest(minecraft:ender_chest)

  • 131     Tripwire Hook(minecraft:tripwire_hook)

  • 132     Tripwire(minecraft:tripwire_hook)

  • 133     Emerald Block(minecraft:emerald_block)

  • 134     Spruce Wood Stairs(minecraft:spruce_stairs)

  • 135     Birch Wood Stairs(minecraft:birch_stairs)

  • 136     Jungle Wood Stairs(minecraft:jungle_stairs)

  • 137     Command Block(minecraft:command_block)

  • 138     Beacon(minecraft:beacon)

  • 139     Cobblestone Wall(minecraft:cobblestone_wall)

  • 139:1     Mossy Cobblestone Wall(minecraft:cobblestone_wall)

  • 140     Flower Pot(minecraft:flower_pot)

  • 141     Carrots(minecraft:carrots)

  • 142     Potatoes(minecraft:potatoes)

  • 143     Wooden Button(minecraft:wooden_button)

  • 144     Mob Head(minecraft:skull)

  • 145     Anvil(minecraft:anvil)

  • 146     Trapped Chest(minecraft:trapped_chest)

  • 147     Weighted Pressure Plate (light)(minecraft:light_weighted_pressure_plate)

  • 148     Weighted Pressure Plate (heavy)(minecraft:heavy_weighted_pressure_plate)

  • 149     Redstone Comparator (inactive)(minecraft:unpowered_comparator)

  • 150     Redstone Comparator (active)(minecraft:powered_comparator)

  • 151     Daylight Sensor(minecraft:daylight_detector)

  • 152     Redstone Block(minecraft:redstone_block)

  • 153     Nether Quartz Ore(minecraft:quartz_ore)

  • 154     Hopper(minecraft:hopper)

  • 155     Quartz Block(minecraft:quartz_block)

  • 155:1     Chiseled Quartz Block(minecraft:quartz_block)

  • 155:2     Pillar Quartz Block(minecraft:quartz_block)

  • 156     Quartz Stairs(minecraft:quartz_stairs)

  • 157     Activator Rail(minecraft:activator_rail)

  • 158     Dropper(minecraft:dropper)

  • 159     White Stained Clay(minecraft:stained_hardened_clay)

  • 159:1     Orange Stained Clay(minecraft:stained_hardened_clay)

  • 159:2     Magenta Stained Clay(minecraft:stained_hardened_clay)

  • 159:3     Light Blue Stained Clay(minecraft:stained_hardened_clay)

  • 159:4     Yellow Stained Clay(minecraft:stained_hardened_clay)

  • 159:5     Lime Stained Clay(minecraft:stained_hardened_clay)

  • 159:6     Pink Stained Clay(minecraft:stained_hardened_clay)

  • 159:7     Gray Stained Clay(minecraft:stained_hardened_clay)

  • 159:8   Light Gray Stained Clay(minecraft:stained_hardened_clay)

  • 159:9     Cyan Stained Clay(minecraft:stained_hardened_clay)

  • 159:10     Purple Stained Clay(minecraft:stained_hardened_clay)

  • 159:11     Blue Stained Clay(minecraft:stained_hardened_clay)

  • 159:12     Brown Stained Clay(minecraft:stained_hardened_clay)

  • 159:13     Green Stained Clay(minecraft:stained_hardened_clay)

  • 159:14     Red Stained Clay(minecraft:stained_hardened_clay)

  • 159:15     Black Stained Clay(minecraft:stained_hardened_clay)

  • 160     White Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:1     Orange Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:2     Magenta Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:3     Light Blue Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:4     Yellow Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:5    Lime Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:6     Pink Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:7     Gray Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:8     Light Gray Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:9     Cyan Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:10     Purple Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:11     Blue Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:12     Brown Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:13     Green Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:14     Red Stained Glass Pane(minecraft:stained_glass_pane)

  • 160:15     Black Stained Glass Pane(minecraft:stained_glass_pane)

  • 161     Acacia Leaves(minecraft:leaves2)

  • 161:1     Dark Oak Leaves(minecraft:leaves2)

  • 162     Acacia Wood(minecraft:log2)

  • 162:1     Dark Oak Wood(minecraft:log2)

  • 163     Acacia Wood Stairs(minecraft:acacia_stairs)

  • 164     Dark Oak Wood Stairs(minecraft:dark_oak_stairs)

  • 165     Slime Block(minecraft:slime)

  • 166     Barrier(minecraft:barrier)

  • 167     Iron Trapdoor(minecraft:iron_trapdoor)

  • 168     Prismarine(minecraft:prismarine)

  • 168:1     Prismarine Bricks(minecraft:prismarine)

  • 168:2     Dark Prismarine(minecraft:prismarine)

  • 169     Sea Lantern(minecraft:sea_lantern)

  • 170     Hay Bale(minecraft:hay_block)

  • 171     White Carpet(minecraft:carpet)

  • 171:1     Orange Carpet(minecraft:carpet)

  • 171:2     Magenta Carpet(minecraft:carpet)

  • 171:3     Light Blue Carpet(minecraft:carpet)

  • 171:4     Yellow Carpet(minecraft:carpet)

  • 171:5     Lime Carpet(minecraft:carpet)

  • 171:6     Pink Carpet(minecraft:carpet)

  • 171:7     Gray Carpet(minecraft:carpet)

  • 171:8     Light Gray Carpet(minecraft:carpet)

  • 171:9     Cyan Carpet(minecraft:carpet)

  • 171:10     Purple Carpet(minecraft:carpet)

  • 171:11     Blue Carpet(minecraft:carpet)

  • 171:12     Brown Carpet(minecraft:carpet)

  • 171:13     Green Carpet(minecraft:carpet)

  • 171:14     Red Carpet(minecraft:carpet)

  • 171:15     Black Carpet(minecraft:carpet)

  • 172     Hardened Clay(minecraft:hardened_clay)

  • 173     Block of Coal(minecraft:coal_block)

  • 174     Packed Ice(minecraft:packed_ice)

  • 175     Sunflower(minecraft:double_plant)

  • 175:1     Lilac(minecraft:double_plant)

  • 175:2     Double Tallgrass(minecraft:double_plant)

  • 175:3     Large Fern(minecraft:double_plant)

  • 175:4     Rose Bush(minecraft:double_plant)

  • 175:5     Peony(minecraft:double_plant)

  • 176     Free-standing Banner(minecraft:standing_banner)

  • 177     Wall-mounted Banner(minecraft:wall_banner)

  • 178     Inverted Daylight Sensor(minecraft:daylight_detector_inverted)

  • 179     Red Sandstone(minecraft:red_sandstone)

  • 179:1     Chiseled Red Sandstone(minecraft:red_sandstone)

  • 179:2     Smooth Red Sandstone(minecraft:red_sandstone)

  • 180     Red Sandstone Stairs(minecraft:red_sandstone_stairs)

  • 181     Double Red Sandstone Slab(minecraft:double_stone_slab2)

  • 182     Red Sandstone Slab(minecraft:stone_slab2)

  • 183     Spruce Fence Gate(minecraft:spruce_fence_gate)

  • 184     Birch Fence Gate(minecraft:birch_fence_gate)

  • 185     Jungle Fence Gate(minecraft:jungle_fence_gate)

  • 186     Dark Oak Fence Gate(minecraft:dark_oak_fence_gate)

  • 187     Acacia Fence Gate(minecraft:acacia_fence_gate)

  • 188     Spruce Fence(minecraft:spruce_fence)

  • 189     Birch Fence(minecraft:birch_fence)

  • 190     Jungle Fence(minecraft:jungle_fence)

  • 191     Dark Oak Fence(minecraft:dark_oak_fence)

  • 192     Acacia Fence(minecraft:acacia_fence)

  • 193     Spruce Door Block(minecraft:spruce_door)

  • 194     Birch Door Block(minecraft:birch_door)

  • 195     Jungle Door Block(minecraft:jungle_door)

  • 196     Acacia Door Block(minecraft:acacia_door)

  • 197     Dark Oak Door Block(minecraft:dark_oak_door)

  • 198     End Rod(minecraft:end_rod)

  • 199     Chorus Plant(minecraft:chorus_plant)

  • 200     Chorus Flower(minecraft:chorus_flower)

  • 201     Purpur Block(minecraft:purpur_block)

  • 202     Purpur Pillar(minecraft:purpur_pillar)

  • 203     Purpur Stairs(minecraft:purpur_stairs)

  • 204     Purpur Double Slab(minecraft:purpur_double_slab)

  • 205     Purpur Slab(minecraft:purpur_slab)

  • 206     End Stone Bricks(minecraft:end_bricks)

  • 207     Beetroot Block(minecraft:beetroots)

  • 208     Grass Path(minecraft:grass_path)

  • 209     End Gateway(minecraft:end_gateway)

  • 210     Repeating Command Block(minecraft:repeating_command_block)

  • 211     Chain Command Block(minecraft:chain_command_block)

  • 212     Frosted Ice(minecraft:frosted_ice)
  • 255     Structure Block(minecraft:structure_block)