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:
Christian 'ketura' McCarty
2021-12-01 01:51:52 -06:00
parent 0d35a354a9
commit abfd5c2f21
7 changed files with 20 additions and 10 deletions

View File

@@ -719,7 +719,8 @@
},
{
"type": "putCardsFromDeckIntoHand",
"filter": "all(memory(revealedCards),side(free people))"
"filter": "all(memory(revealedCards),side(free people))",
"shuffle": false
},
{
"type": "discardCardsFromDrawDeck",

View File

@@ -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",

View File

@@ -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",

View File

@@ -105,7 +105,8 @@
},
{
"type": "putCardsFromDeckIntoHand",
"filter": "all(memory(revealedCards),culture(sauron))"
"filter": "all(memory(revealedCards),culture(sauron))",
"shuffle": false
},
{
"type": "discardCardsFromDrawDeck",

View File

@@ -467,7 +467,8 @@
},
{
"type": "putCardsFromDeckIntoHand",
"filter": "all(memory(cardsOnTop),culture(shire))"
"filter": "all(memory(cardsOnTop),culture(shire))",
"shuffle": false
},
{
"type": "discardCardsFromDrawDeck",

View File

@@ -446,7 +446,8 @@
},
{
"type": "putCardsFromDeckIntoHand",
"filter": "all(memory(revealedCards),culture(wraith))"
"filter": "all(memory(revealedCards),culture(wraith))",
"shuffle": false
},
{
"type": "discardCardsFromDrawDeck",

View File

@@ -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
}
}
}