"""Plays a text based game of Poker Dice.

Author: YOUR NAME
Version: THE DATE
"""

# Constants that specify scoring types
PAIR = 1
TWO_PAIR = 2
THREE_OF_KIND = 3
FOUR_OF_KIND = 4
FIVE_OF_KIND = 5
FULL_HOUSE = 6
SMALL_STRAIGHT = 7
LARGE_STRAIGHT = 8
CHANCE = 9


def calculate_score(dice_list, score_type):
    """Calculate the Poker Dice score based on the dice_list and score_type.

    Args:
        dice_list (list): 5 values representing the outcome of the rolls.
        score_type (int): The type (category) to score.

    Returns:
        (int): The score amount.
    """
