Book Image

Scratch 2.0 Game Development Hotshot

Book Image

Scratch 2.0 Game Development Hotshot

Overview of this book

Table of Contents (18 chapters)
Scratch 2.0 Game Development HOTSHOT
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a sword


Now, let's create an additional weapon to make it easier to get rid of the enemies lurking in the maze.

Prepare for lift off

We will create a sword sprite which we can draw ourselves.

  1. So, we start by clicking on the Paint new sprite icon.

  2. In the editor, we start by choosing a brown color and the Rectangle tool.

  3. We draw two rectangular boxes forming a T-shape. This will be the handle for the sword.

  4. Next, we switch to a gray color.

  5. We select the Ellipse tool and drag out a long, narrow, oval shape to form the blade. It doesn't look very sharp up close, but at the downscaled size, it will.

  6. If you like, you can decorate the sword some more with a pommel, gems or engravings.

  7. We name the sprite sword for use in the scripts.

Engage thrusters

The player won't have access to the sword right from the start. It will lie somewhere in the maze. So to use it, the player has to make an effort to go and get it.

  1. As the first step, we can again copy a createMaze listener script from another sprite.

  2. We...