[FIN] Implement Delivery Moogle

This commit is contained in:
theelk801 2025-05-28 12:14:19 -04:00
parent f37feb152e
commit 500c003725
3 changed files with 56 additions and 2 deletions

View file

@ -34,8 +34,10 @@ public class SearchLibraryGraveyardPutInHandEffect extends OneShotEffect {
super(Outcome.Benefit);
this.filter = filter;
this.forceToSearchBoth = forceToSearchBoth;
staticText = (youMay ? "you may " : "") + "search your library and" + (forceToSearchBoth ? "" : "/or") + " graveyard for a card named " + filter.getMessage()
+ ", reveal it, and put it into your hand. " + (forceToSearchBoth ? "Then shuffle" : "If you search your library this way, shuffle");
staticText = (youMay ? "you may " : "") + "search your library and" + (forceToSearchBoth ? "" : "/or") +
" graveyard for " + (filter.getMessage().contains(" card") ? "" : "a card named ") +
filter.getMessage() + ", reveal it, and put it into your hand. " +
(forceToSearchBoth ? "Then shuffle" : "If you search your library this way, shuffle");
}
protected SearchLibraryGraveyardPutInHandEffect(final SearchLibraryGraveyardPutInHandEffect effect) {