/**** * Classes ****/ // Class for Bubbles var Bubble = Container.expand(function () { var self = Container.call(this); var bubbleGraphics = self.attachAsset('bubble', { anchorX: 0.5, anchorY: 0.5 }); self.speed = -5; self.update = function () { self.y += self.speed; }; }); //<Assets used in the game will automatically appear here> //<Write imports for supported plugins here> // Class for the Dragon character var Dragon = Container.expand(function () { var self = Container.call(this); var dragonGraphics = self.attachAsset('dragon', { anchorX: 0.5, anchorY: 0.5 }); self.shootBubble = function () { var bubble = new Bubble(); bubble.x = self.x; bubble.y = self.y; game.addChild(bubble); bubbles.push(bubble); }; }); // Class for Enemies var Enemy = Container.expand(function () { var self = Container.call(this); var enemyGraphics = self.attachAsset('enemy', { anchorX: 0.5, anchorY: 0.5 }); self.update = function () { // Enemy movement logic }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ // Initialize arrays and variables var dragon = game.addChild(new Dragon()); dragon.x = 1024; // Center horizontally dragon.y = 2400; // Near the bottom of the screen var bubbles = []; var enemies = []; // Create 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); } // Handle game updates game.update = function () { // Update bubbles for (var i = bubbles.length - 1; i >= 0; i--) { var bubble = bubbles[i]; bubble.update(); if (bubble.y < -50) { bubble.destroy(); bubbles.splice(i, 1); } } // Check for bubble-enemy collisions for (var i = enemies.length - 1; i >= 0; i--) { var enemy = enemies[i]; for (var j = bubbles.length - 1; j >= 0; j--) { var bubble = bubbles[j]; if (bubble.intersects(enemy)) { // Capture enemy enemy.destroy(); enemies.splice(i, 1); bubble.destroy(); bubbles.splice(j, 1); break; } } } }; // Handle touch events for shooting bubbles game.down = function (x, y, obj) { dragon.shootBubble(); }; // Add a floor to the bottom of the screen for (var i = 0; i < 21; i++) { var floor = LK.getAsset('floor', { anchorX: 0.5, anchorY: 0.5, x: i * 100, y: 2732 - 50 }); game.addChild(floor); }
===================================================================
--- original.js
+++ change.js
@@ -1,99 +1,109 @@
-/****
+/****
* Classes
-****/
+****/
// Class for Bubbles
var Bubble = Container.expand(function () {
- var self = Container.call(this);
- var bubbleGraphics = self.attachAsset('bubble', {
- anchorX: 0.5,
- anchorY: 0.5
- });
- self.speed = -5;
- self.update = function () {
- self.y += self.speed;
- };
+ var self = Container.call(this);
+ var bubbleGraphics = self.attachAsset('bubble', {
+ anchorX: 0.5,
+ anchorY: 0.5
+ });
+ self.speed = -5;
+ self.update = function () {
+ self.y += self.speed;
+ };
});
//<Assets used in the game will automatically appear here>
//<Write imports for supported plugins here>
// Class for the Dragon character
var Dragon = Container.expand(function () {
- var self = Container.call(this);
- var dragonGraphics = self.attachAsset('dragon', {
- anchorX: 0.5,
- anchorY: 0.5
- });
- self.shootBubble = function () {
- var bubble = new Bubble();
- bubble.x = self.x;
- bubble.y = self.y;
- game.addChild(bubble);
- bubbles.push(bubble);
- };
+ var self = Container.call(this);
+ var dragonGraphics = self.attachAsset('dragon', {
+ anchorX: 0.5,
+ anchorY: 0.5
+ });
+ self.shootBubble = function () {
+ var bubble = new Bubble();
+ bubble.x = self.x;
+ bubble.y = self.y;
+ game.addChild(bubble);
+ bubbles.push(bubble);
+ };
});
// Class for Enemies
var Enemy = Container.expand(function () {
- var self = Container.call(this);
- var enemyGraphics = self.attachAsset('enemy', {
- anchorX: 0.5,
- anchorY: 0.5
- });
- self.update = function () {
- // Enemy movement logic
- };
+ var self = Container.call(this);
+ var enemyGraphics = self.attachAsset('enemy', {
+ anchorX: 0.5,
+ anchorY: 0.5
+ });
+ self.update = function () {
+ // Enemy movement logic
+ };
});
-/****
+/****
* Initialize Game
-****/
+****/
var game = new LK.Game({
- backgroundColor: 0x000000 //Init game with black background
+ backgroundColor: 0x000000 //Init game with black background
});
-/****
+/****
* Game Code
-****/
+****/
// Initialize arrays and variables
var dragon = game.addChild(new Dragon());
dragon.x = 1024; // Center horizontally
dragon.y = 2400; // Near the bottom of the screen
var bubbles = [];
var enemies = [];
// Create 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);
+ var enemy = new Enemy();
+ enemy.x = Math.random() * 2048;
+ enemy.y = Math.random() * 1000;
+ enemies.push(enemy);
+ game.addChild(enemy);
}
// Handle game updates
game.update = function () {
- // Update bubbles
- for (var i = bubbles.length - 1; i >= 0; i--) {
- var bubble = bubbles[i];
- bubble.update();
- if (bubble.y < -50) {
- bubble.destroy();
- bubbles.splice(i, 1);
- }
- }
- // Check for bubble-enemy collisions
- for (var i = enemies.length - 1; i >= 0; i--) {
- var enemy = enemies[i];
- for (var j = bubbles.length - 1; j >= 0; j--) {
- var bubble = bubbles[j];
- if (bubble.intersects(enemy)) {
- // Capture enemy
- enemy.destroy();
- enemies.splice(i, 1);
- bubble.destroy();
- bubbles.splice(j, 1);
- break;
- }
- }
- }
+ // Update bubbles
+ for (var i = bubbles.length - 1; i >= 0; i--) {
+ var bubble = bubbles[i];
+ bubble.update();
+ if (bubble.y < -50) {
+ bubble.destroy();
+ bubbles.splice(i, 1);
+ }
+ }
+ // Check for bubble-enemy collisions
+ for (var i = enemies.length - 1; i >= 0; i--) {
+ var enemy = enemies[i];
+ for (var j = bubbles.length - 1; j >= 0; j--) {
+ var bubble = bubbles[j];
+ if (bubble.intersects(enemy)) {
+ // Capture enemy
+ enemy.destroy();
+ enemies.splice(i, 1);
+ bubble.destroy();
+ bubbles.splice(j, 1);
+ break;
+ }
+ }
+ }
};
// Handle touch events for shooting bubbles
game.down = function (x, y, obj) {
- dragon.shootBubble();
-};
\ No newline at end of file
+ dragon.shootBubble();
+};
+// Add a floor to the bottom of the screen
+for (var i = 0; i < 21; i++) {
+ var floor = LK.getAsset('floor', {
+ anchorX: 0.5,
+ anchorY: 0.5,
+ x: i * 100,
+ y: 2732 - 50
+ });
+ game.addChild(floor);
+}
\ No newline at end of file
A pixel slime, funny, looking right. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
brick, brown color, pixel style. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Draw wings to the dragon
better wings, pixel style, more contrasted, more visible, blue color
A pixel based enemy from the world of Bubble Bobble. It should be ghost-like. Make it very 80s 90s like in pixel, arcade style.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A pixel based enemy from the world of Bubble Bobble. It should be blob like. Make it very 80s 90s like in pixel, arcade style.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background, with mountains, full height full width Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a similar image. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background, with mountains, full height full width Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows