public VesselOfEndlessRest(UUID ownerId) {
super(ownerId, 224, "Vessel of Endless Rest", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
this.expansionSetCode = "AVR";
// When Vessel of Endless Rest enters the battlefield, put target card from a graveyard on the bottom of its owner's library.
Ability ability = new EntersBattlefieldTriggeredAbility(new PutOnLibraryTargetEffect(false), false);
ability.addTarget(new TargetCardInGraveyard());
this.addAbility(ability);
// {tap}: Add one mana of any color to your mana pool.
this.addAbility(new AnyColorManaAbility());