Created
July 23, 2008 23:40
-
-
Save dirceu/1945 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Dirceu Pereira Tiegs <[email protected]> | |
# | |
# Script usado para gerar nomes de tavernas | |
# | |
class Array | |
def pick | |
self.sort_by {rand}[0] | |
end | |
end | |
animals = %w[ornitorrinco pato ganso rato coelho fuinha bisao boi touro vaca galinha galo gato bezerro cabra cao cachorro goblin orc dragao cubo\ gelatinoso fada fauno elfo elfa polvo esquilo passaro passarinho pinto cavalo canguru urso coala macaco gorila chimpanze garca] | |
adjectives = %w[manco cego caolho zarolho perneta esfomeado leproso defumado irritante molhado sadio comilao barulhento santo] | |
10.times do |n| | |
puts "#{animals.pick.capitalize} #{adjectives.pick.capitalize}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment