User prompt
Delete game
User prompt
4 raunt olsun ve her rauntda hızlansın
User prompt
Pet benden biraz uzak olsun
User prompt
Oyuna pet ekle bizi korusun
User prompt
Arka plan ekle
User prompt
Bütün canavarları yok etdikten sonra kazanalım ve kaç canavar öldürdükleri yazılsın
User prompt
Goblimlerde ölsün
User prompt
Hayir ölmüyor
User prompt
Goblinlere 3 kere vurunca ölsünler
User prompt
Please fix the bug: 'TypeError: LK.getHealth is not a function' in or related to this line: 'LK.setHealth(LK.getHealth() - 1);' Line Number: 110
User prompt
Goblinler bizi dondursun 10 saniye
User prompt
Please fix the bug: 'TypeError: setTimeout is not a function' in or related to this line: 'setTimeout(function () {' Line Number: 128
User prompt
Herkezi büyüt goblinler haraket etsin
User prompt
Canavarlar bizim canimizi -1 alsın
User prompt
Karakterimiz haraket etsin
User prompt
Canavarlar bize saldirsin ve goblinler ise bizi dondursun
User prompt
Ateş ederken sol ve sağa yarajet etdire bilelim
Initial prompt
Hero
/**** * Classes ****/ var Fire = Container.expand(function () { var self = Container.call(this); var fireGraphics = self.attachAsset('fire', { anchorX: 0.5, anchorY: 0.5, scaleX: 2, scaleY: 2 }); self.speed = -10; self.update = function () { self.y += self.speed; }; }); var Goblin = Container.expand(function () { var self = Container.call(this); var goblinGraphics = self.attachAsset('goblin', { anchorX: 0.5, anchorY: 0.5, scaleX: 2, scaleY: 2 }); }); var Hero = Container.expand(function () { var self = Container.call(this); var heroGraphics = self.attachAsset('hero', { anchorX: 0.5, anchorY: 0.5, scaleX: 2, scaleY: 2 }); self.shoot = function () { var fire = new Fire(); fire.x = self.x; fire.y = self.y; game.addChild(fire); heroBullets.push(fire); }; }); var Monster = Container.expand(function () { var self = Container.call(this); var monsterGraphics = self.attachAsset('monster', { anchorX: 0.5, anchorY: 0.5, scaleX: 2, scaleY: 2 }); }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ //<Assets used in the game will automatically appear here> //<Write game logic code here, including initializing arrays and variables> var hero = game.addChild(new Hero()); hero.x = 2048 / 2; hero.y = 2732 - 150; var monsters = []; var goblins = []; var heroBullets = []; // Create monsters and goblins for (var i = 0; i < 5; i++) { var monster = new Monster(); monster.x = Math.random() * 2048; monster.y = Math.random() * 1000; monsters.push(monster); game.addChild(monster); var goblin = new Goblin(); goblin.x = Math.random() * 2048; goblin.y = Math.random() * 1000; goblins.push(goblin); game.addChild(goblin); } // Handle game updates game.update = function () { // Update hero bullets for (var i = heroBullets.length - 1; i >= 0; i--) { heroBullets[i].update(); if (heroBullets[i].y < -50) { heroBullets[i].destroy(); heroBullets.splice(i, 1); } } // Check for collisions for (var i = monsters.length - 1; i >= 0; i--) { // Move monsters towards hero monsters[i].x += (hero.x - monsters[i].x) * 0.01; monsters[i].y += (hero.y - monsters[i].y) * 0.01; // Decrease player's health by 1 when a monster intersects with the hero if (monsters[i].intersects(hero)) { LK.setHealth(LK.getHealth() - 1); } for (var j = heroBullets.length - 1; j >= 0; j--) { if (monsters[i].intersects(heroBullets[j])) { monsters[i].destroy(); heroBullets[j].destroy(); monsters.splice(i, 1); heroBullets.splice(j, 1); break; } } } // Goblins freeze hero and move for (var i = 0; i < goblins.length; i++) { goblins[i].x += (hero.x - goblins[i].x) * 0.01; goblins[i].y += (hero.y - goblins[i].y) * 0.01; if (goblins[i].intersects(hero)) { hero.speed = 0; // Freeze hero setTimeout(function () { hero.speed = 10; }, 3000); // Unfreeze hero after 3 seconds } } }; // Handle touch events game.down = function (x, y, obj) { hero.shoot(); if (x < hero.x) { hero.x -= 10; } else if (x > hero.x) { hero.x += 10; } if (y < hero.y) { hero.y -= 10; } else if (y > hero.y) { hero.y += 10; } };
===================================================================
--- original.js
+++ change.js
@@ -4,9 +4,11 @@
var Fire = Container.expand(function () {
var self = Container.call(this);
var fireGraphics = self.attachAsset('fire', {
anchorX: 0.5,
- anchorY: 0.5
+ anchorY: 0.5,
+ scaleX: 2,
+ scaleY: 2
});
self.speed = -10;
self.update = function () {
self.y += self.speed;
@@ -15,18 +17,20 @@
var Goblin = Container.expand(function () {
var self = Container.call(this);
var goblinGraphics = self.attachAsset('goblin', {
anchorX: 0.5,
- anchorY: 0.5
+ anchorY: 0.5,
+ scaleX: 2,
+ scaleY: 2
});
});
-//<Write imports for supported plugins here>
-//<Write entity 'classes' with empty functions for important behavior here>
var Hero = Container.expand(function () {
var self = Container.call(this);
var heroGraphics = self.attachAsset('hero', {
anchorX: 0.5,
- anchorY: 0.5
+ anchorY: 0.5,
+ scaleX: 2,
+ scaleY: 2
});
self.shoot = function () {
var fire = new Fire();
fire.x = self.x;
@@ -38,9 +42,11 @@
var Monster = Container.expand(function () {
var self = Container.call(this);
var monsterGraphics = self.attachAsset('monster', {
anchorX: 0.5,
- anchorY: 0.5
+ anchorY: 0.5,
+ scaleX: 2,
+ scaleY: 2
});
});
/****
@@ -102,10 +108,12 @@
break;
}
}
}
- // Goblins freeze hero
+ // Goblins freeze hero and move
for (var i = 0; i < goblins.length; i++) {
+ goblins[i].x += (hero.x - goblins[i].x) * 0.01;
+ goblins[i].y += (hero.y - goblins[i].y) * 0.01;
if (goblins[i].intersects(hero)) {
hero.speed = 0; // Freeze hero
setTimeout(function () {
hero.speed = 10;