diff --git a/foyer_bookshelf.md b/foyer_bookshelf.md index bb05de4..6072a2c 100644 --- a/foyer_bookshelf.md +++ b/foyer_bookshelf.md @@ -12,10 +12,10 @@ There seems to be something at the top of the bookcase. See if you could create Move the cursor along the bookcase to select a position using the ``||hoc22.cursor move ||`` block and then use ``||hoc22.place block||`` to place a block in that position. Create a staircase to get to the top. ```ghost - hoc22.cursorMoveOrientationOneUp() - hoc22.cursorMoveOrientationOneDown() - hoc22.cursorMoveOrientationOneLeft() - hoc22.cursorMoveOrientationOneRight() + hoc22.cursorMoveOrientationOneUp(1) + hoc22.cursorMoveOrientationOneDown(1) + hoc22.cursorMoveOrientationOneLeft(1) + hoc22.cursorMoveOrientationOneRight(1) hoc22.placeBlock() for (let index = 0; index < 4; index++) { } @@ -23,15 +23,15 @@ Move the cursor along the bookcase to select a position using the ``||hoc22.curs ```template for (let index = 0; index < 6; index++) { hoc22.placeBlock() - hoc22.cursorMoveOrientationOneRight() + hoc22.cursorMoveOrientationOneRight(1) } hoc22.placeBlock() - hoc22.cursorMoveOrientationOneUp() + hoc22.cursorMoveOrientationOneUp(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneUp() + hoc22.cursorMoveOrientationOneUp(1) hoc22.placeBlock() ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/foyer_chess.md b/foyer_chess.md index ae61621..278071e 100644 --- a/foyer_chess.md +++ b/foyer_chess.md @@ -12,22 +12,17 @@ We've freed the king and queen! But the door still isn't opening. They must be i The chessboard represents a grid of dates. Search the room to figure out what dates the king and queen should be on and then use the ``||hoc22.move king ||`` and ``||hoc22.move queen ||`` blocks to move them into their correct positions. ```ghost - hoc22.kingMove(ChessBlockDirection.Forward) - hoc22.queenMove(ChessBlockDirection.Forward) - for (let index = 0; index < 4; index++) { } + hoc22.kingMove(ChessBlockDirection.Forward, 1) + hoc22.queenMove(ChessBlockDirection.Forward, 1) ``` ```template - for (let index = 0; index < 3; index++) { - hoc22.kingMove(ChessBlockDirection.Forward) - } - hoc22.kingMove(ChessBlockDirection.Left) - for (let index = 0; index < 2; index++) { - hoc22.queenMove(ChessBlockDirection.Right) - } - hoc22.queenMove(ChessBlockDirection.Forward) + hoc22.kingMove(ChessBlockDirection.Forward, 3) + hoc22.kingMove(ChessBlockDirection.Left, 1) + hoc22.queenMove(ChessBlockDirection.Right, 2) + hoc22.queenMove(ChessBlockDirection.Forward,1) ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/foyer_mosaic.md b/foyer_mosaic.md index 7cd9cbe..6459302 100644 --- a/foyer_mosaic.md +++ b/foyer_mosaic.md @@ -24,5 +24,5 @@ Use the ``||hoc22.push ||`` blocks to trigger the pistons in ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/kitchen_baking.md b/kitchen_baking.md index 339906c..11a27fe 100644 --- a/kitchen_baking.md +++ b/kitchen_baking.md @@ -25,5 +25,5 @@ Think about the order of operations it takes to make bread. You'd first ``||hoc2 ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/kitchen_feedhouse.md b/kitchen_feedhouse.md index bc26710..45f414e 100644 --- a/kitchen_feedhouse.md +++ b/kitchen_feedhouse.md @@ -12,21 +12,17 @@ The house is hungry! And what better to feed it than apples, salmon, and mushroo Pay attention to how many zombie chefs go by with each ingredient. Use the ``||hoc22.feed house ||`` blocks to feed the house the required amount. ```ghost - hoc22.feedHouseApple() - hoc22.feedHouseSalmon() - hoc22.feedHouseMushroomStew() - for (let index = 0; index < 4; index++) { } + hoc22.feedHouseApple(1) + hoc22.feedHouseSalmon(1) + hoc22.feedHouseMushroomStew(1) ``` ```template - hoc22.feedHouseApple() - hoc22.feedHouseApple() - hoc22.feedHouseSalmon() - hoc22.feedHouseSalmon() - hoc22.feedHouseMushroomStew() - hoc22.feedHouseMushroomStew() + hoc22.feedHouseApple(2) + hoc22.feedHouseSalmon(3) + hoc22.feedHouseMushroomStew(2) ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/kitchen_plate.md b/kitchen_plate.md index 473f9ae..7e91af1 100644 --- a/kitchen_plate.md +++ b/kitchen_plate.md @@ -25,5 +25,5 @@ Use the ``||hoc22.swap side||`` blocks two swap the dishes until everyon ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/poc1a.md b/poc1a.md index f828611..28a3e9b 100644 --- a/poc1a.md +++ b/poc1a.md @@ -11,28 +11,17 @@ Drop the right amount of colored blocks Use ``||hoc22.summonColoredBlock ||`` ```ghost - hoc22.summonColoredBlockMagenta() - hoc22.summonColoredBlockLightBlue() - hoc22.summonColoredBlockYellow() - hoc22.summonColoredBlockLime() - for (let index = 0; index < 4; index++) { - - } + hoc22.summonColoredBlockMagenta(1) + hoc22.summonColoredBlockLightBlue(1) + hoc22.summonColoredBlockYellow(1) + hoc22.summonColoredBlockLime(1) ``` ```template - for (let index = 0; index < 1; index++) { - hoc22.summonColoredBlockYellow() - } - for (let index = 0; index < 5; index++) { - hoc22.summonColoredBlockLightBlue() - } - for (let index = 0; index < 3; index++) { - hoc22.summonColoredBlockMagenta() - } - for (let index = 0; index < 1; index++) { - hoc22.summonColoredBlockLime() - } + hoc22.summonColoredBlockYellow(1) + hoc22.summonColoredBlockLightBlue(5) + hoc22.summonColoredBlockMagenta(3) + hoc22.summonColoredBlockLime(1) ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/poc1b.md b/poc1b.md index f5d93c2..b480b1d 100644 --- a/poc1b.md +++ b/poc1b.md @@ -11,18 +11,14 @@ Make the scale add up to 10 lbs Use ``||hoc22.summonWeight ||`` ```ghost - hoc22.summonWeightChicken() - hoc22.summonWeightCow() - hoc22.summonWeightSheep() - for (let index = 0; index < 4; index++) { - - } + hoc22.summonWeightChicken(1) + hoc22.summonWeightCow(1) + hoc22.summonWeightSheep(1) ``` ```template - for (let index = 0; index < 4; index++) { - hoc22.summonWeightChicken() - } + hoc22.summonWeightChicken(4) + hoc22.summonWeightSheep(1) ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/poc1c.md b/poc1c.md index 0cf2be0..30c056a 100644 --- a/poc1c.md +++ b/poc1c.md @@ -20,5 +20,5 @@ Use ``||hoc22.agent move||`` ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/study_levers.md b/study_levers.md index 2429972..45538f3 100644 --- a/study_levers.md +++ b/study_levers.md @@ -25,5 +25,5 @@ Something about those colored carpets seem weird. Use the ``||hoc22.teleport to ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/study_mirror.md b/study_mirror.md index 6a4b65d..fbce70f 100644 --- a/study_mirror.md +++ b/study_mirror.md @@ -12,30 +12,29 @@ Things in the mirror appear differently than in the room. Find all the differenc Move the cusor above the fireplace using ``||hoc22.cursor move ||`` to select a position and ``||hoc22.place block||`` to place a block in that position. ```ghost - hoc22.cursorMoveOrientationOneUp() - hoc22.cursorMoveOrientationOneDown() - hoc22.cursorMoveOrientationOneLeft() - hoc22.cursorMoveOrientationOneRight() + hoc22.cursorMoveOrientationOneUp(1) + hoc22.cursorMoveOrientationOneDown(1) + hoc22.cursorMoveOrientationOneLeft(1) + hoc22.cursorMoveOrientationOneRight(1) hoc22.placeBlock() - for (let index = 0; index < 4; index++) { } ``` ```template hoc22.placeBlock() - hoc22.cursorMoveOrientationOneDown() + hoc22.cursorMoveOrientationOneDown(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneLeft() + hoc22.cursorMoveOrientationOneLeft(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneLeft() + hoc22.cursorMoveOrientationOneLeft(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneLeft() + hoc22.cursorMoveOrientationOneLeft(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneLeft() + hoc22.cursorMoveOrientationOneLeft(1) hoc22.placeBlock() - hoc22.cursorMoveOrientationOneUp() + hoc22.cursorMoveOrientationOneUp(1) hoc22.placeBlock() ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/study_move.md b/study_move.md index 9622616..6c959de 100644 --- a/study_move.md +++ b/study_move.md @@ -21,5 +21,5 @@ Adjust the direction variable and how many blocks down it moves in order to reac ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.68 ``` \ No newline at end of file diff --git a/test.md b/test.md index 2e9920a..e8f0f1b 100644 --- a/test.md +++ b/test.md @@ -76,5 +76,5 @@ Use ``||hoc22.cursorMove ||`` ``` ```package -minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.64 +minecraft-hoc22=github:ReWrite-Media/hoc22-ts#v0.2.65 ``` \ No newline at end of file