Adding a base

Defeating the enemies is not enough. We need a solid goal to fight for. We will create this in the form of a base at the end of the road. The enemies will try to reach the base, decreasing its health with each enemy that enters it. The player must try to stop the enemies before they reach the base.

Prepare for lift off

We will draw the base with some face-like features. Things that look human help the player to empathize more with them. The following are the steps to create a base:

  1. Create a new sprite by clicking on the paintbrush icon.
  2. Choose a dark gray color and draw a circle. To create a perfect circle, hold Shift while drawing.
  3. Fill the circle with a light gray color.
  4. Decorate the base with some circles and squares to resemble an open gate. See the following screenshot for an example.
  5. Like the enemies, this base will have a healthbar. Pick a bright yellow color and draw a line to the top-left of the base.
    Prepare for lift off

The base can be hit 20 times. So it will have 20 costumes, but don't copy them all at once. As the healthbar decreases, we will also draw some damage on the base as an extra visual indication to the player that all is not well and they should be trying harder. The following are the steps to do it:

  1. First make nine copies for a total of 10 costumes.
  2. Erase the healthbar to half in equal steps per costume.
  3. On the tenth costume, draw a few cracks on the base. Use the dark gray color you used for the outline. With the first half of the images done; for the costumes 11 to 15, we will add some more damage.
  4. Now copy this updated image five times.
  5. Decrease the healthbar to a quarter of its original length.
  6. Draw a few more cracks in the last image. The final quarter of costumes will show even more damage until the base is destroyed.
  7. Make five more copies of the last image.
  8. Decrease the healthbar to nothing.
  9. Draw even more cracks on the last two images.
  10. The last image is the dead/game-over state. To represent this visually, we will create a broken down base. Drawing the broken down base will take a bit more work than the previous steps, but it will look a lot better than just leaving the image as it is.
  11. Select only a few parts of the base and move them a bit away from the center.
  12. Select another part and move it in a different direction.
  13. Notice that you will move the lines but probably not the gray circle. That's because it's bigger than your selection, and that's okay.
  14. Click on the circle to select it and press Delete to get rid of it.
  15. Pick the same light gray color you drew the circle with.
  16. Click on the Pencil tool and increase the line thickness.
  17. Create some new irregular shapes on top of the repositioned cracks to represent broken shards of the base.
  18. Choose the Select tool and then click on one of the newly drawn shapes to select it.
  19. Click on the Back a layer button while holding Shift to send the shape all the way to the bottom. This will make sure the cracks appear on top of the base shards.
  20. Do this for all the shards that you've drawn. The following screenshots show the base in various stages of decay:
    Prepare for lift off

Engage thrusters

Go to the script tab to write the scripts that make the base move through all of its costumes and then break apart. You might think we will use a collision check like we did with the enemies, but this not the case. The enemies will keep moving some distance after they first hit the base, unlike the bullets, which are destroyed on contact. This continued contact would mean that the collision check is activated continuously, quickly going through all base costumes.

Instead of a collision check, we will use the broadcast method to make sure each hit is only counted once. In a later project, we will do more with broadcasts and explain how they work. The following are the steps to do it:

  1. Start a new script on the base with a when I receive … block.
  2. Create a new message and name it reached base.
  3. Attach a next costume block to step to the next costume when the message is received.
  4. Add an if … then ... block to check whether the base has reached its last costume.
  5. Grab a = operator and the costume# variable for the base.
  6. Put them together and write 20 in the open slot.
  7. Inside the if statement, place a stop <all> block to terminate all scripts, effectively ending the game.
  8. We still have to put the base in the right position. So start a new script with a when <green flag> clicked block.
  9. Add a go to x: … y: … block.
  10. Fill in the numbers to place the base at the right end of the road. I used the values 240 and -5 for the x and y coordinates respectively. But your coordinates might be a bit different.
  11. Use the Switch costume to <base1> block to make sure the game starts with the first (full health) image showing.
  12. Then add a go to front block to make sure the base is the topmost sprite. This way, enemies will disappear underneath the base making it look like they are entering. Have a look at the scripts for the base sprite shown as follows:
    Engage thrusters

Almost done, but there is one more thing to do. The base is waiting for the message "reached base", but no one is sending it. Let's fix that by following the steps given:

  1. Click on the red enemy to see its script.
  2. At the end of the clone movement, after the last glide block, add broadcast <reached base>. Now the base will receive this message when an enemy has finished its move.
  3. Do the same for the blue and yellow enemies.

Objective complete – mini debriefing

As always, we added a feature so we save our work and test to see whether it all works properly.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.220.187.223