本文整理汇总了Python中objects.Object.get_object方法的典型用法代码示例。如果您正苦于以下问题:Python Object.get_object方法的具体用法?Python Object.get_object怎么用?Python Object.get_object使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类objects.Object
的用法示例。
在下文中一共展示了Object.get_object方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: can_do
# 需要导入模块: from objects import Object [as 别名]
# 或者: from objects.Object import get_object [as 别名]
def can_do(self):
cant_dig_item = False
try:
obj = Object.get_object(self.noun)
except UnknownObject:
cant_dig_item = True
else:
if not obj.can_apply_action(self.verb):
cant_dig_item = True
if cant_dig_item:
self.cant_do_reason = "You can't dig '{}'.".format(self.noun)
return False
if self.using:
if (
match_word(self.using, 'hands?') or
player.has_item(self.using)
):
return True
else:
self.cant_do_reason = "You don't have a {}.".format(self.using)
return False
else:
self.cant_do_reason = "Dig {} using what?".format(self.noun)
return False