subtypes for cards 'A'

This commit is contained in:
igoudt 2017-07-18 08:55:40 +02:00
parent be062e8b28
commit 105f346ebc
628 changed files with 1541 additions and 1256 deletions

View file

@ -38,10 +38,10 @@ import mage.game.permanent.Permanent;
* @author nantuko
*/
public class AddCardSubtypeAttachedEffect extends ContinuousEffectImpl {
private String addedSubtype;
private SubType addedSubtype;
private AttachmentType attachmentType;
public AddCardSubtypeAttachedEffect(String addedSubtype, Duration duration, AttachmentType attachmentType) {
public AddCardSubtypeAttachedEffect(SubType addedSubtype, Duration duration, AttachmentType attachmentType) {
super(duration, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
this.addedSubtype = addedSubtype;
this.attachmentType = attachmentType;