本文整理汇总了Python中Character.Character.setDefense方法的典型用法代码示例。如果您正苦于以下问题:Python Character.setDefense方法的具体用法?Python Character.setDefense怎么用?Python Character.setDefense使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Character.Character
的用法示例。
在下文中一共展示了Character.setDefense方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getTrial
# 需要导入模块: from Character import Character [as 别名]
# 或者: from Character.Character import setDefense [as 别名]
def getTrial(self):
return self.trial
charType = SelectCharacter()
name = SetName()
player = Character(name.getName(), charType.getType(), charType.getHP(), charType.getATK())
dragon = Dragon()
home = Home("")
while dragon.getHP() != 0 and player.getHP() != 0 and home.getTrial() != 99:
if home.getTrial() == 1:
string = ""
diamond = DiamondDefense()
if diamond.getDiamondStatus() == 0:
string = "Oh no! You didn't find the Defense Diamond.\nYou can continue to your next trial, but you might want to try again.\nYou may need it later!"
elif diamond.getDiamondStatus() == 1:
player.setDefense()
string = "Congratulations! You found the Defense Diamond!\nYou may choose your next trial.\nIf you have completed all the trials, you are ready to face the dragon!"
home = Home(string)
elif home.getTrial() == 2:
string = ""
riddle = Riddle()
if riddle.getHammer() == 0:
string = "Oh no! You did not attain War Hammer.\nYou can continue to your next trial, but you might want to try again.\nYou may need it later!"
elif riddle.getHammer() == 1:
player.setHammer()
string = "Congratulations! You have attained War Hammer!\nYou may choose your next trial.\nIf you have completed all the trials, you are ready to face the dragon!"
home = Home(string)
elif home.getTrial() == 3:
string = ""
card = CardChallenge()
if card.getLuckStatus() == 0: