[BLC] Implement Rolling Hamsphere

This commit is contained in:
theelk801 2024-08-06 12:53:51 -04:00
parent 1cf91b0b2d
commit 8d6c5f6795
3 changed files with 89 additions and 0 deletions

View file

@ -0,0 +1,60 @@
package mage.cards.r;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.AttacksTriggeredAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.DamageTargetEffect;
import mage.abilities.effects.common.continuous.BoostSourceEffect;
import mage.abilities.keyword.CrewAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SubType;
import mage.filter.common.FilterControlledPermanent;
import mage.game.permanent.token.HamsterToken;
import mage.target.common.TargetAnyTarget;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class RollingHamsphere extends CardImpl {
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(new FilterControlledPermanent(SubType.HAMSTER));
public RollingHamsphere(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{7}");
this.subtype.add(SubType.VEHICLE);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Rolling Hamsphere gets +1/+1 for each Hamster you control.
this.addAbility(new SimpleStaticAbility(new BoostSourceEffect(xValue, xValue, Duration.WhileOnBattlefield)));
// Whenever Rolling Hamsphere attacks, create three 1/1 red Hamster creature tokens, then it deals X damage to any target, where X is the number of Hamsters you control.
Ability ability = new AttacksTriggeredAbility(new CreateTokenEffect(new HamsterToken(), 3));
ability.addEffect(new DamageTargetEffect(xValue)
.setText(", then it deals X damage to any target, where X is the number of Hamsters you control"));
ability.addTarget(new TargetAnyTarget());
this.addAbility(ability);
// Crew 3
this.addAbility(new CrewAbility(3));
}
private RollingHamsphere(final RollingHamsphere card) {
super(card);
}
@Override
public RollingHamsphere copy() {
return new RollingHamsphere(this);
}
}

View file

@ -218,6 +218,7 @@ public final class BloomburrowCommander extends ExpansionSet {
cards.add(new SetCardInfo("Riot Control", 151, Rarity.COMMON, mage.cards.r.RiotControl.class));
cards.add(new SetCardInfo("Rishkar, Peema Renegade", 235, Rarity.RARE, mage.cards.r.RishkarPeemaRenegade.class));
cards.add(new SetCardInfo("Rites of Flourishing", 122, Rarity.RARE, mage.cards.r.RitesOfFlourishing.class));
cards.add(new SetCardInfo("Rolling Hamsphere", 39, Rarity.RARE, mage.cards.r.RollingHamsphere.class));
cards.add(new SetCardInfo("Rootbound Crag", 326, Rarity.RARE, mage.cards.r.RootboundCrag.class));
cards.add(new SetCardInfo("Rootcast Apprenticeship", 32, Rarity.RARE, mage.cards.r.RootcastApprenticeship.class));
cards.add(new SetCardInfo("Rose Room Treasurer", 201, Rarity.RARE, mage.cards.r.RoseRoomTreasurer.class));

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class HamsterToken extends TokenImpl {
public HamsterToken() {
super("Hamster Token", "1/1 red Hamster creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.HAMSTER);
color.setRed(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
private HamsterToken(final HamsterToken token) {
super(token);
}
public HamsterToken copy() {
return new HamsterToken(this);
}
}