예제 #1
0
    def clickable(g):
        if limit1_skill_used('borrow_tag'):
            return False

        if not my_turn(): return False

        return True
예제 #2
0
    def clickable(game):
        me = game.me

        if my_turn() and (me.cards or me.showncards or me.equips):
            return True

        return False
예제 #3
0
파일: cirno.py 프로젝트: 17night/thbattle
    def clickable(game):
        me = game.me

        if ttags(me)['bakadesu']:
            return False

        return my_turn()
예제 #4
0
    def clickable(g):
        if limit1_skill_used('borrow_tag'):
            return False

        if not my_turn(): return False

        return True
예제 #5
0
파일: parsee.py 프로젝트: 17night/thbattle
    def clickable(game):
        me = game.me

        if my_turn() and (me.cards or me.showncards or me.equips):
            return True

        return False
예제 #6
0
파일: cirno.py 프로젝트: yuzishui/thbattle
    def clickable(game):
        me = game.me

        if ttags(me)['bakadesu']:
            return False

        return my_turn()
예제 #7
0
    def clickable(g):
        if not my_turn():
            return False

        if ttags(g.me)['qiliao']:
            return False

        return True
예제 #8
0
    def clickable(game):
        me = game.me
        if limit1_skill_used('find_tag'):
            return False

        if my_turn() and (me.cards or me.showncards or me.equips):
            return True

        return False
예제 #9
0
    def clickable(game):
        me = game.me
        if not my_turn(): return False
        if limit1_skill_used('autumnfeast_tag'): return False

        if not (me.cards or me.showncards or me.equips):
            return False

        return True
예제 #10
0
    def clickable(game):
        me = game.me
        if limit1_skill_used('find_tag'):
            return False

        if my_turn() and (me.cards or me.showncards or me.equips):
            return True

        return False
예제 #11
0
    def clickable(game):
        me = game.me
        if not my_turn(): return False
        if limit1_skill_used('autumnfeast_tag'): return False

        if not (me.cards or me.showncards or me.equips):
            return False

        return True
예제 #12
0
    def clickable(game):
        me = game.me
        if not my_turn():
            return False

        if me.cards or me.showncards or me.equips:
            return True

        return False
예제 #13
0
파일: mamizou.py 프로젝트: 17night/thbattle
    def clickable(game):
        me = game.me

        if limit1_skill_used('mamizou_morphing_tag'):
            return False

        if not (my_turn() and (me.cards or me.showncards)):
            return False

        return True
예제 #14
0
    def clickable(game):
        me = game.me

        if limit1_skill_used('mamizou_morphing_tag'):
            return False

        if not (my_turn() and (me.cards or me.showncards)):
            return False

        return True
예제 #15
0
파일: kokoro.py 프로젝트: yuzishui/thbattle
    def clickable(g):
        me = g.me
        if me.tags['darknoh_tag'] > 0:
            return False

        if not my_turn():
            return False

        if me.cards or me.showncards or me.equips:
            return True

        return False
예제 #16
0
파일: kokoro.py 프로젝트: yuzishui/thbattle
    def clickable(g):
        me = g.me
        if limit1_skill_used('darknoh_tag'):
            return False

        if not my_turn():
            return False

        if me.cards or me.showncards or me.equips:
            return True

        return False
예제 #17
0
파일: ran.py 프로젝트: yuzishui/thbattle
    def clickable(game):
        me = game.me

        if not (my_turn() and (me.cards or me.showncards)):
            return False

        if ttags(me)['ran_eikof_tag']:
            return False

        if not ttags(me)['ran_eikof_card']:
            return False

        return True
예제 #18
0
파일: ran.py 프로젝트: 17night/thbattle
    def clickable(game):
        me = game.me

        if not (my_turn() and (me.cards or me.showncards)):
            return False

        if ttags(me)['ran_eikof_tag']:
            return False

        if not ttags(me)['ran_eikof_card']:
            return False

        return True
예제 #19
0
    def clickable(game):
        me = game.me
        if my_turn():
            return False

        if not (me.cards or me.showncards):
            return False

        try:
            act = game.action_stack[-1]
            return act.cond([build_handcard(cards.AttackCard)])
        except:
            pass

        return False
예제 #20
0
    def clickable(g):
        if not my_turn(): return False
        if limit1_skill_used('riverside_tag'): return False

        me = g.me
        return bool(me.cards or me.showncards or me.equips)
예제 #21
0
파일: youmu.py 프로젝트: yuzishui/thbattle
 def clickable(game):
     me = game.me
     weapons = [e for e in me.equips if e.equipment_category == 'weapon']
     return my_turn() and len(weapons) == 2
예제 #22
0
    def clickable(g):
        if my_turn() and not limit1_skill_used('drawinglot_tag'):
            return True

        return False
예제 #23
0
 def clickable(game):
     me = game.me
     return my_turn() and not ttags(me)['mind_read']
예제 #24
0
 def clickable(game):
     me = game.me
     weapons = [e for e in me.equips if e.equipment_category == 'weapon']
     return my_turn() and len(weapons) == 2
예제 #25
0
파일: sanae.py 프로젝트: 17night/thbattle
 def clickable(g):
     return my_turn() and not ttags(g.me)['faith']
예제 #26
0
파일: sanae.py 프로젝트: 17night/thbattle
 def clickable(g):
     return my_turn()
예제 #27
0
    def clickable(g):
        if not my_turn(): return False

        me = g.me
        return bool(me.cards or me.showncards or me.equips)
예제 #28
0
 def clickable(game):
     me = game.me
     return my_turn() and not ttags(me)['mind_read']
예제 #29
0
 def clickable(g):
     if not my_turn(): return False
     if limit1_skill_used('scarletfog_tag'): return False
     return True
예제 #30
0
파일: nitori.py 프로젝트: 17night/thbattle
    def clickable(g):
        if ttags(g.me)['dismantle']:
            return False

        return my_turn()
예제 #31
0
파일: sanae.py 프로젝트: hycxa/thbattle
    def clickable(g):
        if my_turn() and not limit1_skill_used("drawinglot_tag"):
            return True

        return False
예제 #32
0
 def clickable(g):
     me = g.me
     if not my_turn(): return False
     if len(me.faiths) < 3: return False
     if limit1_skill_used('nevernight_tag'): return False
     return True
예제 #33
0
 def clickable(g):
     return my_turn()
예제 #34
0
파일: sanae.py 프로젝트: yuzishui/thbattle
 def clickable(g):
     return my_turn() and not ttags(g.me)['faith']
예제 #35
0
    def clickable(g):
        if not my_turn(): return False

        me = g.me
        return bool(me.cards or me.showncards or me.equips)
예제 #36
0
파일: nitori.py 프로젝트: yuzishui/thbattle
    def clickable(g):
        if ttags(g.me)['dismantle']:
            return False

        return my_turn()