Merge pull request #470 from argonui/norman-topcard
limit flipping of topcard to norman only
This commit is contained in:
commit
081981e51b
@ -457,14 +457,20 @@ function drawCardsWithReshuffle(numCards)
|
|||||||
|
|
||||||
if deckSize >= numCards then
|
if deckSize >= numCards then
|
||||||
drawCards(numCards)
|
drawCards(numCards)
|
||||||
if topCardDetected then flipTopCardFromDeck() end
|
-- flip top card again for Norman
|
||||||
|
if topCardDetected and string.match(activeInvestigatorId, "%d%d%d%d%d") == "08004" then
|
||||||
|
flipTopCardFromDeck()
|
||||||
|
end
|
||||||
else
|
else
|
||||||
drawCards(deckSize)
|
drawCards(deckSize)
|
||||||
if deckAreaObjects.discard ~= nil then
|
if deckAreaObjects.discard ~= nil then
|
||||||
shuffleDiscardIntoDeck()
|
shuffleDiscardIntoDeck()
|
||||||
Wait.time(function()
|
Wait.time(function()
|
||||||
drawCards(numCards - deckSize)
|
drawCards(numCards - deckSize)
|
||||||
if topCardDetected then flipTopCardFromDeck() end
|
-- flip top card again for Norman
|
||||||
|
if topCardDetected and string.match(activeInvestigatorId, "%d%d%d%d%d") == "08004" then
|
||||||
|
flipTopCardFromDeck()
|
||||||
|
end
|
||||||
end, 1)
|
end, 1)
|
||||||
end
|
end
|
||||||
printToColor("Take 1 horror (drawing card from empty deck)", messageColor)
|
printToColor("Take 1 horror (drawing card from empty deck)", messageColor)
|
||||||
|
Loading…
Reference in New Issue
Block a user