Is there a way to shorten this code and reduce repetition?
puts "Which type of pokemon would you like to see the strengths for?"
type = gets.chomp
puts "Ah a #{type} type!"
if type.downcase == "normal"
puts "Normal pokemon are not strong against any other type in particular. Too bad :("
elsif type.downcase == "fighting"
puts "Fighting pokemon are strong against normal, rock, steel, ice, and dark types."
elsif type.downcase == "flying"
puts "Flying pokemon are strong against fighting, bug, and grass types."
elsif type.downcase == "poison"
puts "Poison pokemon are strong against grass and fairy types."
ect...