bin/99_game in 99_game-2.0.0 vs bin/99_game in 99_game-2.0.1

- old
+ new

@@ -4,12 +4,12 @@ BEGIN { # Looks at its arguements ARGV[0] = "-h" if ARGV[0] == "--help" ARGV[0] = "-v" if ARGV[0] == "--version" case ARGV[0] when "-v" - puts "2.0.0" - exit + puts "2.0.1" + exit when "-h" puts "\u00B7 Commands" puts "\t\u00b7 -v/--version - display version" puts "\t\u00B7 -h/--help - shows this message\n" puts "\u00B7 Abbrevations" @@ -29,13 +29,13 @@ puts "\t\t\u00B7 Jokers set the value to 0" exit end } END { # Thanks for playing - sleep(2) + sleep(1.5) puts "\n\tThanks for playing 99!" - sleep(3) + sleep(2.5) } $value, value1, value2, value3, dealer, user = 0,0,0,0, Hand.new(deck), Hand.new(deck) loop do puts puts "\tIt is the dealer's turn!" @@ -56,36 +56,36 @@ dealer.play(dealer.hand[1]) else $card = dealer.hand[2].num dealer.play(dealer.hand[2]) end - pause(2) + pause(1.5) puts "\tThe dealer played a(n) #{$card}" pause(0.5) puts "\tThe value is now #{$value}" puts - pause(2) + pause(1.5) if $value > 99 # Runs when you win and exits loop puts "\tYou win!" break end puts "\tIt's your turn!" - pause(1.5) + pause(1) user.view pause(0.5) print "\tPick a card to play by typing in the name of the card => " input, turn = gets.chomp, true for card in user.hand if card.num == converter(input) && turn user.play(card) turn = false end end - pause(1.5) + pause(1) puts "\tYou drew a(n) #{user.hand[2].num}" pause(0.5) puts "\tThe value is now #{$value}" - pause(2) + pause(1.5) if $value > 99 # Runs when dealer wins and exits loop puts "\tYou lose" break end end