Altered all json cards that use putcardsFromDeckIntoHand that pull from the top or bottom of the deck so that they do not shuffle on use
This commit is contained in:
@@ -719,7 +719,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(revealedCards),side(free people))"
|
||||
"filter": "all(memory(revealedCards),side(free people))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -406,7 +406,8 @@
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"count": 2,
|
||||
"filter": "choose(memory(cardsOnTop))"
|
||||
"filter": "choose(memory(cardsOnTop))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
@@ -445,7 +446,8 @@
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"count": 1,
|
||||
"filter": "choose(memory(cardsOnTop))"
|
||||
"filter": "choose(memory(cardsOnTop))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -181,7 +181,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "memory(revealedCards)"
|
||||
"filter": "memory(revealedCards)",
|
||||
"shuffle": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -912,7 +913,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(revealedCards),culture(moria),orc)"
|
||||
"filter": "all(memory(revealedCards),culture(moria),orc)",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -105,7 +105,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(revealedCards),culture(sauron))"
|
||||
"filter": "all(memory(revealedCards),culture(sauron))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -467,7 +467,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(cardsOnTop),culture(shire))"
|
||||
"filter": "all(memory(cardsOnTop),culture(shire))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -446,7 +446,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(revealedCards),culture(wraith))"
|
||||
"filter": "all(memory(revealedCards),culture(wraith))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
|
||||
@@ -271,7 +271,8 @@
|
||||
},
|
||||
{
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "all(memory(revealedCards),side(free people))"
|
||||
"filter": "all(memory(revealedCards),side(free people))",
|
||||
"shuffle": false
|
||||
},
|
||||
{
|
||||
"type": "discardCardsFromDrawDeck",
|
||||
@@ -866,7 +867,8 @@
|
||||
"text": "Would you like to take the revealed card into your hand?",
|
||||
"effect": {
|
||||
"type": "putCardsFromDeckIntoHand",
|
||||
"filter": "memory(revealedCards)"
|
||||
"filter": "memory(revealedCards)",
|
||||
"shuffle": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user