add ascii card art
parent
1346c0e63e
commit
ff5c1ffce9
|
@ -6,6 +6,10 @@ data from ekelen/tarot-api:
|
|||
|
||||
https://github.com/ekelen/tarot-api
|
||||
|
||||
ascii art from lawreka/ascii-tarot:
|
||||
|
||||
https://github.com/lawreka/ascii-tarot
|
||||
|
||||
## getting started
|
||||
|
||||
you will need:
|
||||
|
|
13
justfile
13
justfile
|
@ -3,12 +3,17 @@ default:
|
|||
just --list --unsorted
|
||||
|
||||
# draw n cards
|
||||
draw n:
|
||||
recsel -P name,meaning_up -m {{n}} tarot.rec
|
||||
@draw n:
|
||||
recsel -P name,ascii,meaning_up -m {{n}} tarot.rec \
|
||||
| fold -sw 60
|
||||
|
||||
# show a cutup
|
||||
cutup:
|
||||
recsel -P desc tarot.rec | fold -sw 30 | sed '/^$/d' | shuf | head -n 5
|
||||
@cutup:
|
||||
recsel -P desc tarot.rec \
|
||||
| fold -sw 30 \
|
||||
| sed '/^$/d' \
|
||||
| shuf \
|
||||
| head -n 5
|
||||
|
||||
# example: group by type
|
||||
type:
|
||||
|
|
Loading…
Reference in New Issue