forked from External/mage
Refactor: added copyFrom info for all objects (original card used for copy, copy of copy and etc);
This commit is contained in:
parent
28ac95cb10
commit
59bda7f1d5
25 changed files with 269 additions and 220 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue