Refactor: added copyFrom info for all objects (original card used for copy, copy of copy and etc);

This commit is contained in:
Oleg Agafonov 2018-11-29 19:29:39 +04:00
parent 28ac95cb10
commit 59bda7f1d5
25 changed files with 269 additions and 220 deletions

View file

@ -1,8 +1,6 @@
package mage.designations;
/**
*
* @author LevelX2
*/
public class CitysBlessing extends Designation {
@ -10,4 +8,13 @@ public class CitysBlessing extends Designation {
public CitysBlessing() {
super(DesignationType.CITYS_BLESSING, "RIX");
}
private CitysBlessing(final CitysBlessing card) {
super(card);
}
@Override
public CitysBlessing copy() {
return new CitysBlessing(this);
}
}