dotg

a bitreich fosdem adventure
git clone https://git.parazyd.org/dotg
Log | Files | Refs

Balcony.sh (436B)


      1 specific_balcony() {
      2 	item="$1"
      3 
      4 	case "$item" in
      5 		Condom_balloon)
      6 			_msg "You use the balloon. A gust of wind makes it slip from your fingers.
      7 
      8 				The balloon flies away."
      9 			rm -f "$inventory/$item"
     10 			;;
     11 		Plastic_bag)
     12 			_msg "The wind makes your $item fly away...
     13 
     14 				You're sad."
     15 			rm -f "$inventory/$item"
     16 			;;
     17 		Black_dildo)
     18 			_msg "You smash a beer bottle with the $item"
     19 			takebeer Beers; dropitem Beers
     20 			;;
     21 	esac
     22 }