this.getSpellAbility().getModes().setMaxModes(1);
// Put a 5/5 green Beast creature token onto the battlefield;
this.getSpellAbility().addEffect(new CreateTokenEffect(new OneDozenEyesBeastToken()));
// or put five 1/1 green Insect creature tokens onto the battlefield.
Mode mode = new Mode();
mode.getEffects().add(new CreateTokenEffect(new InsectToken(),5));
this.getSpellAbility().addMode(mode);
// Entwine {G}{G}{G}
this.addAbility(new EntwineAbility("{G}{G}{G}"));
}