17 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| [ -f functions.sh ] && source functions.sh
 | |
| # All names to match are completely lowercase.
 | |
| exitName="${1%% *}"
 | |
| 
 | |
| case "${1,,}" in
 | |
| storm_dragon)
 | |
| msg "${2%% :*}" "NOOOOOOOOOO!!! $1: come back!!!"
 | |
| ;;
 | |
| *)
 | |
| bye=(
 | |
|   "Bye $1." 
 | |
|   "Alas $1, you will be missed."
 | |
| )
 | |
| msg "${2%% :*}" "${bye[$(($RANDOM % ${#bye[@]}))]}"
 | |
| esac
 |