this.color.setBlue(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Sneaky Homunculus can't block or be blocked by creatures with power 2 or greater.
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield));
ability.addEffect(new CantBlockCreaturesSourceEffect(filter));
this.addAbility(ability);
}