From 34a4d3db6f1eeda92f61f2830b440c4e1b98b368 Mon Sep 17 00:00:00 2001 From: Samantha Date: Mon, 7 Oct 2024 20:00:07 -0400 Subject: [PATCH] updated instructions and readme --- README.md | 29 +++++++++++++++++++++-------- index.html | 2 +- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a277d93..e686a3f 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,27 @@ -# jewel-thief +# 💎 Jewel Theif 💎 Interactive Jewel stealing game -REMINDERS FOR NEXT YEAR: -Fix spacing issue of editor and game space -fix the walls and phasing trough them, maybe just redo the walls with a boolean isWall variable -link levels together maybe, like get the jewel and go through a door to get to the second level +## 🕹ī¸ How to Play +Use the code box to code movements left, right, up, and down to move your robber and steal the jewel! +Type: -To do still: -level generation with text file to make the boxes -fix movement +'moveRight()' to move to the right + +'moveLeft()' to move to the left + +'moveDown()' to move down + +'moveUp()' to move up. + + +Tip: Use loops to decrease the amount of code you have to write! +Use loop syntax: [# times ... end] with # being a number. + + +Tip: Click 'Toggle Arrow Keys' to be able to use your arrow keys and unlock all levels! + + +## đŸ’ģ Development Run with: python -m http.server for Windows/Linux diff --git a/index.html b/index.html index ea82361..018c609 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@

Instructions:

Tips:

Tip: Use loops to decrease the amount of code you have to write!

-

Use loop syntax: [#times ... end] with # being a number.

+

Use loop syntax: [# times ... end] with # being a number.

Tip: Click 'Toggle Arrow Keys' to be able to use your arrow keys.