Skip to content

Commit

Permalink
markdown updates
Browse files Browse the repository at this point in the history
  • Loading branch information
neonerz committed Aug 6, 2020
1 parent 27c9724 commit 375a61f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions crate.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
Help Wonder Woman move through the crates and find the missing painting piece. Search each one and if she finds the missing puzzle piece, have her break the box to get it.

**Blocks Available:**
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that direction the specified number of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the specified direction.
``||ww:painting inside crate <direction>||`` - Return a boolean (*true* | *false*) of whether the painting is found hidden in the specified direction.
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that *direction* the given *number* of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the given *direction*.
``||ww:painting inside crate <direction>||`` - Return a boolean (*true* | *false*) of whether the painting is found hidden in the given *direction*.
``||ww:Break crate <direction>||`` - Instruct Wonder Woman to try and retrieve the hidden painting.
``||loops:repeat <number> times||`` - Repeat code the specified number of times.
``||loops:while <boolean>||`` - Repeated run the code while the boolean is *true*.
``||logic:if / then||`` - Checks if a condition is *true* and then does something if so.
``||loops:repeat <number> times||`` - Repeat code the given *number* of times.
``||loops:while <boolean>||`` - Repeatedly run the code while the boolean is *true*.
``||logic:if / then||`` - Checks if a condition is *true* and then does something if it is.
``||logic:not <boolean>||`` - Switches the operation of a condition. Example: *while <true>* vs. *while not <true>*

```ghost
Expand Down
12 changes: 6 additions & 6 deletions final.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
# Hidden in Plain Sight

## Step 1
The goon who planned the heist is hidden among the croud. Help Wonder Woman check each person to figure out which is the goon in disguise and then use the lasso of truth to get the final painting piece.
The goon who planned the heist is hidden among the crowd. Help Wonder Woman check each person to figure out which is the goon in disguise and then use the lasso of truth to get the final painting piece.

**Blocks Available:**
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that direction the specified number of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the specified direction.
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that *direction* the given *number* of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the given *direction*.
``||ww:attendee is the goon <direction>||`` - Return a boolean (*true* | *false*) of whether the attendee is a goon or not.
``||ww:Lasso goon <direction>||`` - Causes Wonder Woman to use her lasso of truth on a goon.
``||loops:repeat <number> times||`` - Repeat code the specified number of times.
``||loops:while <boolean>||`` - Repeated run the code while the boolean is *true*.
``||logic:if / then||`` - Checks if a condition is *true* and then does something if so.
``||loops:repeat <number> times||`` - Repeat code the given *number* of times.
``||loops:while <boolean>||`` - Repeatedly run the code while the boolean is *true*.
``||logic:if / then||`` - Checks if a condition is *true* and then does something if it is.
``||logic:not <boolean>||`` - Switches the operation of a condition. Example: *while <true>* vs. *while not <true>*

```ghost
Expand Down
6 changes: 3 additions & 3 deletions floor.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
The colors on the wall seem to match the colors on the floor. Help Wonder Woman move over the colored blocks in the same sequence as seen on the wall. That should unlock a secret door on the back wall.

**Blocks Available:**
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that direction the specified number of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the specified direction.
``||loops:repeat <number> times||`` - Repeat code the specified number of times.
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that *direction* the given *number* of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the given *direction*.
``||loops:repeat <number> times||`` - Repeat code the given *number* of times.

```ghost
player.onChat("run", function () {
Expand Down
10 changes: 5 additions & 5 deletions sneak.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
# Stealth Mission

## Step 1
Help Wonder Woman move through the room without triggering the alarm by avoiding the lasers. Sneak behind and takedown the goon.
Help Wonder Woman move through the room without triggering the alarm by avoiding the lasers. She'll need to sneak behind and takedown the goon.

**Blocks Available:**
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that direction the specified number of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the specified direction.
``||ww:Takedown goon <direction>||`` - Stealthily knock out the goon in the specified direction.
``||loops:repeat <number> times||`` - Repeat code the specified number of times.
``||ww:Move <direction> by <number>||`` - Wonder Woman will move in that *direction* the given *number* of blocks.
``||ww:Turn <direction>||`` - Wonder Woman will turn in the given *direction*.
``||ww:Takedown goon <direction>||`` - Stealthily knock out the goon in the given *direction*.
``||loops:repeat <number> times||`` - Repeat code the given *number* of times.

```ghost
player.onChat("run", function () {
Expand Down

0 comments on commit 375a61f

Please sign in to comment.