Fixed Trample not communicating which companion is to be discarded.

This commit is contained in:
Christian 'ketura' McCarty
2025-03-22 21:10:17 -05:00
parent d598486f91
commit 7d36c436e0

View File

@@ -262,17 +262,23 @@
filter: mounted,culture(raider),man
}
effect: [
{
type: ChooseActiveCards
select: choose(companion,not(ringBearer))
memorize: discardedCompanion
text: Choose a companion to discard.
}
{
type: preventable
player: fp
text: Would you like to add (4) to prevent discarding a companion?
text: Would you like to add (4) to prevent discarding {discardedCompanion}?
cost: {
type: addTwilight
amount: 4
}
effect: {
type: discard
select: choose(companion,not(ringBearer))
select: memory(discardedCompanion)
}
}
]