public Vesuva(UUID ownerId) {
super(ownerId, 281, "Vesuva", Rarity.RARE, new CardType[]{CardType.LAND}, "");
this.expansionSetCode = "TSP";
// You may have Vesuva enter the battlefield tapped as a copy of any land on the battlefield.
EntersBattlefieldEffect effect = new EntersBattlefieldEffect(
new TapSourceEffect(true),
"You may have {this} enter the battlefield tapped as a copy of any land on the battlefield",
true);
effect.addEffect(new CopyPermanentEffect(filter));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}