mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-20 16:20:18 +01:00
rm file level is now a spider web level
This commit is contained in:
parent
a5c5329c78
commit
ab829acf91
2 changed files with 18 additions and 16 deletions
|
@ -1,29 +1,30 @@
|
||||||
title = Unexpected Visitors
|
title = Unexpected Roommates
|
||||||
cards = file-new file-delete
|
cards = file-delete
|
||||||
|
|
||||||
[description]
|
[description]
|
||||||
|
|
||||||
*ring ring* Oh no! You wanted to meet with your parents in your student apartment and your alarm did not go off in time to clean your room!
|
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!
|
||||||
|
|
||||||
"Coming!" you yell while you jump out of bed. Now quick!
|
Remove all the spider webs you can find with the remove card!
|
||||||
|
|
||||||
[setup]
|
[setup]
|
||||||
|
|
||||||
echo Very smelly socks. > socks
|
echo A tiny spider web is next to your window. > tiny_web
|
||||||
echo A tiny couch table. > table
|
echo A big spider web sticks above your bed. > big_web
|
||||||
echo An empty energy drink can. > can
|
echo A cozy bed. > bed
|
||||||
echo An empty bag of chips. > bag_of_chips
|
echo An extra thick spider web is right beside your door. > thick_web
|
||||||
|
|
||||||
[win]
|
[win]
|
||||||
|
|
||||||
# Remove all litter and trash.
|
# Remove all spider webs.
|
||||||
! ls | grep bag_of_chips &&
|
! ls | grep thick_web &&
|
||||||
! ls | grep can &&
|
! ls | grep big_web &&
|
||||||
! ls | grep socks
|
! ls | grep tiny_web
|
||||||
|
|
||||||
# But make sure to keep important things!
|
# But make sure you keep your bed!
|
||||||
ls | grep table
|
ls | grep bed
|
||||||
|
|
||||||
[congrats]
|
[congrats]
|
||||||
|
|
||||||
Your parents are happy to see you (and, of course, your neat and tidy apartment)!
|
Your room looks now very tidy and cozy! Time to unpack your stuff!
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
files-add
|
|
||||||
files-delete
|
files-delete
|
||||||
|
files-add
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue