}
public static boolean isCreatureOnlyDamageCard(CardSim card, String key)
{
boolean ret = false;
HintBundle bundle = new HintBundle(TY_DAMAGE, SY_DAMAGE);
ret = hasHint(card.getCard(), key, bundle);
bundle = new HintBundle(TA_FROM_FIELD, S_FROM_FIELD);
ret = ret && hasHint(card.getCard(), key, bundle);
bundle = new HintBundle(TA_IS_OPPONENT, S_IS_OPPONENT);
ret = ret && (!hasHint(card.getCard(), key, bundle));
bundle = new HintBundle(TY_GENERAL_BUF, SY_GENERAL_BUF);
ret = ret && (!hasHint(card.getCard(), key, bundle));
return ret;
}