this.color.setGreen(true);
// Put two 2/2 green Bear creature tokens onto the battlefield.
// Threshold - Put four 2/2 green Bear creature tokens onto the battlefield instead if seven or more cards are in your graveyard.
Effect effect = new ConditionalOneShotEffect(new CreateTokenEffect(new BearToken(), 4),
new CreateTokenEffect(new BearToken(), 2),
new CardsInControllerGraveCondition(7),
"Put two 2/2 green Bear creature tokens onto the battlefield.<br/><br/><i>Threshold</i> - Put four 2/2 green Bear creature tokens onto the battlefield instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addEffect(effect);
// Flashback {5}{G}{G}
this.addAbility(new FlashbackAbility(new ManaCostsImpl("{5}{G}{G}"), TimingRule.SORCERY));