def fight3(): boost(1) graze(1) attack(2) return fight3
def fight3(): attack(2) attack(2) attack(2) return 1
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()
def fight1(): boost(1) card(5) attack(2) attack(2) return 1
def extra(): graze(1) boost(1) attack(2) return extra