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 memorize: revealedCard
} }
{ {
type: choice type: If
texts: [ check: {
Make the Shadow archery total +2 type: memoryMatches
Exert this minion memory: revealedCard
] filter: side(shadow)
effects: [ }
{ true: {
type: If type: modifyArcheryTotal
check: { side: shadow
type: memoryMatches amount: 2
memory: revealedCard }
filter: side(shadow) }
} {
true: { type: If
type: modifyArcheryTotal check: {
side: shadow type: memoryMatches
amount: 2 memory: revealedCard
} filter: not(side(shadow))
} }
{ true: {
type: If type: exert
check: { select: self
type: memoryMatches }
memory: revealedCard
filter: side(free people)
}
true: {
type: exert
select: self
}
}
]
} }
] ]
} }