Enemies that charge and shoot at you. I believe that the sample projects have some kind of sprite that support that.
Draw Counters in the overlay map to show how many bullets remain.
(Not to overwhelm you)
Now, there's 2 ways to go about having the bullet go towards the crosshair.
The easiest way, which I did when I was a newbie, was to make a bullet sprite, set it's speed to a large number, then use the rule that pushes a sprite towards a certain category (The crosshair category).
The second way is to use Pythagorean's Theorem to calculate a triangle's hypotenuse from the X and Y position points of both triangles. This way isn't feasible without code of some kind, but it's something I should tell you if you may need this information later.
I suggest you play around and learn to make a project with a moving box, or something simple, before moving on to this.
If you want a template of a game like this, feel free to ask. It won't be any trouble.
Edit After looking over bluemonkmn's post I think that he pretty much beat me to the bullet method.
