this.color.setBlue(true);
this.power = new MageInt(1);
this.toughness = new MageInt(2);
// Prowess <em>(Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)</em>
this.addAbility(new ProwessAbility());
// Whenever Jeskai Elder deals combat damage to a player, you may draw a card. If you do, discard a card.
Effect effect = new DrawDiscardControllerEffect();
effect.setText("you may draw a card. If you do, discard a card");
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(effect, true));