[ICE] Implement Arcum's Weathervane#14643
Open
balazskristof wants to merge 1 commit intomagefree:masterfrom
Open
[ICE] Implement Arcum's Weathervane#14643balazskristof wants to merge 1 commit intomagefree:masterfrom
balazskristof wants to merge 1 commit intomagefree:masterfrom
Conversation
xenohedron
requested changes
Apr 2, 2026
| class ArcumsWeatherwaneNoLongerSnowEffect extends ContinuousEffectImpl { | ||
|
|
||
| ArcumsWeatherwaneNoLongerSnowEffect() { | ||
| super(Duration.WhileOnBattlefield, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit); |
Contributor
There was a problem hiding this comment.
Duration.Custom for both effects, as lasts indefinitely
| // {2}, {tap}: Target snow land is no longer snow. | ||
| Ability ability = new SimpleActivatedAbility(new ArcumsWeatherwaneNoLongerSnowEffect(), new GenericManaCost(2)); | ||
| ability.addCost(new TapSourceCost()); | ||
| ability.addTarget(new TargetPermanent()); |
Contributor
There was a problem hiding this comment.
you need to use the filters you defined
| cards.add(new SetCardInfo("Anarchy", 170, Rarity.UNCOMMON, mage.cards.a.Anarchy.class, RETRO_ART)); | ||
| cards.add(new SetCardInfo("Arctic Foxes", 2, Rarity.COMMON, mage.cards.a.ArcticFoxes.class, RETRO_ART)); | ||
| cards.add(new SetCardInfo("Arcum's Sleigh", 309, Rarity.UNCOMMON, mage.cards.a.ArcumsSleigh.class, RETRO_ART)); | ||
| cards.add(new SetCardInfo("Arcum's Weathervane", 285, Rarity.UNCOMMON, mage.cards.a.ArcumsWeathervane.class)); |
Contributor
There was a problem hiding this comment.
collector number 310, not 285
https://scryfall.com/card/ice/310/arcums-weathervane
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements Arcum's Weathervane for #5382