Fixed V1 Boromir image link being broken. Fixed V1 Aragorn not actually restricting the starting fellowship.
This commit is contained in:
@@ -935,7 +935,7 @@ var PCCards = {
|
||||
// Gimli, Skilled Defender (5R7) [Errata]
|
||||
'55_7' : 'https://i.lotrtcgpc.net/errata/LOTR-EN05E007.1_card.jpg',
|
||||
// Boromir, Redeemed (V1 20) [Errata]
|
||||
'101_20' : 'https://i.lotrtcgpc.net/errata/LOTR-ENV1E020.1_card.jpg',
|
||||
'101_20' : 'https://i.lotrtcgpc.net/sets/vset1/LOTR-ENV1E020.1_card.jpg',
|
||||
|
||||
//V1 additions:
|
||||
// Sirannon Dam (V165)
|
||||
|
||||
@@ -724,6 +724,10 @@ var CardFilter = Class.extend({
|
||||
$("#setSelect").html($("#setSelect option").sort(function (a, b) {
|
||||
let av = a.value == "" ? 0 : parseInt(a.value, 10);
|
||||
let bv = b.value == "" ? 0 : parseInt(b.value, 10);
|
||||
if(a.value == "pc_errata")
|
||||
av = 1000;
|
||||
if(b.value == "pc_errata")
|
||||
bv = 1000;
|
||||
return av == bv ? 0 : av < bv ? -1 : 1
|
||||
}));
|
||||
|
||||
|
||||
@@ -160,6 +160,13 @@
|
||||
type: played
|
||||
filter: self
|
||||
}
|
||||
requires: {
|
||||
type: not
|
||||
requires: {
|
||||
type: phase
|
||||
phase: play starting fellowship
|
||||
}
|
||||
}
|
||||
effect: {
|
||||
type: PlayCardFromDrawDeck
|
||||
select: choose(elf,maxTwilight(2))
|
||||
|
||||
Reference in New Issue
Block a user