Hi in my game i have done this, every time i shot an enemy he is destroyed and it add 1 to the player score.
Do you think it's logic if when the enemy hit you it also add 1 point to the score or it is better to only add 1 to the score when the player shoot an enemy?
Develop games in your browser. Powerful, performant & highly capable.
In my opinion, the normal game mechanic is:
- Shoot enemy: 1 point
- Hit enemy: 0 point lose 1 HP
We can change to:
- Hit enemy: 2 points lose 1 HP
It will depend on you when you want to challenge player more.
Cheers
Thanks :D