User prompt
Fix Bug: 'ReferenceError: Can't find variable: HeroBullet' in this line: 'var bullet = new HeroBullet();' Line Number: 19
User prompt
Power ups make you shoot in a spread
User prompt
Make enimies drop power ups that make you stronger for 1 minute e.g spread shot, laser, bomb
User prompt
Remove the boss system
User prompt
Give all enemies health bars that increase by one every 3 waves
User prompt
Create a separate asset for the boss
User prompt
Add a skip to wave 5 button above the debug menu
User prompt
Move the debug menu up higher
User prompt
Add a debug menu above the joystick
User prompt
Add a bossfight on wave five that shoots a spread of projectiles
User prompt
Fix Bug: 'ReferenceError: Can't find variable: waveTxt' in this line: 'waveTxt.setText('Wave: ' + currentWave);' Line Number: 250
User prompt
Add a wave display
User prompt
Show the wave in the top left
User prompt
Make a boss spawn every 5 waves instead of at 50 score
User prompt
Add a wave system
User prompt
Fix Bug: 'TypeError: undefined is not an object (evaluating 'self.lives = 3')' in this line: 'self.lives = 3;' Line Number: 65
User prompt
Fix Bug: 'TypeError: undefined is not an object (evaluating 'self.lives = 3')' in this line: 'self.lives = 3;' Line Number: 65
User prompt
Make a boss that fires in a spread and has 3 lives, but only comes out every time you get 50 points
User prompt
Give the player 5 lives
User prompt
Make the enemies get stronger for every 50 points you get
User prompt
Change the games background to look like mars
User prompt
Make the background look like Earth
User prompt
Add a shoot button on the right of the screen
User prompt
Joystick for movement
Initial prompt
Hyper Shootout
===================================================================
--- original.js
+++ change.js
@@ -1,7 +1,16 @@
/****
* Classes
****/
+// HeroBullet class
+var HeroBullet = Container.expand(function () {
+ var self = Container.call(this);
+ var bulletGraphics = self.createAsset('heroBullet', 'Hero bullet', 0.5, 1);
+ self.speed = 10;
+ self.move = function () {
+ self.y -= self.speed;
+ };
+});
// Hero class
var Hero = Container.expand(function () {
var self = Container.call(this);
var heroGraphics = self.createAsset('hero', 'Hero character', 0.5, 0.5);
A laser. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A laser bullet. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A plus sign. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A mechanical wasp. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A turret. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.