Skip to content

Commit 85197f7

Browse files
author
wheesoul
committed
JsCode added
1 parent 136b654 commit 85197f7

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// TODO: Create 4-String variables to introduce develop your story.
2+
// YOUR CODE GOES HERE
3+
4+
let firstWords = 'Hi there.';
5+
let name = 'Trashman';
6+
let enemy = 'personified pieces of really smelly trash';
7+
let location = 'New York';
8+
9+
// TODO: Create 3-String variables to set the time period of your story or discuss other number elements.
10+
// YOUR CODE GOES HERE
11+
12+
let numOfEnemies = 2;
13+
let time = 3;
14+
let numOfPeopleWalkBy = 100;
15+
let year = 1998;
16+
17+
18+
19+
// TODO: Create 1-Array variable to show a collection of items your character might have.
20+
// YOUR CODE GOES HERE
21+
22+
let defense = [ 'pepper spray', 'brass knuckles', 'lighter'];
23+
24+
// TODO: Create 1-Boolean variable to demonstrate a true or false scenario.
25+
// YOUR CODE GOES HERE
26+
27+
let mostPowerful = true;
28+
29+
// TODO: Print your story to the console.
30+
// YOUR CODE GOES HERE
31+
32+
console.log( firstWords + " traveler... I assume you've come down here to see me- to see the almighty" + name + "." + "\n");
33+
console.log("I understand you must be petrified with fear, seeing as you aren't speaking at all, may be due to my ghastly appearance... nevertheless I should tell you the greatest" + "\n");
34+
console.log("story you shall ever hear in your life:" + "\n");
35+
console.log("the story of my transformation into the " + name + ".");
36+
console.log("the year was " + year + " and I had just finished eating my bagel, at the same time I did everyday, " + time + " oclock.");
37+
console.log("The repition must have brought me to a false state of comfort, a sense of trust in the city of " + location + " that I had never truly recieved back");
38+
console.log("It's why I wasn't able to see them, the " + enemy + "creeping up to my as I ate my bagel in the subway.");
39+
console.log("As soon as I had finished the last bite of my delicious, creamy, fufilling bagel, the " + numOfEnemies + enemy + "attacked.");
40+
console.log("Suddenly, I was engulfed by the worst smelling pieces of trash I had ever encountered in my years as a regular, non-trash human.");
41+
console.log("Still, I was able to reach into my bag and attempt to grab a weapon, but the only thing I had on me was my " + defense[2] + " .");
42+
console.log("I believed it was my only way out, but oh how wrong I was... as I ignighted the flame on a piece of the beasts, I suddenly realized they weren't going to move away from me, the trash, plastic, newspapers, were all growing closer to my skin, as the flames burned.")
43+
console.log("I writhed, trashed, even stopped, dropped, and rolled, but to no avail, the trashed melted me, combined with my skin, and I lay, ashamed, understanding that this would be with me for the rest of my life.");
44+
console.log("I knew I wasn't dying, the pain had stopped at somepoint, and I opened my eyes to see my suroundings.");
45+
console.log("At least " + numOfPeopleWalkBy + " people walked past my deformed figure, not a single one ever calling the police or hospital, and my fingers were stuck together and webbed with plastic, I couldn't do anything.");
46+
console.log("I vowed that day in " + year + " to never let myself be victimized like that again, to become powerful enough that the untrashed humans in " + location + " would face my wrath.");
47+
console.log("So yes, it is " + mostPowerful + " I will be seeking revenge soon, but there is nothing you can do to stop it.");

0 commit comments

Comments
 (0)