Skip to content

Commit adae7c2

Browse files
author
avscs
committed
added soccer random and volley random
1 parent 886500c commit adae7c2

File tree

131 files changed

+13922
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+13922
-1
lines changed

config.jsonc

+11-1
Original file line numberDiff line numberDiff line change
@@ -696,6 +696,11 @@
696696
"aliases": [],
697697
"categories": []
698698
},
699+
"Soccer Random": {
700+
"path": "soccer-random",
701+
"aliases": [],
702+
"categories": []
703+
},
699704
"Stickman Hook": {
700705
"path": "stickman-hook",
701706
"aliases": [],
@@ -886,6 +891,11 @@
886891
"aliases": [],
887892
"categories": []
888893
},
894+
"Volley Random": {
895+
"path": "volley-random",
896+
"aliases": [],
897+
"categories": []
898+
},
889899
"Web OSU": {
890900
"path": "web-osu",
891901
"aliases": [],
@@ -912,7 +922,7 @@
912922
},
913923
"config": {
914924
"proxy": true, // proxy only works when self-hosted
915-
"proxyPath": "https://bcd.ens.org" // absolute or relative path to proxy; proxy must be set to true for this setting to have any effect.
925+
"proxyPath": "https://cde.ens.org" // absolute or relative path to proxy; proxy must be set to true for this setting to have any effect.
916926
// if you are using VioletGG2, all you need to do set proxy to true
917927
// proxyPath is already set for you if you are using VioletGG2
918928
}

games/soccer-random/appmanifest.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "Soccer Random",
3+
"short_name": "Soccer Random",
4+
"description": "Random Physics Soccer",
5+
"start_url": "index.html",
6+
"display": "fullscreen",
7+
"orientation": "any",
8+
"background_color": "#ffffff",
9+
"icons": []
10+
}

games/soccer-random/box2d.wasm

241 KB
Binary file not shown.

games/soccer-random/box2d.wasm.js

+577
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

games/soccer-random/data.json

+1
Large diffs are not rendered by default.
711 Bytes
603 Bytes
603 Bytes
603 Bytes
235 Bytes
152 Bytes
192 Bytes
235 Bytes
117 Bytes
271 Bytes
307 Bytes
195 Bytes
288 Bytes
307 Bytes
256 Bytes
283 Bytes
154 Bytes
3.9 KB
765 Bytes
108 Bytes
142 Bytes
89 Bytes
498 Bytes
271 Bytes

games/soccer-random/index.html

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Soccer Random</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
7+
8+
<meta name="generator" content="Scirra Construct">
9+
<meta name="author" content="RHM Interactive">
10+
<meta name="description" content="Random Physics Soccer">
11+
<link rel="manifest" href="appmanifest.json">
12+
13+
<link rel="stylesheet" href="style.css">
14+
15+
<script>
16+
window.addEventListener("keydown", function(e) {
17+
// space and arrow keys
18+
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) {
19+
e.preventDefault();
20+
}
21+
}, false);
22+
</script>
23+
24+
<script async
25+
data-ad-client="ca-pub-8349441957149316"
26+
data-ad-channel="9976299074"
27+
data-ad-frequency-hint="30s"
28+
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
29+
crossorigin="anonymous">
30+
</script>
31+
32+
<script>
33+
window.adsbygoogle = window.adsbygoogle || [];
34+
const adBreak = adConfig = function(o) {adsbygoogle.push(o);}
35+
adConfig({
36+
preloadAdBreaks: 'on',
37+
onReady: () => {
38+
console.log("onReady")
39+
},
40+
});
41+
</script>
42+
43+
<script>
44+
function CallInterstitialAds()
45+
{
46+
adBreak({
47+
type: 'next',
48+
name: 'restart-game',
49+
beforeAd: () => {
50+
console.log("Ad Started!");
51+
c3_callFunction("adStarted");
52+
},
53+
afterAd: () => {
54+
c3_callFunction("onClose");
55+
console.log("After Ad Finished");
56+
},
57+
adBreakDone: () => {
58+
console.log('adBreakDone');
59+
c3_callFunction("onClose");
60+
}
61+
});
62+
}
63+
</script>
64+
65+
</head>
66+
<body>
67+
68+
<script>
69+
if (location.protocol.substr(0, 4) === "file")
70+
{
71+
alert("Web exports won't work until you upload them. (When running on the file: protocol, browsers block many features from working for security reasons.)");
72+
}
73+
</script>
74+
<script src="box2d.wasm.js"></script>
75+
<noscript>
76+
<div id="notSupportedWrap">
77+
<h2 id="notSupportedTitle">This content requires JavaScript</h2>
78+
<p class="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p>
79+
</div>
80+
</noscript>
81+
<script src="scripts/supportcheck.js"></script>
82+
<script src="scripts/offlineclient.js" type="module"></script>
83+
<script src="scripts/main.js" type="module"></script>
84+
<script src="scripts/register-sw.js" type="module"></script>
85+
86+
</body>
87+
</html>
1.83 KB
Binary file not shown.

