Fix for Lavastone Giant

This commit is contained in:
PhallenCassidy
2025-03-19 23:22:05 -04:00
committed by GitHub
parent 08a901d9f3
commit 1c6bc19c91

View File

@@ -1068,38 +1068,29 @@
memorize: revealedCard
}
{
type: choice
texts: [
Make the Shadow archery total +2
Exert this minion
]
effects: [
{
type: If
check: {
type: memoryMatches
memory: revealedCard
filter: side(shadow)
}
true: {
type: modifyArcheryTotal
side: shadow
amount: 2
}
}
{
type: If
check: {
type: memoryMatches
memory: revealedCard
filter: side(free people)
}
true: {
type: exert
select: self
}
}
]
type: If
check: {
type: memoryMatches
memory: revealedCard
filter: side(shadow)
}
true: {
type: modifyArcheryTotal
side: shadow
amount: 2
}
}
{
type: If
check: {
type: memoryMatches
memory: revealedCard
filter: not(side(shadow))
}
true: {
type: exert
select: self
}
}
]
}