User prompt
the targets have a 20% increse in speed compared to the one bellow them. make ths speed to be 33%
User prompt
right now the daggers overlapping only works correctly in level 1. Ensure dagger overlapping is happening in all levels
User prompt
right now the daggers overlapping only works correctly in level 1. Ensure dagger overlapping is happening in all levels
User prompt
right now the daggers overlapping only works correctly in level 1. Ensure dagger overlapping is happening in all levels
User prompt
make sure the dagger overlapping is happening in all of the levels not just in level 1
User prompt
the 5 starting daggers are on top of the other, so they have different vertical positions in relation to the other. I want all of them to be fully overlapped, so as a user I only see a single one visually
User prompt
right now all starting 5 daggers are position on top of the other. I want them to be overlapped
User prompt
right now targets have an increased speed of 10% compared to the one bellow it. I want this speed increase to be 20% instead
User prompt
add a background image asset that stretches perfectly on the whole screen
User prompt
double the falling speed of the daggers. only the vertical speed when they fall down. the horizontal speed before they get released should remain the same as now
User prompt
double the falling speed of the daggers
User prompt
there's currently 14 avialable targets on the screen. tehy currently all have the same exact speed, but I want them to have different speed. the target closest to the bottom fo the screen must keep it's current speed. the one above should have a 15% increased speed. the one above should have 10% more than the one bellow and so on. so each target has 10% higher moving speed than the one udner it
User prompt
when the player advances to the next level, any daggers remaining from the previous level must not be available in this new level. so whenever advancing to a new level, that level, whichever it is, will always start with 5 daggers
User prompt
when the players advance to the next level, any remaining daggers from the previous level have to be removed, and a fresh batch of 5 new daggers has to be refilled. there can only be 5 daggers per level
User prompt
upon advancing to the next level, ensure any remaining daggers from the previous level are removed
User prompt
upon refreshing the daggers on advancing to the next level, something weird happens, it appears I have mroe than 5 daggers. ensure they refresh properly
User prompt
advancing to the next level should refresh the daggers back to 5
User prompt
after destroying all the targets on the screen, advance to the next level
User prompt
double the falling speed of the daggers
User prompt
now, after releasing a dagger, it moves horizontally as well. after release, a dagger should only move straight down
User prompt
sometimes, after releasing a dagger, if I click while it's moving it can stop midair. once released, a dagger should ignore my tapping actions
User prompt
great, but not the starting daggers also stopped moving left and right before getting dropped. they should only ignore the horizontal movement AFTER getting dropped. before getting dropped, they MUST sldie left and right
User prompt
sometime after releasing a dagger instead of continuing it's path straight down, it starts sliding back left and right, ignoring it's vertical path. once released, a dagger should only move down
User prompt
i should be able to drop the next dagger right after dropping the previous one
User prompt
the level has to end if all 5 daggers have been used without destroying all the targets on the screen
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 () { self.x += self.direction * self.speed; if (self.x > 2048 - self.width / 2 || self.x < self.width / 2) { self.direction *= -1; } if (self.isDropping) { self.y += self.speed / 2; } }; self.isDropping = false; self.drop = function () { if (self.isDropping) { self.y += self.speed / 2; } }; }); 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 Game = Container.expand(function () { var self = Container.call(this); var daggers = []; var currentScore = 0; var targets = []; var currentScore = 0; var scoreTxt = new Text2(currentScore.toString(), { size: 150, fill: "#ffffff" }); scoreTxt.anchor.set(.5, 0); LK.gui.topCenter.addChild(scoreTxt); var targetSpacing = 150; var currentLevel = 1; function addTargets(level) { for (var i = 0; i < level + 2; i++) { var target = self.addChild(new Target(i)); target.x = Math.random() * 2048; target.y = 2732 / 2 - i * targetSpacing + 1200 + 100; target.number = i + 1; targets.push(target); } } addTargets(currentLevel); var dragNode = null; var isGameOver = false; var tickOffset = 0; for (var i = 0; i < 5; i++) { var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4 - 200 - i * 100; daggers.push(newDagger); self.addChild(newDagger); if (i === 0) { dragNode = newDagger; newDagger.isDropping = false; } } stage.on('down', function (obj) { if (dragNode && !dragNode.isDropping) { dragNode.isDropping = true; if (daggers.length > 1) { dragNode = daggers[daggers.length - 2]; } } }); 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()); break; } } if (daggers[a] && daggers[a].y > 2732) { daggers[a].destroy(); daggers.splice(a, 1); if (daggers.length > 0) { dragNode = daggers[daggers.length - 1]; dragNode.isDropping = false; } else if (targets.length === 0) { currentLevel++; if (currentLevel <= 12) { addTargets(currentLevel); for (var i = 0; i < 5; i++) { var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4 - 200 - i * 100; daggers.push(newDagger); self.addChild(newDagger); if (i === 0) { dragNode = newDagger; dragNode.isDropping = false; } } } else { isGameOver = true; } } } } if ((isGameOver || daggers.length === 0) && targets.length > 0) { LK.effects.flashScreen(0xff0000, 1000); LK.showGameOver(); } }); });
===================================================================
--- original.js
+++ change.js
@@ -15,9 +15,8 @@
self.isDropping = false;
self.drop = function () {
if (self.isDropping) {
self.y += self.speed / 2;
- self.direction = 0;
}
};
});
var Target = Container.expand(function (index) {
@@ -81,10 +80,8 @@
if (dragNode && !dragNode.isDropping) {
dragNode.isDropping = true;
if (daggers.length > 1) {
dragNode = daggers[daggers.length - 2];
- } else {
- dragNode = null;
}
}
});
LK.on('tick', function () {
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