games/soccer-random/media/bup.webm

3.28 KB
Binary file not shown.
1.56 KB
Binary file not shown.

games/soccer-random/media/file.webm

5.14 KB
Binary file not shown.

games/soccer-random/media/goasoc.webm

21.8 KB
Binary file not shown.
12.2 KB
Binary file not shown.
37.6 KB
Binary file not shown.

games/soccer-random/media/jump.webm

1.83 KB
Binary file not shown.

games/soccer-random/media/menu.webm

41 KB
Binary file not shown.

games/soccer-random/media/music.webm

332 KB
Binary file not shown.

games/soccer-random/media/press.webm

3.14 KB
Binary file not shown.

games/soccer-random/media/refsoc.webm

6.11 KB
Binary file not shown.

games/soccer-random/media/start.webm

20.9 KB
Binary file not shown.

games/soccer-random/media/win.webm

29 KB
Binary file not shown.

games/soccer-random/media/wrong.webm

5.19 KB
Binary file not shown.

games/soccer-random/offline.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"version":1699277624299,"fileList":["box2d.wasm.js","box2d.wasm","scripts/c3runtime.js","data.json","style.css","scripts/offlineclient.js","images/shared-0-sheet0.png","images/shared-0-sheet1.png","images/shared-0-sheet2.png","images/shared-0-sheet3.png","images/ballline-sheet0.png","images/rightshoe-sheet0.png","images/hair-sheet0.png","images/rightshort-sheet0.png","images/leftshort-sheet0.png","images/righttshirt-sheet0.png","images/lefttshirt-sheet0.png","images/leftshoe-sheet0.png","images/tshirt-sheet0.png","images/groundtile-sheet0.png","images/fencetile-sheet0.png","images/grasstile-sheet0.png","images/cloudtile-sheet0.png","images/buildingtile-sheet0.png","images/startile-sheet0.png","images/portraitcovertile-sheet0.png","images/titlebg-sheet0.png","images/game_bg-sheet0.png","images/groundtilesnow-sheet0.png","images/buildingtile2-sheet0.png","images/buildingtile3-sheet0.png","images/titlechars-sheet0.png","images/groundtileplaj-sheet0.png","images/seatile-sheet0.png","scripts/opus.wasm.js","scripts/opus.wasm.wasm","scripts/main.js","scripts/dispatchworker.js","scripts/jobworker.js","scripts/supportcheck.js","scripts/project/FrameRateLimit.js","scripts/project/scriptsInEvents.js","media/buttonx.webm","media/start.webm","media/win.webm","media/jump.webm","media/intro-button.webm","media/intro-sound.webm","media/bup.webm","media/bellsoc.webm","media/goasoc.webm","media/refsoc.webm","media/file.webm","media/wrong.webm","media/menu.webm","media/press.webm","media/music.webm","scripts/register-sw.js"]}

0 commit comments

Comments
 (0)