#!/bin/zsh

clear
input=$1

if [[ -n $input ]]; then
	
	echo "so you think your smart with your fancy flags..."

fi

echo "bok bok bok"

echo -n "What do you want to do to yim? "

read action

if [[ $action == "pet" || $action == "grab" || $action == "pick up" ]]; then
	
	echo "She tries to run away"

elif [[ $action == "poke" ]]; then
	
	echo "WHAT!? HOW COULD YOU!?"

else
	
	echo "That is not allowed"
fi

echo ""