public List <SkillCardModel> drawCards(Type type, int amount) { if (!skillCards[type].hasEnoughCard(amount)) { shuffleUsedBack(); } return(skillCards[type].draw(amount)); }
public int getSkillDeckSize(Type type) { return(skillCards[type].cardsLeft()); }