-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit 26d9cae.
- Loading branch information
Showing
8 changed files
with
100 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### @codeStart players set @s makecode 0 | ||
### @codeStop players set @s makecode 1 | ||
|
||
### @flyoutOnly false | ||
### @hideIteration true | ||
### @explicitHints 1 | ||
|
||
## Laser Sneak | ||
|
||
# Laser Sneak Part 2 | ||
This room is a bit more difficult. Help Wonder Woman get through this room without triggering the alarm. | ||
|
||
**Blocks Available:** | ||
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks. | ||
*repeat <number> times* - Repeat code the specified number of times. | ||
|
||
```ghost | ||
ww.moveWW(Direction.Forward, 0) | ||
for (let index = 0; index < 4; index++) { | ||
} | ||
``` | ||
```package | ||
minecraft-ww1984=github:ReWrite-Media/ww1984-ts | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
### @codeStart players set @s makecode 0 | ||
### @codeStop players set @s makecode 1 | ||
|
||
### @flyoutOnly false | ||
### @hideIteration true | ||
### @explicitHints 1 | ||
|
||
## Laser Sneak | ||
|
||
# Laser Sneak Part 3 | ||
In this room Wonder Woman will need to sneak up behind the goon and get the painting piece from him. You'll still need to make sure she avoids tripping the lasers. | ||
|
||
**Blocks Available:** | ||
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks. | ||
*Apprehend goon <direction>* - Instruct Wonder Woman to apprehend the goon. | ||
*repeat <number> times* - Repeat code the specified number of times. | ||
|
||
```ghost | ||
ww.moveWW(Direction.Forward, 0) | ||
ww.apprehendGoon(Direction.Forward) | ||
for (let index = 0; index < 4; index++) { | ||
} | ||
``` | ||
```package | ||
minecraft-ww1984=github:ReWrite-Media/ww1984-ts | ||
``` |