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 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: ### Disclaimer:
I did not draw Hornet I stole her form [here](https://emojicombos.com/hornet.-ascii-art) 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 STD=true
while getopts "at" flag; do while getopts "atg" flag; do
case "$flag" in case "$flag" in
a) a)
shaws=("SHAW!" "HEAGALE" "GIT GUD" "Fren." "HahAH" "EDINO!") shaw=true
length=${#shaws[@]}
random_index=$(( RANDOM % length ))
text=${shaws[$random_index]}
STD=false
;; ;;
t) t)
text=$(date) text=$(date)
STD=false STD=false
;; ;;
g)
ghost=true
;;
*) *)
text=" :( " text=" :( "
STD=false STD=false
ghost=false
shaw=false
;; ;;
esac esac
done done
if [ $STD = true ] if [ $STD = true ]
then then
read text read text
@@ -35,6 +34,39 @@ for (( i=0; i<${#text}+4; i++ )); do
line="$line-" line="$line-"
done 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 $line
echo "| $text |" echo "| $text |"
echo $line echo $line
@@ -49,3 +81,5 @@ echo ⠀⣴⣿⣿⣿⣿⣿⣶⡿⠋⠉⠀⠀
echo ⠀⠀⠀⠀⠈⣻⠿⣿⣿⣿⡿⠛⠃⠀⠀⠀⠀ echo ⠀⠀⠀⠀⠈⣻⠿⣿⣿⣿⡿⠛⠃⠀⠀⠀⠀
echo ⠀⠀⣤⣔⠎⠇⠙⠀⢧⢸⠀⠀⠀⠀⠀⠀⠀ echo ⠀⠀⣤⣔⠎⠇⠙⠀⢧⢸⠀⠀⠀⠀⠀⠀⠀
echo ⠐⠊⠁⠁⠀⠀⠀⠀⠸⢸⠀⠀⠀⠀⠀⠀⠀ echo ⠐⠊⠁⠁⠀⠀⠀⠀⠸⢸⠀⠀⠀⠀⠀⠀⠀
fi