use super::*;
pub(crate) const EARTH_ELEMENTAL: Card = Card {
name: Name::EarthElemental,
suit: Suit::Land,
strength: 4,
adder: None,
wild: None,
modifier: None,
immunity: None,
blanks: None,
bonus: Some(earth_elemental_bonus),
penalty: None,
};
pub(crate) fn earth_elemental_bonus(hand: &ScoringHand) -> i16 {
15 * (hand.number_of_suit(Suit::Land) - 1)
}