mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
CardFactoryUtil: Disguise Keyword
This commit is contained in:
@@ -310,6 +310,9 @@ public abstract class GameState {
|
||||
if (c.isManifested()) {
|
||||
newText.append(":Manifested");
|
||||
}
|
||||
if (c.isCloaked()) {
|
||||
newText.append(":Cloaked");
|
||||
}
|
||||
}
|
||||
if (c.getCurrentStateName().equals(CardStateName.Transformed)) {
|
||||
newText.append("|Transformed");
|
||||
@@ -1280,6 +1283,9 @@ public abstract class GameState {
|
||||
if (info.endsWith("Manifested")) {
|
||||
c.setManifested(true);
|
||||
}
|
||||
if (info.endsWith("Cloaked")) {
|
||||
c.setCloaked(true);
|
||||
}
|
||||
} else if (info.startsWith("Transformed")) {
|
||||
c.setState(CardStateName.Transformed, true);
|
||||
c.setBackSide(true);
|
||||
|
||||
@@ -389,6 +389,9 @@ public class GameCopier {
|
||||
if (c.isManifested()) {
|
||||
newCard.setManifested(true);
|
||||
}
|
||||
if (c.isCloaked()) {
|
||||
newCard.setCloaked(true);
|
||||
}
|
||||
}
|
||||
if (c.isMonstrous()) {
|
||||
newCard.setMonstrous(true);
|
||||
|
||||
Reference in New Issue
Block a user