Update Card15_113.java

Currently, Orcish Camp is revealing the top card of draw deck instead of the bottom card.

I changed the Effect to reveal the bottom cards, but am not 100% sure if this is currently an executable effect.

If not, please just let me know and I can try to code it the same way Underdeeps of Moria (set1/ moria/ Card1_200.java) currently works (uses "unresponableeffect")

Best,

dmaz
This commit is contained in:
dmasalin
2015-06-12 15:39:58 -03:00
parent aab299c87f
commit 499e7fd8dd

View File

@@ -50,7 +50,7 @@ public class Card15_113 extends AbstractPermanent {
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.ORC, Race.ORC));
action.appendEffect(
new RevealTopCardsOfDrawDeckEffect(self, playerId, 1) {
new RevealBottomCardsOfDrawDeckEffect(self, playerId, 1) {
@Override
protected void cardsRevealed(List<PhysicalCard> revealedCards) {
for (PhysicalCard card : revealedCards) {