本文整理汇总了Python中orc.Orc.location方法的典型用法代码示例。如果您正苦于以下问题:Python Orc.location方法的具体用法?Python Orc.location怎么用?Python Orc.location使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类orc.Orc
的用法示例。
在下文中一共展示了Orc.location方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: spawn_npcs
# 需要导入模块: from orc import Orc [as 别名]
# 或者: from orc.Orc import location [as 别名]
def spawn_npcs(self):
"""Spawns NPCs into the Dungeon field"""
free_spaces = True
counter = 1
while free_spaces:
if "N" in self.map:
npc = Orc("NPC" + str(counter), 250, 1.4)
wep = Weapon("Axe" + str(counter), 15, 0.7)
npc.weapon = wep
self.npcs[npc.name] = npc
self.ingame[npc.name] = npc
npc.location = self.get_position_in_map("N")
self.map = (self.map[:self.map.find("N")] + "O" +
self.map[self.map.find("N") + 1:])
counter += 1
else:
free_spaces = False