name stringclasses 9
values | description stringclasses 9
values | code stringclasses 9
values | seeds int64 16 16 |
|---|---|---|---|
same_color | Same color as previous. | if not mainline:
return True
return card.color == mainline[-1].color | 16 |
same_suit | Same suit as previous. | if not mainline:
return True
return card.suit.suit_name == mainline[-1].suit.suit_name | 16 |
same_rank | Same rank as previous. | if not mainline:
return True
return card.rank == mainline[-1].rank | 16 |
rank_le_prev | Rank <= previous. | if not mainline:
return True
return card.rank <= mainline[-1].rank | 16 |
same_rank_or_color | Same rank OR same color as previous. | if not mainline:
return True
p=mainline[-1]
return card.rank==p.rank or card.color==p.color | 16 |
le_or_same_suit | Rank <= previous OR same suit. | if not mainline:
return True
p=mainline[-1]
return card.rank<=p.rank or card.suit.suit_name==p.suit.suit_name | 16 |
ge_or_same_color | Rank >= previous OR same color. | if not mainline:
return True
p=mainline[-1]
return card.rank>=p.rank or card.color==p.color | 16 |
diff_color_or_same_rank | Different color OR same rank. | if not mainline:
return True
p=mainline[-1]
return card.color!=p.color or card.rank==p.rank | 16 |
ge_or_same_suit | Rank >= previous OR same suit. | if not mainline:
return True
p=mainline[-1]
return card.rank>=p.rank or card.suit.suit_name==p.suit.suit_name | 16 |
README.md exists but content is empty.
- Downloads last month
- 33