User prompt
background bu nesne ekranı kaplar yap
User prompt
tıklayıncada tıklama sesini çal
User prompt
sen sadece bu sesleri birini düşman vurunca çalacaksın.
User prompt
müziği arkada hep çal
User prompt
For every enemy that is kidnapped, i.e. if the enemies leave the screen, you lose -50 points for mana and the game is lost as the points are minimized.
User prompt
final skor skor yerinde yazandır.
User prompt
For each enemy captured, you lose -50 points and the game is lost as soon as the points are deducted.
User prompt
add a score place and every time a score is won, +10 should be written on the screen where the score is won
User prompt
Add losing and winning. Let's take 10 points for each enemy we hit. 1000 points wins the game.
Remix started
Copy TRANSFORMERS unite
/**** * Classes ****/ // Bullet class var Bullet = Container.expand(function () { var self = Container.call(this); var bulletGraphics = self.attachAsset('bullet', { anchorX: 0.5, anchorY: 0.5 }); self.speed = -15; self.update = function () { self.y += self.speed; }; }); // Enemy class var Enemy = Container.expand(function () { var self = Container.call(this); var enemyGraphics = self.attachAsset('enemy', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 5; self.update = function () { self.y += self.speed; if (self.y > 2732) { self.y = 0; self.x = Math.random() * 2048; LK.setScore(LK.getScore() - 50); scoreTxt.setText(LK.getScore()); if (LK.getScore() <= -50) { LK.showGameOver(); } } }; }); //<Assets used in the game will automatically appear here> //<Write imports for supported plugins here> // Hero class var Hero = Container.expand(function () { var self = Container.call(this); var heroGraphics = self.attachAsset('hero', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 10; self.update = function () { // Hero update logic }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ // Create a background object that covers the entire screen var background = LK.getAsset('backgroun', { anchorX: 0.5, anchorY: 0.5, scaleX: 2048 / 100, // Scale to cover the full width scaleY: 2732 / 100, // Scale to cover the full height x: 1024, // Center horizontally y: 1366 // Center vertically }); game.addChild(background); // Play background music continuously LK.playMusic('backgroundmusic'); // Initialize score display var scoreTxt = new Text2('0', { size: 150, fill: 0xFFFFFF }); scoreTxt.anchor.set(0.5, 0); LK.gui.top.addChild(scoreTxt); // Initialize hero var hero = game.addChild(new Hero()); hero.x = 1024; hero.y = 2500; // Initialize enemies var enemies = []; for (var i = 0; i < 5; i++) { var enemy = new Enemy(); enemy.x = Math.random() * 2048; enemy.y = Math.random() * 1000; enemies.push(enemy); game.addChild(enemy); } // Initialize bullets var bullets = []; // Handle game move event game.move = function (x, y, obj) { hero.x = x; hero.y = y; }; game.down = function (x, y, obj) { var newBullet = new Bullet(); newBullet.x = hero.x; newBullet.y = hero.y; bullets.push(newBullet); game.addChild(newBullet); // Play click sound LK.getSound('click').play(); }; // Handle game update event game.update = function () { // Update bullets for (var i = bullets.length - 1; i >= 0; i--) { var bullet = bullets[i]; bullet.update(); if (bullet.y < 0) { bullet.destroy(); bullets.splice(i, 1); } } // Update enemies for (var j = enemies.length - 1; j >= 0; j--) { var enemy = enemies[j]; enemy.update(); if (hero.intersects(enemy)) { LK.effects.flashScreen(0xff0000, 1000); LK.setScore(LK.getScore() - 50); scoreTxt.setText(LK.getScore()); if (LK.getScore() <= -50) { LK.showGameOver(); } } // Check for bullet collision for (var k = bullets.length - 1; k >= 0; k--) { var bullet = bullets[k]; if (bullet.intersects(enemy)) { // Destroy bullet and enemy bullet.destroy(); bullets.splice(k, 1); enemy.destroy(); enemies.splice(j, 1); // Play explosion sound LK.getSound('explosion').play(); // Increase score by 10 for each enemy hit LK.setScore(LK.getScore() + 10); // Update score display scoreTxt.setText(LK.getScore()); break; } } } // Initialize enemy count var enemyCount = 5; // Initialize total killed enemies count var totalKilled = 0; // Spawn more enemies when all are killed if (enemies.length === 0 && totalKilled < 25) { for (var i = 0; i < enemyCount; i++) { var enemy = new Enemy(); enemy.x = Math.random() * 2048; enemy.y = Math.random() * 1000; enemies.push(enemy); game.addChild(enemy); } // Increase enemy count for next level enemyCount++; // Increase total killed enemies count totalKilled += enemyCount; } else if (LK.getScore() >= 1000) { // End game after score reaches 1000 LK.showYouWin("You won with a score of " + LK.getScore() + "! Your final score is " + LK.getScore() + "."); } };
===================================================================
--- original.js
+++ change.js
@@ -58,8 +58,21 @@
/****
* Game Code
****/
+// Create a background object that covers the entire screen
+var background = LK.getAsset('backgroun', {
+ anchorX: 0.5,
+ anchorY: 0.5,
+ scaleX: 2048 / 100,
+ // Scale to cover the full width
+ scaleY: 2732 / 100,
+ // Scale to cover the full height
+ x: 1024,
+ // Center horizontally
+ y: 1366 // Center vertically
+});
+game.addChild(background);
// Play background music continuously
LK.playMusic('backgroundmusic');
// Initialize score display
var scoreTxt = new Text2('0', {
balls for shooting should be sleek and modern.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
2d Ağır, metalik bir kapsül. Yüzeyi mat siyah, aerodinamik hatlara sahip. Üzerinde belirgin açılma mekanizmaları ve iniş takımlarını andıran çıkıntılar var. Etrafında hafif bir uğultu ve titreşim hissediliyor. İçinde ne olduğu bilinmiyor, ancak tehlikeli bir şey taşıdığı kesin.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A robot with small, propeller-like wings. These wings allow the robot to glide through the air for short periods of time and change direction. The player has to use the wings at the right times and angles to control the fall, overcome obstacles and reach the goal. The robot's energy level and the durability of the wings will be the limiting factors. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows