當前位置: 首頁>>代碼示例>>Python>>正文


Python Boss.Boss類代碼示例

本文整理匯總了Python中pirates.npc.Boss.Boss的典型用法代碼示例。如果您正苦於以下問題:Python Boss類的具體用法?Python Boss怎麽用?Python Boss使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Boss類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

 def __init__(self, cr):
     DistributedBattleNPC.DistributedBattleNPC.__init__(self, cr)
     Boss.__init__(self, cr)
     JollyRoger.JollyRoger.__init__(self)
     self.canPlaySfx = False
     self.recentlyPlayedDamage = False
     self.recentlyPlayedAttack = False
開發者ID:TTGhost,項目名稱:POTCOR-src,代碼行數:7,代碼來源:DistributedJollyRoger.py

示例2: __init__

 def __init__(self, cr):
     DistributedGhost.__init__(self, cr)
     Boss.__init__(self, cr)
     self.enemyColor = 13
     self.attackGhostMode = 2
     self.peaceGhostMode = 2
     self.runawaySound = None
     self.killSound = None
     self.damageSound = None
     self.recentlyPlayedDamage = False
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:10,代碼來源:DistributedBossGhost.py

示例3: getShortName

 def getShortName(self):
     return Boss.getShortName(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:DistributedBossVoodooZombie.py

示例4: getBossHighlightColor

 def getBossHighlightColor(self):
     return Boss.getBossHighlightColor(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:DistributedBossVoodooZombie.py

示例5: getBossEffect

 def getBossEffect(self):
     return Boss.getBossEffect(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:DistributedBossVoodooZombie.py

示例6: getEnemyScale

 def getEnemyScale(self):
     return Boss.getEnemyScale(self)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:2,代碼來源:DistributedBossVoodooZombie.py

示例7: __init__

 def __init__(self, cr):
     DistributedVoodooZombie.__init__(self, cr)
     Boss.__init__(self, cr)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:DistributedBossVoodooZombie.py

示例8: __init__

 def __init__(self, cr):
     DistributedNPCTownfolk.__init__(self, cr)
     Boss.__init__(self, cr)
開發者ID:Puggyblue999,項目名稱:PiratesOfTheCarribeanOnline,代碼行數:3,代碼來源:DistributedBossTownfolk.py

示例9: __init__

 def __init__(self, cr):
     DistributedNPCSkeleton.__init__(self, cr)
     Boss.__init__(self, cr)
開發者ID:TTGhost,項目名稱:POTCOR-src,代碼行數:3,代碼來源:DistributedBossSkeleton.py

示例10: __init__

 def __init__(self, cr):
     DistributedNPCNavySailor.__init__(self, cr)
     Boss.__init__(self, cr)
開發者ID:TTGhost,項目名稱:POTCOR-src,代碼行數:3,代碼來源:DistributedBossNavySailor.py

示例11: __init__

 def __init__(self, cr):
     DistributedCreature.__init__(self, cr)
     Boss.__init__(self, cr)
開發者ID:TTGhost,項目名稱:POTCOR-src,代碼行數:3,代碼來源:DistributedBossCreature.py


注:本文中的pirates.npc.Boss.Boss類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。