本文整理匯總了Python中Project.Project.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python Project.__init__方法的具體用法?Python Project.__init__怎麽用?Python Project.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Project.Project
的用法示例。
在下文中一共展示了Project.__init__方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "The first time you play an Action card during each of your turns, play it again afterward."
self.name = "Citadel"
self.cost = 8
示例2: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "The first time you gain an Action card in each of your turns, you may set it aside. If you do, play it."
self.name = "Innovation"
self.cost = 6
示例3: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "At the start of your turn, trash a card from your hand."
self.name = "Cathedral"
self.cost = 3
示例4: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "When you gain a Treasure, +1 Coffers."
self.name = "Guildhall"
self.cost = 5
示例5: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "At the start of your turn, reveal the top card of your deck. If it's an Action, play it."
self.name = "Piazza"
self.cost = 5
示例6: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "At the end of your Buy phase, if you didn't buy any cards, +1 Coffers and +1 Villager."
self.name = "Exploration"
self.cost = 4
示例7: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.cardtype = 'project'
self.base = 'renaissance'
self.desc = "At the start of your turn, add a token here, or remove your tokens here for +1 Card each."
self.name = "Sinister Plot"
self.cost = 4
self._token = defaultdict(int)
示例8: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.desc = "ProjectA"
self.cost = 3
self.name = "ProjectA"
示例9: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self, fileName = ''):
Project.__init__(self, fileName)
示例10: __init__
# 需要導入模塊: from Project import Project [as 別名]
# 或者: from Project.Project import __init__ [as 別名]
def __init__(self):
Project.__init__(self)
self.desc = "ProjectB"
self.name = "ProjectB"