Skip to content

Commit

Permalink
updated markdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
neonerz committed Jul 30, 2020
1 parent b5be350 commit 26d9cae
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 100 deletions.
11 changes: 7 additions & 4 deletions beams.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,22 @@
## Beams of Color

# Beams of Color
Place stained glass over the beacons to match the color sequence needed to unlock the painting piece.
Help Wonder Women place stained glass over the beams of light to match the color sequence displayed on the wall. You'll need to tell her where to move and which colors to place.

**Blocks Available:**
*Place <color> Stained Glass <direction>* - Place a piece of colored stained glass in the specified direction.
*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.placeBlock(BeamsGlass.YellowStainedGlass, Direction.Forward)
ww.moveWW(Direction.Forward, 0)
for (let index = 0; index < 4; index++) {
ww.placeBlock(BeamsGlass.YellowStainedGlass, Direction.Forward)
ww.moveWW(Direction.Forward, 0)
}
player.onChat("run", function () {
})
```

```package
Expand Down
33 changes: 17 additions & 16 deletions crate.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,33 @@
### @hideIteration true
### @explicitHints 1

## Search the crates
## Suspicious Cates

# Search the crates
Move through the boxes to find and retrieve the painting.
# Suspicious Cates
Help Wonder Woman navigate 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:**
*Locate painting <direction>* - Return a boolean (*true* | *false*) of whether the painting is found hidden in the specified direction.
*Retrieve painting <direction>* - Instruct Wonder Woman to try and retrieve the hidden painting.
*Search crate <direction>* - Return a boolean (*true* | *false*) of whether the painting is found hidden in the specified direction.
*Break crate <direction>* - Instruct Wonder Woman to try and retrieve the hidden painting.
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
*if / then* - Checks if a condition is *true* and then does something if so.
*repeat <number> times* - Repeat code the specified number of times.
*while <boolean>* - Repeated run the code while the boolean is *true*.
*not <boolean>* - Switches the operation of a condition. Example: *while <true>* vs. *while not <true>*

```ghost
ww.retrievePainting(Direction.Forward)
ww.moveWW(Direction.Forward, 0)
if (ww.locatePainting(Direction.Forward)) {
}
for (let index = 0; index < 4; index++) {
}
while (!(false)) {
}
player.onChat("run", function () {
if (ww.locatePainting(Direction.Forward)) {
ww.retrievePainting(Direction.Forward)
ww.moveWW(Direction.Forward, 0)
}
for (let index = 0; index < 4; index++) {
}
while (!(false)) {
}
})
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
Expand Down
31 changes: 15 additions & 16 deletions final.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,30 @@
## Hidden in Plain Sight

# Hidden in Plain Sight
The final goon is hiding amongst the gala attendees. Help Wonder Woman find and apprehend him.
The criminal mastermind who orchestrated this heist has hidden among the gala attendees. Help Wonder Woman investigate each attendee to figure out which is the goon in hiding and then use the lasso of truth to find out where the final piece of the painting is.

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

```ghost
ww.moveWW(Direction.Forward, 0)
ww.locateGoon(Direction.Forward)
ww.apprehendGoon(Direction.Forward)
for (let index = 0; index < 4; index++) {
}
if () {
}
while (true) {
}
!(false)
player.onChat("run", function () {
ww.moveWW(Direction.Forward, 0)
for (let index = 0; index < 4; index++) {
}
if (ww.locateGoon(Direction.Forward)) {
ww.apprehendGoon(Direction.Forward)
}
while (!(false)) {
}
})
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
Expand Down
2 changes: 1 addition & 1 deletion floor.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Dance Floor

# Dance Floor
Walk the correct path of colors to open the door containing the painting.
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:**
*Move <direction> by <number>* - Wonder Woman will move in that direction the specified number of blocks.
Expand Down
6 changes: 2 additions & 4 deletions pxt.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minecraft-ww1984-md",
"version": "0.0.3",
"version": "0.0.4",
"dependencies": {
"core": "*",
"builder": "*"
Expand All @@ -10,9 +10,7 @@
"crate.md",
"beams.md",
"floor.md",
"sneak_1.md",
"sneak_2.md",
"sneak_3.md",
"sneak.md",
"final.md"

],
Expand Down
15 changes: 8 additions & 7 deletions sneak_1.md → sneak.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@
### @hideIteration true
### @explicitHints 1

## Laser Sneak
## Stealth Mission

# Laser Sneak Part 1
Help Wonder Woman navigate through the room without tripping any lasers.
# Stealth Mission
Wonder Woman needs to make her way through these rooms without tripping any alarms. If she crosses a laser, the gates will shut! Help her move through the rooms undetected.

**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++) {
}
player.onChat("run", function () {
for (let index = 0; index < 4; index++) {
ww.moveWW(Direction.Forward, 0)
}
})
```
```package
minecraft-ww1984=github:ReWrite-Media/ww1984-ts
Expand Down
25 changes: 0 additions & 25 deletions sneak_2.md

This file was deleted.

27 changes: 0 additions & 27 deletions sneak_3.md

This file was deleted.

0 comments on commit 26d9cae

Please sign in to comment.