Added custom text to make the two options on V1 Library of Rivendell easier to distinguish.

This commit is contained in:
Christian 'ketura' McCarty
2025-03-20 19:29:30 -05:00
parent 5ec3d78c3f
commit 713c8f4bc0
2 changed files with 5 additions and 4 deletions

View File

@@ -335,7 +335,7 @@
{ {
type: activated type: activated
phase: fellowship phase: fellowship
text: Stack your tale or artifact from play
cost: { cost: {
type: StackCardsFromPlay type: StackCardsFromPlay
select: choose(your,or(tale,artifact),not(self)) select: choose(your,or(tale,artifact),not(self))
@@ -349,6 +349,7 @@
{ {
type: activated type: activated
phase: fellowship phase: fellowship
text: Stack your tale or artifact from hand
cost: { cost: {
type: stackcardsfromhand type: stackcardsfromhand
select: choose(your,or(tale,artifact),not(self)) select: choose(your,or(tale,artifact),not(self))
@@ -408,7 +409,7 @@
select: choose(companion) select: choose(companion)
count: 0-1 count: 0-1
} }
} }
{ {
type: discard type: discard
select: self select: self

View File

@@ -129,7 +129,7 @@ public class Card_V1_011_Tests
scn.FreepsPlayCard(gondorart); scn.FreepsPlayCard(gondorart);
scn.FreepsPlayCard(shireart); scn.FreepsPlayCard(shireart);
assertTrue(scn.FreepsActionAvailable(library)); assertTrue(scn.FreepsActionAvailable("Stack your tale or artifact from play"));
assertEquals(0, scn.GetFreepsHandCount()); assertEquals(0, scn.GetFreepsHandCount());
scn.FreepsUseCardAction(library); scn.FreepsUseCardAction(library);
@@ -195,7 +195,7 @@ public class Card_V1_011_Tests
scn.StartGame(); scn.StartGame();
assertTrue(scn.FreepsActionAvailable(library)); assertTrue(scn.FreepsActionAvailable("Stack your tale or artifact from hand"));
assertEquals(9, scn.GetFreepsHandCount()); assertEquals(9, scn.GetFreepsHandCount());
scn.FreepsUseCardAction(library); scn.FreepsUseCardAction(library);