This commit is contained in:
Yannik Schmidt
2020-10-07 22:24:13 +02:00
commit 6453e895de
11 changed files with 14028 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
node_modules/
*.swp

1
index.html Normal file
View File

@@ -0,0 +1 @@

13896
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "junglers-fault",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}

17
public/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Find out if it is really the junglers fault you died."/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>IITJF</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>

3
public/robots.txt Normal file
View File

@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

30
questions.txt Normal file
View File

@@ -0,0 +1,30 @@
So you just died in your lane, let's find out if it was the junglers fault.
Was the enemy jungler involved in your death?
-> No IT WAS YOUR FUCKING FAULT, grow the fuck up stop blaming your teammates
Did you see the enemy jungler walking over a ward and you didn't see or ignored it?
-> Yes IT WAS YOUR FUCKING fault, watch the goddamn minimap for fuck sake
Was the enemy lane playing suspeciously before the gank?
-> Yes IT WAS OYUR FUCKING fault, pay attention, stop autopilotion
Were you standing in an uncomfortable position that made a gank easy?
-> IT WAS YOUR FUCKING FAUL, study the fuck up on your shit wavemanagement
Do you have a scaling/farming jungle like shyyvanna ok a jungler that generally doesn't before hitting a certain level like nocture?
-> Yes
Did you get dove?
-> Yes
Did you ping for help before getting dove and your jungler ignored it?
-> Yes
Did your jungler make a cross map play or get an objective?
-> Yes If your jungler makes a crossmap play it is your fault if you die for it, either your death was worth it because the enemies didn't go to the objective or it was preventable because your could have left your tower but decided to greed for the wave.
-> No
Do you want to win your game?
-> Yes -> Nobody is perfect man, sometimes junglers make mistakes, just like laners sometimes die in 1v1 or 2v2s, be kind to your jungler and try your best to win the game.
-> No -> flame the shit out of that trash and tell him to uninstall the game or play yuumi for the resst of his worthless life.

0
src/App.css Normal file
View File

21
src/App.js Normal file
View File

@@ -0,0 +1,21 @@
import React from 'react';
import './App.css';
function buttonsForState(state){
return (
<button>Test</button>
);
}
function Dialog(state) {
return (
<div className="container">
<header>
"text for state logo"
</header>
{buttonsForState(state)}
</div>
);
}
export default Dialog;

13
src/index.css Normal file
View File

@@ -0,0 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

11
src/index.js Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);