User prompt
move all the ballons 2000 pixels higher, in all of the levels
User prompt
level 2 does not look like level 1. at level 1, daggers refill correctly, as in there's only 1 active dagger that can be dropped, and after dropping it it correctly refills the next one. however, starting with level 2, I can see ALL 5 available daggers moving on the screen, which is incrorrect. at every given level, ragrdless of what level I find myself in, I should only see the active dagger that I can drop
User prompt
as players progress in the levels, the newly added targets must appear BELLOW the existing ones. for example. let's say at level one, the first target is 100 pixels under the dagger, the 2nd target is 200 pixels under the dagger, and the third target is 300 pixels under the dagger. at level 2 when a new target is added, that means the 4th target would be 400 pixels under the dagger
User prompt
Fix Bug: 'TypeError: Cannot read properties of undefined (reading 'y')' in this line: 'newTarget.y = targets[targets.length - 1].y - targetSpacing;' Line Number: 133
User prompt
well, now the targets are way OVER the dropping dagger, which means the dropping dagger can never touch them since they are above it
User prompt
so, as I said, after each level increment, another target should become available. however. the problem s with the position of the targets. right now the 3 targets at level 1 are the ones at the bottom of the screen. I wanted them to be the other way around, and tart level 1 with the targets at the top of the screen. as the levels increase, the targets will be added bellow the existing targets
User prompt
Fix Bug: 'TypeError: Cannot read properties of undefined (reading 'x')' in this line: 'newTarget.x = targets[0].x;' Line Number: 132
User prompt
level 1 looks and feels great, but level 2 is weird and looks different
User prompt
can you start each level with 5 daggers instead of 3?
User prompt
double the falling speed of the dagger
User prompt
there's an issue with either the UI or the dagger drop logic. the first dropped dagger works correctly and that's correctly shown in the UI. however, the second dropped dagger usses both the 2nd and the 3rd dagger in the UI and then it's game over. basically, instead of 3 daggers,m I onyl have access to 2
User prompt
there's an issue with either the UI or the dagger drop logic. the first dropped dagger works correctly and that's correctly shown in the UI. however, the second dropped dagger usses both the 2nd and the 3rd dagger in the UI and then it's game over. basically, instead of 3 daggers,m I onyl have access to 2
User prompt
Fix Bug: 'Uncaught TypeError: Cannot read properties of undefined (reading 'updateDaggers')' in this line: 'daggerUI.updateDaggers(lives);' Line Number: 72
User prompt
now I need to have an UI displaying the available daggers I have. since I start with 3 avalable ones, that means 3 daggers have to be displayed in the ui. as soon as I release one, it disappears from the UI, leaveing the remaining 2 ones left
User prompt
great, but you are displaying all 3 daggers at the same time on the screen. Ishould only be seeing the one active one I hacve access to. after that one is released and reaches the bottom of the screen, the next one refills in it's place
User prompt
after a dropped dagger has reached the bottom fo the screen, the next dagger should be made available for dropping
User prompt
now, I want each level to start with 3 lives AKA daggers. each dagger is basically a live. so the level only leads to game over after all 3 daggers have been consumed. if all the targerts i na level have been destroyed, we move to the next level. if any target still stands, it's game over
User prompt
you ALMOST udnerstood the assignment. youdid it alsmost correct, but you started the level with the targets at the bottom of the screen. I asked you to start level 1 with the targets at the TOP of the screen, the ones closest to the dagger
User prompt
let's improve the logic of the levels. right now, there's 14 moving targets on the screen. I want you to corelate each target to a level. for example, level 1 has only 3 targets. advancing to level 2, adds another target and so on. targets start from the top target and move down. so at level 1, the top 3 targets are available. at level 2, another atrget is added bellow, so the player now has 4 targets, and so on
User prompt
now, let's add levels to the game. the level starts at 1, and increases to level 2when all the targets have been destroyed
User prompt
half the falling speed of the dagger
User prompt
move the dagger 200 pixels higher
User prompt
some balloons are not getting stuck then they hit the edge of the screen, which shouldnt happen
User prompt
all balloons start from the middle of the line they are moving across. can you make them start from a random position of that line? onlt the horizontal line is affected by this change, their vertical position has to remain the same.
User prompt
right now all balloons start their movement from the middle of the screen across the horizontal line they move across. I need you to make them start from a random position instead.
var Dagger = Container.expand(function () { var self = Container.call(this); var daggerGraphics = self.createAsset('dagger', 'Dagger Graphics', .5, .5); self.speed = 22 * 1.1; self.direction = 1; self.move = function () { if (!self.isDropping) { if (self.x > 2048 - self.width / 2) { self.x = 2048 - self.width / 2; self.direction *= -1; } else if (self.x < self.width / 2) { self.x = self.width / 2; self.direction *= -1; } self.x += self.speed * self.direction; } else { self.y += self.speed; } }; self.isDropping = false; self.drop = function () { if (self.isDropping) { self.y += self.speed; } }; }); var Target = Container.expand(function (index) { var self = Container.call(this); var targetGraphics = self.createAsset('target', 'Target Graphics', .5, .5); self.direction = index % 2 === 0 ? -1 : 1; self.speed = 2 * 3 * 1.25 * 0.9; self.move = function () { if (self.x > 2048 - self.width / 2) { self.x = 2048 - self.width / 2; self.direction *= -1; } else if (self.x < self.width / 2) { self.x = self.width / 2; self.direction *= -1; } self.x += self.speed * self.direction; }; LK.on('tick', function () { self.move(); }); }); var DaggerUI = Container.expand(function (initialDaggers) { var self = Container.call(this); self.daggerIcons = []; for (var i = 0; i < initialDaggers; i++) { var daggerIcon = self.createAsset('daggerUI', 'Dagger UI Icon', 0, 0); daggerIcon.x = i * (daggerIcon.width + 10); self.daggerIcons.push(daggerIcon); self.addChild(daggerIcon); } self.updateDaggers = function (remainingDaggers) { for (var i = 0; i < self.daggerIcons.length; i++) { if (i < remainingDaggers) { self.daggerIcons[i].visible = true; } else { self.daggerIcons[i].visible = false; } } }; }); var Game = Container.expand(function () { var self = Container.call(this); var daggers = []; var currentScore = 0; var level = 1; var targets = []; var lives = 5; var daggerUI = self.addChild(new DaggerUI(5)); daggerUI.updateDaggers(5); LK.gui.topLeft.addChild(daggerUI); var scoreTxt = new Text2(currentScore.toString(), { size: 150, fill: "#ffffff" }); scoreTxt.anchor.set(.5, 0); LK.gui.topCenter.addChild(scoreTxt); var targetSpacing = 150; for (var i = 0; i < level + 2; i++) { var target = self.addChild(new Target(i)); target.x = Math.random() * 2048; target.y = 2732 - (i * targetSpacing + 100) - 2000; targets.push(target); } var dragNode = null; var isGameOver = false; var tickOffset = 0; var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4 - 200; daggers.push(newDagger); self.addChild(newDagger); dragNode = daggers[0]; dragNode.isDropping = false; stage.on('down', function (obj) { if (dragNode && !dragNode.isDropping) { dragNode.isDropping = true; daggerUI.updateDaggers(--lives); dragNode = null; } }); LK.on('tick', function () { for (var a = daggers.length - 1; a >= 0; a--) { if (daggers[a]) { daggers[a].move(); daggers[a].drop(); } for (var b = targets.length - 1; b >= 0; b--) { if (daggers[a].intersects(targets[b])) { self.removeChild(targets[b]); targets.splice(b, 1); currentScore += 10; scoreTxt.setText(currentScore.toString()); if (targets.length === 0 && lives > 0) { level++; lives = 5; var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4 - 200; daggers.push(newDagger); self.addChild(newDagger); dragNode = newDagger; dragNode.isDropping = false; for (var i = 0; i < level + 2; i++) { var newTargetIndex = i; var newTarget = self.addChild(new Target(newTargetIndex)); newTarget.x = Math.random() * 2048; newTarget.y = targets.length > 0 ? targets[0].y + targetSpacing * (i + 1) - 2000 : 2732 - (i * targetSpacing + 100) - 2000; targets.push(newTarget); } } break; } } if (daggers[a] && daggers[a].y > 2732) { daggers[a].destroy(); daggers.splice(a, 1); if (lives > 0 && dragNode == null) { var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4 - 200; daggers.push(newDagger); self.addChild(newDagger); dragNode = newDagger; dragNode.isDropping = false; } else if (lives <= 0) { isGameOver = true; } } } if (isGameOver) { LK.effects.flashScreen(0xff0000, 1000); LK.showGameOver(); } else {} }); });
===================================================================
--- original.js
+++ change.js
@@ -81,9 +81,9 @@
var targetSpacing = 150;
for (var i = 0; i < level + 2; i++) {
var target = self.addChild(new Target(i));
target.x = Math.random() * 2048;
- target.y = 2732 - (i * targetSpacing + 100);
+ target.y = 2732 - (i * targetSpacing + 100) - 2000;
targets.push(target);
}
var dragNode = null;
var isGameOver = false;
@@ -127,9 +127,9 @@
for (var i = 0; i < level + 2; i++) {
var newTargetIndex = i;
var newTarget = self.addChild(new Target(newTargetIndex));
newTarget.x = Math.random() * 2048;
- newTarget.y = targets.length > 0 ? targets[0].y + targetSpacing * (i + 1) : 2732 - (i * targetSpacing + 100);
+ newTarget.y = targets.length > 0 ? targets[0].y + targetSpacing * (i + 1) - 2000 : 2732 - (i * targetSpacing + 100) - 2000;
targets.push(newTarget);
}
}
break;
dagger pointing down Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixel. 8 bit
pixelated cloudy sky Single Game Texture. In-Game background. 2d. High contrast. No shadows. 8 bit
white round cloud burst. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.8 bit. pixelated
colored text saying (EDGY). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixelated. 8 bit
colored text saying (SHARP). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixelated. 8 bit. retro
colored text saying (DEADLY). sharp dagger edges around the text. pixelated. 8 bit. retro Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
cute red balloon. looking up. feeling scared. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixel. 8 bit