本文整理汇总了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)
示例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)
示例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)
示例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())