[40K] Implement The Lost and the Damned (#9648)

* [40K] Implement The Lost and the Damned

Heavily inspired by Faldorn, but this triggers on "anywhere but hand" instead of "exile".

* Add The Lost and the Damned to the 40k set.

* Make Spawn tokens red, rather than colorless.

* Add slightly-jank handling for lands and spells which you do not own, which cannot have been played from your hand and thus should trigger The Lost and the Damned.

* Clean up land ownership check with proper method rather than just comparison.
This commit is contained in:
Grath 2022-10-14 21:39:42 -04:00 committed by GitHub
parent b8ba92589b
commit 7cd97ffd02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 84 additions and 0 deletions

View file

@ -12,6 +12,7 @@ public final class SpawnToken extends TokenImpl {
public SpawnToken() {
super("Spawn Token", "3/3 red Spawn creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
this.subtype.add(SubType.SPAWN);
power = new MageInt(3);
toughness = new MageInt(3);