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


Python Entity.health方法代码示例

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


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

示例1: test_take_healing_maximum_health

# 需要导入模块: from Entity import Entity [as 别名]
# 或者: from Entity.Entity import health [as 别名]
 def test_take_healing_maximum_health(self):
     my_entity = Entity("Furious", 100)
     my_entity.health = 70
     heal_result = my_entity.take_healing(40)
     self.assertEqual(100, my_entity.get_health())
     self.assertTrue(heal_result)
开发者ID:AntonioFilipov,项目名称:HackBulgaria-Programming101,代码行数:8,代码来源:Entity_test.py

示例2: test_take_healing

# 需要导入模块: from Entity import Entity [as 别名]
# 或者: from Entity.Entity import health [as 别名]
 def test_take_healing(self):
     my_entity = Entity("Furious", 100)
     my_entity.health = 50
     heal_result = my_entity.take_healing(20)
     self.assertEqual(70, my_entity.get_health())
     self.assertTrue(heal_result)
开发者ID:AntonioFilipov,项目名称:HackBulgaria-Programming101,代码行数:8,代码来源:Entity_test.py

示例3: test_take_healing_dead

# 需要导入模块: from Entity import Entity [as 别名]
# 或者: from Entity.Entity import health [as 别名]
 def test_take_healing_dead(self):
     my_entity = Entity("Furious", 100,)
     my_entity.health = 0
     heal_result = my_entity.take_healing(20)
     self.assertEqual(0, my_entity.get_health())
     self.assertFalse(heal_result)
开发者ID:AntonioFilipov,项目名称:HackBulgaria-Programming101,代码行数:8,代码来源:Entity_test.py

示例4: test_is_alive

# 需要导入模块: from Entity import Entity [as 别名]
# 或者: from Entity.Entity import health [as 别名]
 def test_is_alive(self):
     my_entity = Entity("Furious", 100)
     my_entity.health = 0
     self.assertFalse(my_entity.is_alive())
开发者ID:AntonioFilipov,项目名称:HackBulgaria-Programming101,代码行数:6,代码来源:Entity_test.py


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