def ScorePanGalacticHologrid(card): if card == "Expanding Colony": return 2 if DeckInfo.GoodType(card) == NOVELTY: return 2 if DeckInfo.CardIsWorld(card): return 1 return 0
def ScoreGalacticSurveySETI(card): if DeckInfo.HasExplorePower(card): return 1 + DeckInfo.CardIsWorld(card) return DeckInfo.CardIsWorld(card)
def ScoreProspectingGuild(card): if DeckInfo.GoodType(card) == RARE: return 2 if 'Terraforming' in DeckInfo.Keywords(card): return 1 return DeckInfo.CardIsWorld(card)