gf2:projekte:minecraft:2d2gruppe4

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
gf2:projekte:minecraft:2d2gruppe4 [2022/12/06 12:16] pauchardegf2:projekte:minecraft:2d2gruppe4 [2023/02/10 11:38] (aktuell) lehmannr
Zeile 19: Zeile 19:
   * Artillerie   * Artillerie
  
-**Bisherige Fortschritte:** + 
-[[https://www.youtube.com/watch?v=dQw4w9WgXcQ]]+__**Wolkenkratzer**__ 
 + 
 +<sxh python> 
 +def wolkenkratzer(x, z, y, b, h, C): 
 +    blocks.fill(C, world(x, z, y), world(x+b,z+h,y),FillOperation.REPLACE) 
 +    blocks.fill(C, world(x+b, z, y), world(x+b, z+h, y+b),FillOperation.REPLACE) 
 +    blocks.fill(C, world(x+b,z, y+b), world(x, z+h, y+b),FillOperation.REPLACE) 
 +    blocks.fill(C, world(x, z+h, y), world(x, z, y+b),FillOperation.REPLACE) 
 +def Boden(x,z,y,b,h,C): 
 +    blocks.fill(C, world(x+1, z, y+1), world(x+b,z+h,y+b),FillOperation.REPLACE) 
 +t = -60 
 +x = 25 
 +y = 83 
 +wolkenkratzer( x,t,y, 15, 1,WHITE_CONCRETE)  
 +wolkenkratzer( x,1+t,y, 15, 4,LIGHT_GRAY_STAINED_GLASS) 
 + 
 + 
 +__**Timer**__ 
 + 
 +def timer(x, y, h): 
 +    blocks.fill(PRISMARINE_BRICKS, world(x, -57, y), world(x+3, -57+h, y), FillOperation.REPLACE) 
 +    blocks.fill(PRISMARINE_BRICKS, world(x+3, -57, y), world(x+3, -57+h, y+3), FillOperation.REPLACE) 
 +    blocks.fill(PRISMARINE_BRICKS, world(x+3, -57, y+3), world(x, -57+h, y+3), FillOperation.REPLACE) 
 +    blocks.fill(PRISMARINE_BRICKS, world(x, -57, y+3), world(x, -57+h, y), FillOperation.REPLACE) 
 +    blocks.fill(COBWEB, world(x+1, -57, y+1), world(x+2, -57+h, y+2), FillOperation.REPLACE) 
 + 
 + 
 +timer(-40, -40, 33) 
 + 
 +</sxh>
  • gf2/projekte/minecraft/2d2gruppe4.1670325400.txt.gz
  • Zuletzt geändert: 2022/12/06 12:16
  • von paucharde