timerGAME.txt 1.5 KB

1234567891011121314151617181920212223242526
  1. ## Timer GAME
  2. ### Problems the time game solves
  3. 1. players dont like to wait in games, a timer helps force a "slow player" into making a decision "IMMEDIATELY!"
  4. 1. a timer can make a game more fun just by existing (adds "fun stress")
  5. 1. a timer can be used to help with points (like chess, more points when decision are made quicker)
  6. 1. a timer needs to be able to guarantee a game length (like hot potato) - but to prevent cheating the time cannot be changed
  7. 1. a timer needs to be able to guarantee a game length (like hot potato) - but can allow time to be changed - enabling cheating
  8. 1. a timer can be used as an "exclusion method", to "add fun", by using votes of other players to exlucde a singular player
  9. ### Features
  10. 1. Games can be Timed or Untimed
  11. - games that implement a game timer, need to be able to figure out how to make a decision at the end of a round without player input
  12. 1. Games can be democratic or dictorial (this is to protect a game from voting trolls)
  13. 1. things people can vote on: adding time to a a round or a game, skipping a player's turn in the round, kicking players, ending the game before time is up
  14. 1. both the game and rounds have to be able to end after a certain interval
  15. 1. all user actions have to be timed
  16. 1. Voting
  17. 1. players get to vote on the style of game they want to play
  18. 1. untimed or timed games will be options. if players are in a timed game, they have chosen to vote.
  19. 1. all players get to call votes whenever they want if in a voting game
  20. 1. majority rule - if more than 50% of players vote on something, it gets passed.