26 lines
821 B
Bash
26 lines
821 B
Bash
#!/bin/bash
|
|
|
|
type_text() {
|
|
local text="$1"
|
|
local delay="$2"
|
|
local char
|
|
|
|
while IFS= read -r -n1 char; do
|
|
printf "%b" "$char"
|
|
sleep "$delay"
|
|
done <<< "$text"
|
|
|
|
printf "\n"
|
|
}
|
|
|
|
type_text "$(echo -e "\e[3;37m Du Stehst nun der Bande “Microsoft” gegenüber.\e[0m")" 0.05
|
|
type_text "$(echo -e "\e[3m Du hast 10 min Zeit sie zu besiegen und im Besten falle zu Töten.\e[0m")" 0.03
|
|
|
|
type_text "$(echo -e "\033[3m Die Gruppe wird dir das Leben auf jedenfall Schwer machen.\033[0m\n")" 0.03
|
|
|
|
type_text "$(echo -e "")" 1
|
|
type_text "$(echo -e "\033[3m Solltest du dies nicht schaffen ist dein Rechner für immer verloren.\033[0m")" 0.03
|
|
type_text "$(echo -e "\033[3m\033[0m")" 0.03
|
|
|
|
type_text "$(echo -e "\n")" 0.9
|
|
type_text "$(echo -e "\033[3mDie Uhr beginnt jetzt zu ticken.\033[0m")" 0.05 |