Dominion Strategy Forum

Please login or register.

Login with username, password and session length
Pages: [1]

Author Topic: ChampionPrizeFighter with Outpost?  (Read 2175 times)

0 Members and 1 Guest are viewing this topic.

samath

  • Tactician
  • *****
  • Offline Offline
  • Posts: 403
  • Shuffle iT Username: SamE
  • Respect: +678
    • View Profile
ChampionPrizeFighter with Outpost?
« on: August 02, 2012, 04:33:24 pm »
0

I got all the prizes on one turn, but I used an Outpost to do so. I feel like this deserves a Champion Prize Fighter, but it doesn't give it to me. :(

http://councilroom.com/game?game_id=game-20120801-225409-6972190b.html
Logged

greatexpectations

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1097
  • Respect: +1067
    • View Profile
Re: ChampionPrizeFighter with Outpost?
« Reply #1 on: August 02, 2012, 04:40:33 pm »
0

Champion Prize Fighter:

Acquire all 5 prizes in one turn.

Outpost:

You only draw 3 cards (instead of 5) in this turn's cleanup phase. Take an extra turn after this one.  This can't cause you to take more than two consecutive turns.
Logged
momomoto: ...I looked at the tableau and went "Mountebank? That's for jerks."
rrenaud: Jerks win.

Morgrim7

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1701
  • Torturer chains? How primitive.
  • Respect: +749
    • View Profile
Re: ChampionPrizeFighter with Outpost?
« Reply #2 on: August 02, 2012, 08:11:57 pm »
0

So Possession doesn't work either.
Logged
"Oh sweet merciful heavens.

I sit here, lost amongst the cloud, that which is the brain of the Morgrim Mod. Perhaps I will learn the inner workings of that storied mind. Perhaps I will simply go mad.

Mad, I tell you.

Maaaaaaaaaaaaad." -Voltgloss
Dominion Notation: http://forum.dominionstrategy.com/index.php?topic=7265.msg206246#msg206246

ftl

  • Mountebank
  • *****
  • Offline Offline
  • Posts: 2056
  • Shuffle iT Username: ftl
  • Respect: +1345
    • View Profile
Re: ChampionPrizeFighter with Outpost?
« Reply #3 on: August 02, 2012, 09:21:41 pm »
0

I wonder who, if anyone, would get the goal if someone got all prizes on a possessed turn.
Logged

jonts26

  • Margrave
  • *****
  • Offline Offline
  • Posts: 2746
  • Shuffle iT Username: jonts
  • Respect: +3671
    • View Profile
Re: ChampionPrizeFighter with Outpost?
« Reply #4 on: August 02, 2012, 09:40:38 pm »
0

I wonder who, if anyone, would get the goal if someone got all prizes on a possessed turn.

The hardest part about that would be the fact that you couldnt use the gained prizes to help you get more (Trusty Steed and Followers mostly).
Logged

DStu

  • Margrave
  • *****
  • Offline Offline
  • Posts: 2627
  • Respect: +1490
    • View Profile
Re: ChampionPrizeFighter with Outpost?
« Reply #5 on: August 03, 2012, 01:57:25 am »
0

I wonder who, if anyone, would get the goal if someone got all prizes on a possessed turn.

from goals.py

Code: [Select]
def prize_check(g):
    if 'Tournament' not in g.supply:
        return (False, False)

    for pdeck in g.get_player_decks():
        (player, deck) = (pdeck.player_name, pdeck.deck)
        n_prizes = 0
        for prize in card_info.TOURNAMENT_WINNINGS:
            if prize in deck:
                n_prizes += 1
        if n_prizes == len(card_info.TOURNAMENT_WINNINGS):
            return (player, one_turn(g, player, card_info.TOURNAMENT_WINNINGS))
    return (False, False)

So what counts is having them in the deck.
Logged
Pages: [1]
 

Page created in 0.106 seconds with 21 queries.