Skip to content

Commit

Permalink
Merge pull request #130 from Cars-n/dev
Browse files Browse the repository at this point in the history
spelling and height problems
  • Loading branch information
eHag-FRU authored May 9, 2024
2 parents 4e61620 + c0ee952 commit 799297a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sketch.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let rightWalking1, rightWalking2, rightWalking3, rightWalking4, rightWalking5, r
let downWallking1, downWalking2, downWalking3, downWalking4, downWalking5, downWalking6, downWalking7, downWalking8, downWalking9;

// MENU, PLAYING, INVENTORY, PAUSED
let d,e,l,o,s,i,r = false;
let d,e,l,o,z,i,r = false;
let delozierMode = false;
let GIANTEYESPAWNED = false;
let GAMESTATE = "MENU";
Expand Down Expand Up @@ -205,11 +205,11 @@ function draw() {
if(kb.presses("e")) e = true;
if(kb.presses("l")) l = true;
if(kb.presses("o")) o = true;
if(kb.presses("s")) s = true;
if(kb.presses("z")) z = true;
if(kb.presses("i")) i = true;
if(kb.presses("r")) r = true;

if(!delozierMode && d && e && l && o && s && i && r){
if(!delozierMode && d && e && l && o && r && i && z){
textBox("Delozier Mode Activated You now have 1000000 health")
delozierMode = true;
player.health = 1000000;
Expand Down
2 changes: 1 addition & 1 deletion src/js/Screens.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class BlinkViewer {
this.hideMenu()
CURRENTGAMESTATE = 'PLAYING';
let text = "The trees, gnarled and black against the dying light, seemed to reach for you with skeletal fingers. The wind, a mournful sigh through the pines, whispered of things long dead and best forgotten. You stood there, at the foot of the mansion, your breath coming in ragged gasps, the taste of fear metallic on your tongue. The crash, the figure on the road, it was all a kaleidoscope of terror in your mind. Now, this house, looming like a tombstone against the bruised sky, offered sanctuary. Or did it? A flicker of movement in a shattered window, a shadow playing tricks? Or was it the figure, somehow transported, already inside, waiting for you? You knew the car was useless, a mangled wreck offering no escape. But the woods, with their rustling secrets and unseen eyes, were no haven either. The mansion, for all its haunted stillness, was your only option. Taking a shuddering breath, you stepped forward, each footfall echoing in the unnatural hush. The door, ancient and weathered, creaked open as if it had been waiting for you, beckoning you into the darkness. The smell hit you first, a mix of dust and decay, a hint of something sickly sweet underneath. And then the cold, seeping into your bones, a chill that went deeper than the autumn air. You were trapped, caught in a game you didn't understand, the rules whispered by unseen entities. Escape. That was the only goal. Escape the mansion, escape the figure, escape the darkness that seemed to crawl beneath your skin. But how? The answer, like everything else in this place, was shrouded in shadows.";
textBox(text, 25, "1200px", "200px", false)
textBox(text, 25, "1200px", "25px", false)
setTimeout(() =>{
textBox("You have a flashlight that you brought from your car, to view it press e.")
}, 70000);
Expand Down

0 comments on commit 799297a

Please sign in to comment.