Skip to content

Commit

Permalink
leveldevil
Browse files Browse the repository at this point in the history
  • Loading branch information
RedNotSus committed Jan 5, 2025
1 parent 60f02c2 commit aab7376
Show file tree
Hide file tree
Showing 61 changed files with 4,867 additions and 457 deletions.
2 changes: 1 addition & 1 deletion .vscode/embed.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
" <div class=\"addisplay\" id=\"addisplay\">",
" <ins id=\"adElement\"></ins>",
" <div class=\"script-container\"></div>",
" <div class=\"ad1\">Advertisement</div>",
" <div class=\"adtext\">Advertisement</div>",
"",
" </div>",
" <script>",
Expand Down
6 changes: 6 additions & 0 deletions static/assets/json/load/games.json
Original file line number Diff line number Diff line change
Expand Up @@ -1211,6 +1211,12 @@
"image": "/misc/slither-io/img.webp",
"usesProxy": true
},
{
"name": "Level Devil",
"url": "/misc/play/leveldevil.html",
"image": "/misc/leveldevil/img.webp",
"usesProxy": false
},
{
"name": "Slope",
"url": "/misc/play/slope.html",
Expand Down
4 changes: 2 additions & 2 deletions static/assets/json/quotes.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"did you unfollow vexbolts",
"follow us on tiktok @55gms_com",
"subscribe to 55gms on youtube @55gms",
"watch best games on gms movies (press media)",
"watch beast games on gms movies (press media)",
"don't forget to do your homework",
"made with css!",
"made with html!",
Expand All @@ -24,7 +24,7 @@
"velera sucks",
"55gms >> interstellar",
"55gms is better than szvys arcade",
"szvys arcade sucks",
"szvy central sucks",
"55gms is better than frogiees arcade",
"who remembers 5gms.tk"
]
1 change: 1 addition & 0 deletions static/misc/leveldevil/Level Devil.js

Large diffs are not rendered by default.

Binary file added static/misc/leveldevil/assets/sfx/sound-565.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-566.mp3
Binary file not shown.
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-720.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-721.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-726.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-727.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-730.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-731.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-732.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-733.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-734.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-735.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-736.mp3
Binary file not shown.
Binary file added static/misc/leveldevil/assets/sfx/sound-741.mp3
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file added static/misc/leveldevil/img.webp
Binary file not shown.
63 changes: 63 additions & 0 deletions static/misc/leveldevil/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>Level Devil</title>
<meta id="viewport" name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="canonical" href="https://www.snokido.com/game/level-devil" />
<meta name="robots" content="noindex,nofollow" />
<link rel="shortcut icon" type="image/png" href="./favicon.png">
<script src="./poki-sdk.js"></script>
<script src="./Level Devil.js"></script>
<script>
window.addEventListener("touchmove", function (event) {
event.preventDefault();
}, {
capture: false,
passive: false
});
if (typeof window.devicePixelRatio != 'undefined' && window.devicePixelRatio > 2) {
var meta = document.getElementById("viewport");
meta.setAttribute('content', 'width=device-width, initial-scale=' + (2 / window.devicePixelRatio) + ', user-scalable=no');
}
</script>
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}

#openfl-content {
background: #000000;
width: 100%;
height: 100%;
}

#progress {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;
}
</style>
</head>

<body>
<noscript>This webpage makes extensive use of JavaScript. Please enable JavaScript in your web browser to view this
page.</noscript>
<div id="openfl-content"></div>
<script>
lime.embed("Level Devil", "openfl-content", 854, 480, {
parameters: {}
});
</script>
</body>

</html>
Binary file added static/misc/leveldevil/lib/default.pak
Binary file not shown.
Loading

0 comments on commit aab7376

Please sign in to comment.