[SPM] Implement Scorpion, Seething Striker

This commit is contained in:
theelk801 2025-07-24 09:54:55 -04:00
parent b475b379f2
commit 288901be1d
3 changed files with 78 additions and 5 deletions

View file

@ -85,13 +85,9 @@ public class ConniveSourceEffect extends OneShotEffect {
* @return
*/
public static boolean connive(Permanent permanent, int amount, Ability source, Game game) {
if (amount < 1) {
if (permanent == null || amount < 1) {
return false;
}
if (permanent == null) {
return false;
}
boolean permanentStillOnBattlefield = game.getState().getZone(permanent.getId()) == Zone.BATTLEFIELD;
Player player = game.getPlayer(permanent.getControllerId());
if (player == null) {