mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Fixed card image and set code for kiki jiki, stonecloaker and the ravnica bounce lands.
This commit is contained in:
@@ -735,6 +735,10 @@ public class CardFactory implements NewConstants {
|
|||||||
|
|
||||||
if(!c.isToken()) {
|
if(!c.isToken()) {
|
||||||
Card newCard = AllZone.CardFactory.getCard(c.getName(), c.getOwner());
|
Card newCard = AllZone.CardFactory.getCard(c.getName(), c.getOwner());
|
||||||
|
|
||||||
|
newCard.setCurSetCode(c.getCurSetCode());
|
||||||
|
newCard.setImageFilename(c.getImageFilename());
|
||||||
|
|
||||||
hand.add(newCard);
|
hand.add(newCard);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -357,7 +357,7 @@ public class CardFactory_Creatures {
|
|||||||
|
|
||||||
for (int i=0;i<multiplier;i++)
|
for (int i=0;i<multiplier;i++)
|
||||||
{
|
{
|
||||||
|
//TODO: Use central copy methods
|
||||||
Card copy;
|
Card copy;
|
||||||
if(!getTargetCard().isToken()) {
|
if(!getTargetCard().isToken()) {
|
||||||
//CardFactory cf = new CardFactory("cards.txt");
|
//CardFactory cf = new CardFactory("cards.txt");
|
||||||
@@ -406,7 +406,8 @@ public class CardFactory_Creatures {
|
|||||||
copy.addIntrinsicKeyword("Haste");
|
copy.addIntrinsicKeyword("Haste");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
copy.setCurSetCode(getTargetCard().getCurSetCode());
|
||||||
|
copy.setImageFilename(getTargetCard().getImageFilename());
|
||||||
|
|
||||||
PlayerZone play = AllZone.getZone(Constant.Zone.Battlefield, card.getController());
|
PlayerZone play = AllZone.getZone(Constant.Zone.Battlefield, card.getController());
|
||||||
play.add(copy);
|
play.add(copy);
|
||||||
@@ -10569,6 +10570,10 @@ public class CardFactory_Creatures {
|
|||||||
|
|
||||||
if(!c.isToken()) {
|
if(!c.isToken()) {
|
||||||
Card newCard = AllZone.CardFactory.getCard(c.getName(), c.getOwner());
|
Card newCard = AllZone.CardFactory.getCard(c.getName(), c.getOwner());
|
||||||
|
|
||||||
|
newCard.setCurSetCode(c.getCurSetCode());
|
||||||
|
newCard.setImageFilename(c.getImageFilename());
|
||||||
|
|
||||||
hand.add(newCard);
|
hand.add(newCard);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user