当前位置: 首页>>代码示例>>Python>>正文


Python GardenGlobals.getRecipeKeyUsingSpecial方法代码示例

本文整理汇总了Python中toontown.estate.GardenGlobals.getRecipeKeyUsingSpecial方法的典型用法代码示例。如果您正苦于以下问题:Python GardenGlobals.getRecipeKeyUsingSpecial方法的具体用法?Python GardenGlobals.getRecipeKeyUsingSpecial怎么用?Python GardenGlobals.getRecipeKeyUsingSpecial使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在toontown.estate.GardenGlobals的用法示例。


在下文中一共展示了GardenGlobals.getRecipeKeyUsingSpecial方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: getRequestPurchaseErrorText

# 需要导入模块: from toontown.estate import GardenGlobals [as 别名]
# 或者: from toontown.estate.GardenGlobals import getRecipeKeyUsingSpecial [as 别名]
 def getRequestPurchaseErrorText(self, retcode):
     retval = CatalogItem.CatalogItem.getRequestPurchaseErrorText(self, retcode)
     origText = retval
     if retval == TTLocalizer.CatalogPurchaseItemAvailable or retval == TTLocalizer.CatalogPurchaseItemOnOrder:
         recipeKey = GardenGlobals.getRecipeKeyUsingSpecial(self.gardenIndex)
         if not recipeKey == -1:
             retval += GardenGlobals.getPlantItWithString(self.gardenIndex)
             if self.gardenIndex == GardenGlobals.GardenAcceleratorSpecial:
                 if GardenGlobals.ACCELERATOR_USED_FROM_SHTIKER_BOOK:
                     retval = origText
                     retval += TTLocalizer.UseFromSpecialsTab
                 retval += TTLocalizer.MakeSureWatered
     return retval
开发者ID:frogtongue,项目名称:tonguefrog,代码行数:15,代码来源:CatalogGardenItem.py

示例2: isSkillTooLow

# 需要导入模块: from toontown.estate import GardenGlobals [as 别名]
# 或者: from toontown.estate.GardenGlobals import getRecipeKeyUsingSpecial [as 别名]
 def isSkillTooLow(self, avatar):
     recipeKey = GardenGlobals.getRecipeKeyUsingSpecial(self.gardenIndex)
     recipe = GardenGlobals.Recipes[recipeKey]
     numBeansRequired = len(recipe['beans'])
     canPlant = avatar.getBoxCapability()
     result = False
     if canPlant < numBeansRequired:
         result = True
     if not result and GardenGlobals.Specials.has_key(self.gardenIndex) and GardenGlobals.Specials[self.gardenIndex].has_key('minSkill'):
         minSkill = GardenGlobals.Specials[self.gardenIndex]['minSkill']
         if avatar.shovelSkill < minSkill:
             result = True
         else:
             result = False
     return result
开发者ID:frogtongue,项目名称:tonguefrog,代码行数:17,代码来源:CatalogGardenItem.py


注:本文中的toontown.estate.GardenGlobals.getRecipeKeyUsingSpecial方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。