[SPM] implement Scarlet Spider, Ben Reilly

This commit is contained in:
jmlundeen 2025-09-04 12:01:43 -05:00
parent 8b6b90c8d8
commit ed134cbfc6
4 changed files with 169 additions and 1 deletions

View file

@ -10,7 +10,8 @@ import mage.util.CardUtil;
* @author TheElk801
*/
public enum WebSlingingCondition implements Condition {
THEY("they were");
THEY("they were"),
THIS("{this}");
private final String message;
WebSlingingCondition(String message) {