add the gremlin

This commit is contained in:
2026-07-14 19:50:07 +02:00
parent d226de7ccc
commit 400022a2ff
2 changed files with 60 additions and 22 deletions
+4
View File
@@ -25,5 +25,9 @@ The Red Maiden will tell you what time it is :)
If you mess up the flag she will be just sad
`-g`
The child weilding needle is replaced by her horrible little gremlin of a sibling. Their voice lines change too! Very lore accurate.
### Disclaimer:
I did not draw Hornet I stole her form [here](https://emojicombos.com/hornet.-ascii-art)
+42 -8
View File
@@ -2,28 +2,27 @@
STD=true
while getopts "at" flag; do
while getopts "atg" flag; do
case "$flag" in
a)
shaws=("SHAW!" "HEAGALE" "GIT GUD" "Fren." "HahAH" "EDINO!")
length=${#shaws[@]}
random_index=$(( RANDOM % length ))
text=${shaws[$random_index]}
STD=false
shaw=true
;;
t)
text=$(date)
STD=false
;;
g)
ghost=true
;;
*)
text=" :( "
STD=false
ghost=false
shaw=false
;;
esac
done
if [ $STD = true ]
then
read text
@@ -35,6 +34,39 @@ for (( i=0; i<${#text}+4; i++ )); do
line="$line-"
done
if [ $ghost ];
then
if [ $shaw ];
then
text=" "
fi
echo $line
echo "| $text |"
echo $line
echo " \\/"
echo ⠀⣀⡤⣄⠀
echo ⣰⠻⣤⠀⠀⠀⠀⠀⠀⠻⡅⠘⡆⠀⣀⠀⢀⡀
echo ⡏⠀⡇⠀⠀⠀⠀⠀⠀⠀⡷⠀⡏⠀⢻⣿⣿⡟
echo ⢫⡀⠙⢦⠞⠋⠉⠉⠉⠉⠀⡼⠀⠀⠙⠋⠀⠀
echo ⠀⠑⢦⠀⢀⣤⡀⠀⢀⣤⡀⢻⠀⠀⠀⠀⠀⠀
echo ⠀⠀⠘⡄⠸⣿⡃⠀⠘⣿⠇⣸⠀⣏⡧⡆⠀⠀
echo ⠀⠀⠀⠘⠦⢄⣄⣤⣤⣴⠊⠁⣠⠛⠯⠽⠀⠀
echo ⠀⠀⠀⠀⢀⡾⢋⠥⣃⢼⡷⠋⠛⢧⠀⠀⠀⠀
echo ⠀⠀⠀⠀⠘⢻⣯⠟⢺⡟⠋⠀⠀⠀⠀⠀⠀⠀
echo ⠀⠁⠀⠀⠁⠀
else
if [ $shaw ];
then
shaws=("SHAW!" "HEAGALE" "GIT GUD" "Fren." "HahAH" "EDINO!")
length=${#shaws[@]}
random_index=$(( RANDOM % length ))
text=${shaws[$random_index]}
STD=false
fi
echo $line
echo "| $text |"
echo $line
@@ -49,3 +81,5 @@ echo ⠀⣴⣿⣿⣿⣿⣿⣶⡿⠋⠉⠀⠀
echo ⠀⠀⠀⠀⠈⣻⠿⣿⣿⣿⡿⠛⠃⠀⠀⠀⠀
echo ⠀⠀⣤⣔⠎⠇⠙⠀⢧⢸⠀⠀⠀⠀⠀⠀⠀
echo ⠐⠊⠁⠁⠀⠀⠀⠀⠸⢸⠀⠀⠀⠀⠀⠀⠀
fi