本文整理汇总了Python中magic.spell.Spell.checkrequirements方法的典型用法代码示例。如果您正苦于以下问题:Python Spell.checkrequirements方法的具体用法?Python Spell.checkrequirements怎么用?Python Spell.checkrequirements使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类magic.spell.Spell
的用法示例。
在下文中一共展示了Spell.checkrequirements方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: checkrequirements
# 需要导入模块: from magic.spell import Spell [as 别名]
# 或者: from magic.spell.Spell import checkrequirements [as 别名]
def checkrequirements(self, char, mode, args=[], target=None, item=None):
if char.polymorph:
if char.socket:
char.socket.clilocmessage(1005559)
return 0
if char.incognito:
if char.socket:
char.socket.clilocmessage(502167)
return 0
if len(args) == 0:
polymorph.showmenu(char)
return 0
return Spell.checkrequirements(self, char, mode, args, target, item)
示例2: checkrequirements
# 需要导入模块: from magic.spell import Spell [as 别名]
# 或者: from magic.spell.Spell import checkrequirements [as 别名]
def checkrequirements(self, char, mode, args=[], target=None, item=None):
if char.polymorph:
if char.socket:
char.socket.clilocmessage(1005559)
return 0
if char.incognito:
if char.socket:
char.socket.clilocmessage(502167)
return 0
if necromancy.transformed(char):
if char.socket:
char.socket.clilocmessage(1061633 ) # You cannot polymorph while in that form.
return 0
if len(args) == 0:
polymorph.showmenu(char)
return 0
return Spell.checkrequirements(self, char, mode, args, target, item)