示例#1
0
 def fight3():
     boost(1)
     graze(1)
     attack(2)
     return fight3
示例#2
0
 def fight3():
     attack(2)
     attack(2)
     attack(2)
     return 1
示例#3
0
文件: group.py 项目: yozoraxsx/PY
def extra(s):
    """残血操作"""
    # print('extra:%d' % s)
    if isinstance(s, int):
        if s == 1:
            """全集中"""
            attack(2)
            attack(2)
            attack(2)
        elif s == 2:
            """全分散"""
            attack(1)
            attack(1)
            attack(1)
        elif s == 3:
            """一半集中一半分散"""
            attack(1)
            attack(2)
            attack(1)
        elif s == 4:
            """有什么符卡放什么"""
            graze(1)
            boost(1)
            card(4)
            card(3)
            card(2)
            card(1)
            click(79, 593)
            attack(2)
        return s
    else:
        return s()
示例#4
0
 def fight1():
     boost(1)
     card(5)
     attack(2)
     attack(2)
     return 1
示例#5
0
文件: group.py 项目: yozoraxsx/PY
 def extra():
     graze(1)
     boost(1)
     attack(2)
     return extra