예제 #1
0
파일: main.py 프로젝트: ZenPenguinZ/z_dice
        turn = True
        while turn:
            print "brains = %s shots = %s" %(hand.brains,hand.shots)
            print "hand -> %s" %(hand)
            input = raw_input("(y) to roll, (n) to quit and bank your brains")
            if str(input.lower()) == "n":
                current_player.bank_brains(hand.brains)
                if current_player.has_won():
                    print "))))---- YOU WON! ----((((("
                    game_on == False
                    break
                else:
                    turn = False

            else:
                hand.fill_hand(cup) #fill hand from cup
                hand.roll_hand()    #roll hand
                print hand
                #input = raw_input("this is your roll")
                if not hand.score_hand():
                    print "Bang! your dead, turn over"
                    turn = False
                else:
                    if current_player.has_won():
                        print "))))---- YOU WON! ----((((("
                        game_on == False
                        #break
                    else:
                        print "you servived this time ", current_player.name
        print "end of turn loop"