forked from External/mage
42 lines
1.2 KiB
Java
42 lines
1.2 KiB
Java
|
|
package mage.cards.o;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.effects.common.combat.CantBeBlockedByMoreThanOneSourceEffect;
|
|
import mage.abilities.keyword.RenownAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class OutlandColossus extends CardImpl {
|
|
|
|
public OutlandColossus(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}{G}");
|
|
this.subtype.add(SubType.GIANT);
|
|
this.power = new MageInt(6);
|
|
this.toughness = new MageInt(6);
|
|
|
|
// Renown 6
|
|
this.addAbility(new RenownAbility(6));
|
|
|
|
// Outland Colossus can't be blocked by more than one creature.
|
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect()));
|
|
}
|
|
|
|
private OutlandColossus(final OutlandColossus card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public OutlandColossus copy() {
|
|
return new OutlandColossus(this);
|
|
}
|
|
}
|