• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Python char.set_status函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中mudwyrm_users.admin.achaea.scripts.char.set_status函数的典型用法代码示例。如果您正苦于以下问题:Python set_status函数的具体用法?Python set_status怎么用?Python set_status使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: finish

 def finish(action):
     for element in char.available_elements():
         if element not in action.channels:
             set_status(element + '_channel', False)
     for element in action.channels:
         set_status(element + '_channel', True)
     p.raise_event('ChannelListCaptured', channels=action.channels)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:7,代码来源:elementalism.py


示例2: cast_successfully

 def cast_successfully(match, action):
     target = match.group(1)
     if target == 'yourself':
         assert action.args['target'] == 'me'
         lose_balance('equilibrium')
         set_status('reflection', True)
     else:
         assert action.args['target'].lower() == match.group(1).lower()
         lose_balance('equlibrium')
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:9,代码来源:elementalism.py


示例3: on_diagnose_captured

def on_diagnose_captured(diagnoses):
    for diagnosis in _diagnose_lines.iterkeys():
        if diagnosis not in diagnoses and diagnosis not in _special_diagnoses:
            set_status(diagnosis, False)
    for diagnosis in diagnoses:
        if diagnosis not in _special_diagnoses:
            set_status(diagnosis, True)
    
    if 'shivers' in diagnoses:
        set_status('caloric', False)
    if ('webbed' in diagnoses or
        'roped' in diagnoses or
        'bound' in diagnoses):
        set_status('entangled', True)
    _limb_check(diagnoses, 'crippled', 'arm')
    _limb_check(diagnoses, 'crippled', 'leg')
    _limb_check(diagnoses, 'damaged', 'arm')
    _limb_check(diagnoses, 'damaged', 'leg')
    _limb_check(diagnoses, 'mangled', 'arm')
    _limb_check(diagnoses, 'mangled', 'leg')
    
    set_status('loki', False)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:22,代码来源:diagnose.py


示例4: drank_elixir_without_effect

def drank_elixir_without_effect(match, event_args):
    elixir = event_args['elixir']
    if elixir == 'immunity':
        set_status('voyria', False)
    elif elixir == 'venom':
        set_status('venom', True)
    elif elixir == 'frost':
        set_status('frost', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:8,代码来源:drink.py


示例5: colocasia_2

 def colocasia_2(action, match):
     char.set_status('deafness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例6: euphorbia

 def euphorbia(action, match):
     char.set_status('nausea', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例7: prefarar_2

 def prefarar_2(action, match):
     char.set_status('sensitivity', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例8: curare

 def curare(action, match):
     char.set_status('paralysis', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例9: digitalis

 def digitalis(action, match):
     char.set_status('shyness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例10: eurypteria

 def eurypteria(action, match):
     char.set_status('recklessness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例11: aconite

 def aconite(action, match):
     char.set_status('stupidity', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例12: notechis

 def notechis(action, match):
     char.set_status('haemophilia', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例13: delphinium_3

 def delphinium_3(action, match):
     char.set_status('sleep', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例14: delphinium_2

 def delphinium_2(action, match):
     char.set_status('insomnia', False)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例15: delphinium_1

 def delphinium_1(action, match):
     char.set_status('kola', False)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例16: xentio

 def xentio(action, match):
     char.set_status('clumsiness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例17: oleander

 def oleander(action, match):
     char.set_status('blindness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例18: gecko

 def gecko(action, match):
     char.set_status('slickness', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例19: kalmia

 def kalmia(action, match):
     char.set_status('asthma', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py


示例20: scytherus

 def scytherus(action, match):
     char.set_status('scytherus', True)
开发者ID:sh-ft,项目名称:mudwyrm_users,代码行数:2,代码来源:actions3p.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap