Part 2 - ademeglio/FortuneTeller GitHub Wiki

Evaluate User Input for Fortune

Retirement Years

The user's number of retirement will be based on whether the user's age is odd or even.

  • ODD: 7 (lucky)
  • Even: 13 (Unlucky)

Vacation Home Location

The location of the user’s vacation home will be based on how many siblings the user has. If the user enters a number less than zero, give the user a bad location!

Discuss with Aaron. The returnInt method I'm using will not allow negatives.

  • 0: Ambergris Caye, Belize
  • 1: Paris, France
  • 2: Anaheim, CA
  • 3: Orlando, FL
  • ">3: Estes Park, CO"
  • <0: North Pole

Mode of Transportation

Determined by user's favorite color

  • red: Harley Davidson
  • orange: Donkey
  • yellow: FFR 818C
  • green: VW Bug
  • blue: Fighter Jet
  • indigo: Rocket Ship
  • violet: Unicorn

Bank Balance

Determined by user's birth month. If the user enters something other than 1-12 for birth month, the user's balance will be $0.00

  • 1 - 4: $1,555,000.86
  • 5 - 8: $2,500
  • 9 - 12:$3.86
  • anything else:$0.00