🌳 MiniKıraft | ⭐ Puan: 0
// Ağaçlar
const agaclar=[];
for(let i=0;i<15;i++){
agaclar.push({
x:Math.random()*850,
y:Math.// Ağaçlar
agaclar.forEach(a=>{
// Gövde
ctx.fillStyle="#8B5A2B";
ctx.fillRect(a.x+8,a.y+18,12,22);
// Yapraklar
ctx.fillStyle="#228B22";
ctx.fillRect(a.x,a.y,28,24);
});()*450const taslar=[];
for(let i=0;i<12;i++){
taslar.push({
x:Math.random()*850,
y:Math.random()*450
});
}taslar.forEach(t=>{
ctx.fillStyle="#888";
ctx.fillRect(t.x,t.y,26,26);
});const elmaslar=[];
// =====================
// CAN SİSTEMİ
// =====================
let can = 10;
function canCiz(){
ctx.fillStyle="red";
ctx.font="22px Arial";
ctx.fillText("❤️ Can: "+can,20,70);
}// =====================
// SU GÖLÜ
// =====================
const goller=[];
for(let i=0;i<4;i++){
goller.push({
x:Math.random()*850,
y:Math.random()*420,
w:80,
h:60
});
}
});
}// Ağaçlar
agaclar.forEach(a=>{
// Gövde
ctx.fillStyle="#8B5A2B";
ctx.fillRect(a.x+8,a.y+18,12,22);
// Yapraklar
ctx.fillStyle="#228B22";
ctx.fillRect(a.x,a.y,28,24);
});