Finish prototype

This commit is contained in:
Matt Arnold 2025-08-29 20:29:18 -04:00
parent 12cd01924d
commit ebcb8157de
2 changed files with 443 additions and 1275 deletions

1689
cards.rec

File diff suppressed because it is too large Load Diff

29
reading.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/bash
set -e
# one Card for each of the cardinals Also 4 stages of the day
N=$((RANDOM % 52 + 1))
S=$((RANDOM % 52 + 1))
E=$((RANDOM % 52 + 1))
W=$((RANDOM % 52 + 1))
echo -e "Your Card from the at the North/Air is"
recsel -e "Order=$N" cards.rec | sed 's/+//g'
echo "press enter to continue"
read
clear
echo -e "Your Card at East/Water is"
recsel -e "Order=$E" cards.rec | sed 's/+//g'
read
clear
echo -e "At the South/Earth"
recsel -e "Order=$S" cards.rec | sed 's/+/ /g'
read
clear
echo -e "Finally at the West/Fire"
recsel -e "Order=$W" cards.rec | sed 's/+/ /g'
read
clear
echo "have a magical day"