this.expansionSetCode = "BNG";
this.color.setGreen(true);
// Put two 3/3 green Centaur enchantment creature tokens onto the battlefield. If it's your turn, scry 2.
this.getSpellAbility().addEffect(new CreateTokenEffect(new CentaurEnchantmentCreatureToken(), 2));
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new ScryEffect(2), MyTurnCondition.getInstance(), "If it's your turn, scry 2"));
}