Fix for Flowstone Giant suicide

As Bog Wraith pointed out the computer will kill Flowstone Giant by pumping it to death. To fix this add the this code to the beginning of the SSP_canPlay method in CardFactoryUtil.java. Like so.
- Code: Select all
public static boolean SSP_canPlay(Card card)
{
//hack so computer doesn't kill Flowstone Giant
if(Constant.Player.Computer.equals(card.getController()) && card.getName().equals("Flowstone Giant")){
if(card.getDefense() <= 2){
return false;
}
else{
return true;
}
}