【Minecraft】黄金の屋根を持つガラス建造物
2020年5月17日
マイクラで黄金の屋根を持つガラスの建造物を作ります。ガラス壁内部には草木がある豪華な建物にしたいです。
import mcpi.minecraft as minecraft
import mcpi.block as block
import server
import sys
mc = minecraft.Minecraft()
mc.postToChat("Glass House!")
playerPos = mc.player.getPos()
mc.player.setRotation(0)
width = 15
height = 10
p_height = 7
org_x = playerPos.x + 5
org_y = playerPos.y
org_z = playerPos.z + 5
# ガラスの壁
for y in range(0, height):
for x in range(0, width):
for z in range(0, width):
mc.setBlock(
org_x + x,
org_y + y,
org_z + z,
block.GLASS)
# 草の壁
for y in range(0, height):
for x in range(1, width-2):
for z in range(1, width-2):
mc.setBlock(
org_x + x,
org_y + y,
org_z + z,
block.LEAVES)
# 黄金の屋根
for y in range(0, p_height):
for z in range(0, width - 2 * y):
for x in range(0, width - 2 * y):
mc.setBlock(
org_x + x + y,
org_y + y + height,
org_z + z + y,
block.GOLD_BLOCK)
mc.postToChat("Glass House constructed!")
こんな感じにできました。なかなかオシャレ!