2021-02-09 15:17:48 +01:00
|
|
|
title = Unexpected Roommates
|
|
|
|
cards = file-delete
|
2020-11-13 11:43:22 +01:00
|
|
|
|
|
|
|
[description]
|
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
The first day at Time Travel School comes to an end and you receive the key to your room.
|
|
|
|
Full of excitement you open the door just to find... spider webs! Spider webs everywhere!
|
2021-01-11 19:16:35 +01:00
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
Remove all the spider webs you can find with the remove card!
|
2020-11-13 11:43:22 +01:00
|
|
|
|
|
|
|
[setup]
|
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
echo A tiny spider web is next to your window. > tiny_web
|
|
|
|
echo A big spider web sticks above your bed. > big_web
|
|
|
|
echo A cozy bed. > bed
|
|
|
|
echo An extra thick spider web is right beside your door. > thick_web
|
2020-11-13 11:43:22 +01:00
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
# Remove all spider webs.
|
|
|
|
! ls | grep thick_web &&
|
|
|
|
! ls | grep big_web &&
|
|
|
|
! ls | grep tiny_web
|
2021-01-11 19:16:35 +01:00
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
# But make sure you keep your bed!
|
|
|
|
ls | grep bed
|
2020-11-13 11:43:22 +01:00
|
|
|
|
|
|
|
[congrats]
|
|
|
|
|
2021-02-09 15:17:48 +01:00
|
|
|
Your room looks now very tidy and cozy! Time to unpack your stuff!
|