public class DecimatorWeb extends CardImpl {
public DecimatorWeb (UUID ownerId) {
super(ownerId, 105, "Decimator Web", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{4}");
this.expansionSetCode = "MBS";
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LoseLifeTargetEffect(2), new ManaCostsImpl("{4}"));
ability.addCost(new TapSourceCost());
ability.addEffect(new AddCountersTargetEffect(CounterType.POISON.createInstance()));
ability.addEffect(new PutLibraryIntoGraveTargetEffect(6));
ability.addTarget(new TargetOpponent());
this.addAbility(ability);