mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
fix Clone not copying card pic and set info.
This commit is contained in:
@@ -5349,6 +5349,8 @@ public class CardFactory_Creatures {
|
||||
|
||||
//mana tap ability
|
||||
final SpellAbility ability = new Ability_Activated(card, abCost, null) {
|
||||
private static final long serialVersionUID = 5443609178720006665L;
|
||||
|
||||
@Override
|
||||
public boolean canPlayAI() {
|
||||
Card[] hand = AllZone.Computer_Hand.getCards();
|
||||
@@ -13294,6 +13296,8 @@ public class CardFactory_Creatures {
|
||||
cloned[0] = cfact.getCard(copyTarget[0].getName(), card.getController());
|
||||
cloned[0].setCloneOrigin(card.getName());
|
||||
cloned[0].addLeavesPlayCommand(leaves);
|
||||
cloned[0].setCurSetCode(copyTarget[0].getCurSetCode());
|
||||
cloned[0].setImageFilename(copyTarget[0].getImageFilename());
|
||||
PlayerZone play = AllZone.getZone(Constant.Zone.Battlefield, card.getController());
|
||||
play.add(cloned[0]);
|
||||
}
|
||||
@@ -13321,6 +13325,7 @@ public class CardFactory_Creatures {
|
||||
copy.setBeforePayMana(runtime);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Quicksilver Gargantuan")) {
|
||||
final CardFactory cfact = cf;
|
||||
|
||||
Reference in New Issue
Block a user