tauk

Example of game score calculation and level progression - Snake Run Over Gameconditions

Oct 28th, 2020 (edited)
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. Game2 - Snake Run-over game
  2. You are asked to design a run-over snake game in which the player is driving a vehicle in an area infested with poisonous snakes. The player has to run-over as many snakes as possible while avoiding trees and plants. Given the above scenario:
  3. 1) Identify any two attributes that can be used for game score calculation. Give two examples, on how the game score calculation will be done.
  4. Answer:
  5. 5 points for killing red snake 10 points for killing black snake
  6. hits a tree -5 points, runs over plant -10 points
  7. add a bonus – if player completes level before time or he skill three snakes in a row in less than 15 seconds or wiihtout hitting a tree
  8. 2) Level Design: Three different conditions based on which the player will be moved from one level to another level.
  9. Answer:
  10. Level progression:
  11. Level 1 to level 2: kill 10 snakes in 60 seconds or less and hits less than 4 tree and run over less than 3 plants
  12. Level 2 to level 3: kill 15 snakes in 50 seconds or less and hits less than 3 tree and run over less than 2 plants
  13. Level 3 winning conditions: kill 20 snakes in 45 seconds or less and hits less than 1 tree and no plants should be run over
  14. Documents what happens if level progressions conditions are not met and what is shown to the player
  15.  
Advertisement
Add Comment
Please, Sign In to add comment