Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added hints about number of lands to some cards #12800

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Svyatoslav28597
Copy link
Contributor

Added hints to 42 cards which care about having certain amount of lands of the basic type
My implementation of Last Stand is somewhat cumbersome and bothers me, but I haven't found any better ways in the current hints implementation. Probably missing something
Also I didn't add hints to creatures with x/x of stats where x if the amount of (Basic land type), but I may still add them if they are needed

@github-actions github-actions bot added the cards label Sep 4, 2024
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Forest you control");

static {
filter.add(SubType.FOREST.getPredicate());
}

public BeaconOfCreation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{G}");
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}");


// Create a 1/1 green Insect creature token for each Forest you control.
this.getSpellAbility().addEffect(new CreateTokenEffect(new InsectToken(), new PermanentsOnBattlefieldCount(filter)));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If possible then must use shared xValue in both hint and effect:

shot_240904_155253

@JayDi85
Copy link
Member

JayDi85 commented Sep 4, 2024

I didn't add hints to creatures with x/x of stats where x if the amount of (Basic land type)

I prefer to show it as card hint, so users can see/calc possible P/T values before cast (e.g. in hand/stack).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants