def Erstelle_Gebaeude():#stellt das „Rohgehäuse“ fertig
blocks.fill(STRIPPED_DARK_OAK_WOOD, pos(~~1, ~~(-1), ~~0), pos(~~21, ~~21, ~~21), FillOperation.REPLACE) blocks.fill(AIR, pos(~~2,~~0,~~1), pos(~~20, ~~20, ~~20), FillOperation.REPLACE) blocks.fill(RED_CARPET, pos(~~2, ~~0, ~~1), pos(~~20, ~~0, ~~20), FillOperation.REPLACE)
def etageUndZwischenwand():#füllt Rohgehäuse mit Zwischenetage und Zwischenwand
etage() teppichFuerEtage() zwischenwand()
def etage():#erstellt Etage in der Mitte der Höhe vom Haus
blocks.fill(STRIPPED_DARK_OAK_WOOD, pos(~~1, ~~11,~~1), pos(~~20, ~~11, ~~20), FillOperation.REPLACE)#Etage
def teppichFuerEtage():#erstellt roten Teppich auf der Zwischenetage
blocks.fill(RED_CARPET, pos(~~2, ~~12, ~~1), pos(~~20, ~~12, ~~20), FillOperation.REPLACE)#Teppich für Etage
def zwischenwand():#erstellt Zwischenwand in der Mitte des Hauses
blocks.fill(STRIPPED_DARK_OAK_WOOD, pos(~~11, ~~0,~~0), pos(~~11,~~20,~~20), FillOperation.REPLACE)#Zwischenwand