Implementing Modern Ruling #1; sanctuary is no longer considered a terrain keyword.

This commit is contained in:
Christian 'ketura' McCarty
2025-05-08 20:06:45 -05:00
parent 9bd0055563
commit 4c2c21b87a
3 changed files with 7 additions and 2 deletions

View File

@@ -455,6 +455,7 @@
}
filter: site,zone(adventure path)
from: siteYouControl
terrain: true
}
}
]

View File

@@ -616,7 +616,7 @@
modifier: {
type: AddKeyword
keyword: marsh
filter: or(river,and(site,not(or(Battleground,Dwelling,Forest,Mountain,Plains,Sanctuary,River,Underground))))
filter: or(river,and(site,not(or(Battleground,Dwelling,Forest,Mountain,Plains,River,Underground))))
}
}
{

View File

@@ -20,7 +20,11 @@ public enum Keyword implements Filterable {
FIERCE("Fierce", true, false, false, true),
LURKER("Lurker", true, false, false, true),
MUSTER("Muster", true, false, false, true),
SANCTUARY("Sanctuary", true, false, true, true),
/**
* As per Modern Ruling #1, Sanctuary is not considered a terrain keyword.
* https://wiki.lotrtcgpc.net/wiki/Modern_Ruling_1
*/
SANCTUARY("Sanctuary", true, false, false, true),
RING_BEARER("Ring-Bearer", true, false, true, true),
UNHASTY("Unhasty", true, false, false, true),