import java.awt.Color;

/*
 * COLORS:
 * GREEN
 * RED
 * YELLOW
 * WHITE
 * BLUE
 * (COLORED)
 */
public class Card {
	private int color;
	private int value;
	
	public Card(int color, int value){
		this.color = color;
		this.value = value;
	}
	
	public Color getColor(){
		Color c = null;
		switch(color){
		case 0:
			c = Color.green;
			break;
		case 1:
			c = Color.red;
			break;
		case 2:
			c = Color.yellow;
			break;
		case 3:
			c = Color.white;
			break;
		case 4:
			c = Color.blue;
			break;
		}
		return c;
	}
	
	public int getColorInt(){
		return color;
	}
	
	public int getValue(){
		return value;
	}
}
