mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 10:32:08 -05:00
new games woahoah
This commit is contained in:
parent
ffb161547d
commit
c9e1db726b
@ -1408,5 +1408,50 @@
|
|||||||
"name": "Idle Research",
|
"name": "Idle Research",
|
||||||
"directory": "idleresearch",
|
"directory": "idleresearch",
|
||||||
"image": "cover-1660205761867.png"
|
"image": "cover-1660205761867.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "10 Minutes Till Dawn",
|
||||||
|
"directory": "10minutestilldawn",
|
||||||
|
"image": "splash.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Friday Night Funkin: Mid Fight Masses",
|
||||||
|
"directory": "fnfmidfight",
|
||||||
|
"image": "fnfmidfight.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Papas Donuteria",
|
||||||
|
"directory": "papasdonuteria",
|
||||||
|
"image": "papasdonuteria.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Papas Pancakeria",
|
||||||
|
"directory": "papaspancakeria",
|
||||||
|
"image": "papaspancakeria.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Papas Scooperia",
|
||||||
|
"directory": "papasscooperia",
|
||||||
|
"image": "papasscooperia.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Papas Tacomia",
|
||||||
|
"directory": "papastacomia",
|
||||||
|
"image": "papastacomia.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Territorial.io",
|
||||||
|
"directory": "territorialio",
|
||||||
|
"image": "territorialio.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Theme Hotel",
|
||||||
|
"directory": "themehotel",
|
||||||
|
"image": "themehotel.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Thumb Fighter",
|
||||||
|
"directory": "thumbfighter",
|
||||||
|
"image": "thumbfighter.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
BIN
semag/.DS_Store
vendored
Normal file
BIN
semag/.DS_Store
vendored
Normal file
Binary file not shown.
Binary file not shown.
16
semag/10minutestilldawn/Build/10MinutesTillDawnWebGL.json
Normal file
16
semag/10minutestilldawn/Build/10MinutesTillDawnWebGL.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"companyName": "Flanne",
|
||||||
|
"productName": "MinutesTillDawn",
|
||||||
|
"productVersion": "0.1",
|
||||||
|
"dataUrl": "10MinutesTillDawnWebGL.data.unityweb",
|
||||||
|
"wasmCodeUrl": "10MinutesTillDawnWebGL.wasm.code.unityweb",
|
||||||
|
"wasmFrameworkUrl": "10MinutesTillDawnWebGL.wasm.framework.unityweb",
|
||||||
|
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"],
|
||||||
|
"webglContextAttributes": { "preserveDrawingBuffer": false },
|
||||||
|
"splashScreenStyle": "Dark",
|
||||||
|
"backgroundColor": "#231F20",
|
||||||
|
"cacheControl": { "default": "must-revalidate" },
|
||||||
|
"developmentBuild": false,
|
||||||
|
"multithreading": false,
|
||||||
|
"unityVersion": "2019.4.21f1"
|
||||||
|
}
|
Binary file not shown.
File diff suppressed because one or more lines are too long
4
semag/10minutestilldawn/Build/UnityLoader.js
Normal file
4
semag/10minutestilldawn/Build/UnityLoader.js
Normal file
File diff suppressed because one or more lines are too long
BIN
semag/10minutestilldawn/background.png
Normal file
BIN
semag/10minutestilldawn/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
BIN
semag/10minutestilldawn/icon.png
Normal file
BIN
semag/10minutestilldawn/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
87
semag/10minutestilldawn/index.html
Normal file
87
semag/10minutestilldawn/index.html
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-us">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>10 Minutes Till Dawn</title>
|
||||||
|
<script src="/js/all.js"></script>
|
||||||
|
<link rel="icon" type="image/png" href="/favicon.ico">
|
||||||
|
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script src="Build/UnityLoader.js"></script>
|
||||||
|
<script>
|
||||||
|
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/10MinutesTillDawnWebGL.json");
|
||||||
|
var scaleToFit;
|
||||||
|
try {
|
||||||
|
scaleToFit = !!JSON.parse("");
|
||||||
|
} catch (e) {
|
||||||
|
scaleToFit = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onResize() {
|
||||||
|
var canvas = gameInstance.Module.canvas;
|
||||||
|
var container = gameInstance.container;
|
||||||
|
var w;
|
||||||
|
var h;
|
||||||
|
|
||||||
|
if (scaleToFit) {
|
||||||
|
w = window.innerWidth;
|
||||||
|
h = window.innerHeight;
|
||||||
|
|
||||||
|
var r = 675 / 1200;
|
||||||
|
|
||||||
|
if (w * r > window.innerHeight) {
|
||||||
|
w = Math.min(w, Math.ceil(h / r));
|
||||||
|
}
|
||||||
|
h = Math.floor(w * r);
|
||||||
|
} else {
|
||||||
|
w = 1200;
|
||||||
|
h = 675;
|
||||||
|
}
|
||||||
|
|
||||||
|
container.style.width = canvas.style.width = w + "px";
|
||||||
|
container.style.height = canvas.style.height = h + "px";
|
||||||
|
container.style.top = Math.floor((window.innerHeight - h) / 2) + "px";
|
||||||
|
container.style.left = Math.floor((window.innerWidth - w) / 2) + "px";
|
||||||
|
}
|
||||||
|
window.addEventListener("resize", onResize);
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
background: #000;
|
||||||
|
background: ;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
overflow: visible;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#gameContainer {
|
||||||
|
background: transparent !important;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#gameContainer canvas {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#gameContainer[data-pixelated="true"] canvas {
|
||||||
|
image-rendering: optimizeSpeed;
|
||||||
|
image-rendering: -webkit-crisp-edges;
|
||||||
|
image-rendering: -moz-crisp-edges;
|
||||||
|
image-rendering: -o-crisp-edges;
|
||||||
|
image-rendering: crisp-edges;
|
||||||
|
image-rendering: -webkit-optimize-contrast;
|
||||||
|
image-rendering: optimize-contrast;
|
||||||
|
image-rendering: pixelated;
|
||||||
|
-ms-interpolation-mode: nearest-neighbor;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body onload="onResize();">
|
||||||
|
<div id="gameContainer" data-pixelated="true"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
semag/10minutestilldawn/media.png
Normal file
BIN
semag/10minutestilldawn/media.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
semag/10minutestilldawn/splash.png
Normal file
BIN
semag/10minutestilldawn/splash.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
semag/fnfmidfight/.DS_Store
vendored
Normal file
BIN
semag/fnfmidfight/.DS_Store
vendored
Normal file
Binary file not shown.
1
semag/fnfmidfight/Funkin.js
Normal file
1
semag/fnfmidfight/Funkin.js
Normal file
File diff suppressed because one or more lines are too long
BIN
semag/fnfmidfight/assets/.DS_Store
vendored
Normal file
BIN
semag/fnfmidfight/assets/.DS_Store
vendored
Normal file
Binary file not shown.
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-alt.json
Normal file
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-alt.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-alt1.json
Normal file
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-alt1.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-easy.json
Normal file
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-hard.json
Normal file
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo.json
Normal file
1
semag/fnfmidfight/assets/data/bopeebo/bopeebo.json
Normal file
File diff suppressed because one or more lines are too long
21
semag/fnfmidfight/assets/data/characterList.txt
Normal file
21
semag/fnfmidfight/assets/data/characterList.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
bf
|
||||||
|
dad
|
||||||
|
gf
|
||||||
|
spooky
|
||||||
|
pico
|
||||||
|
mom
|
||||||
|
mom-car
|
||||||
|
bf-car
|
||||||
|
parents-christmas
|
||||||
|
monster-christmas
|
||||||
|
bf-christmas
|
||||||
|
gf-christmas
|
||||||
|
monster
|
||||||
|
bf-pixel
|
||||||
|
senpai
|
||||||
|
senpai-angry
|
||||||
|
spirit
|
||||||
|
sarvente
|
||||||
|
sarvente-dark
|
||||||
|
sarvente-lucifer
|
||||||
|
ruv
|
32
semag/fnfmidfight/assets/data/controls.txt
Normal file
32
semag/fnfmidfight/assets/data/controls.txt
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
setUP
|
||||||
|
W
|
||||||
|
setUP (ALTERNATE)
|
||||||
|
FlxKey.UP
|
||||||
|
setDOWN
|
||||||
|
S
|
||||||
|
setDOWN (ALTERNATE)
|
||||||
|
FlxKey.DOWN
|
||||||
|
setLEFT
|
||||||
|
A
|
||||||
|
setLEFT (ALTERNATE)
|
||||||
|
FlxKey.LEFT
|
||||||
|
setRIGHT
|
||||||
|
D
|
||||||
|
setRIGHT (ALTERNATE)
|
||||||
|
FlxKey.RIGHT
|
||||||
|
setACCEPT
|
||||||
|
Z
|
||||||
|
setACCEPT (ALTERNATE)
|
||||||
|
ENTER
|
||||||
|
setBACK
|
||||||
|
BACKSPACE
|
||||||
|
setBACK (ALTERNATE)
|
||||||
|
ESCAPE
|
||||||
|
setPAUSE
|
||||||
|
P
|
||||||
|
setPAUSE (ALTERNATE)
|
||||||
|
ENTER
|
||||||
|
setRESET
|
||||||
|
R
|
||||||
|
setRESET (ALTERNATE)
|
||||||
|
null
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/dadbattle/dadbattle.json
Normal file
1
semag/fnfmidfight/assets/data/dadbattle/dadbattle.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/data-goes-here.txt
Normal file
1
semag/fnfmidfight/assets/data/data-goes-here.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
semag/fnfmidfight/assets/data/freeplaySonglist.txt
Normal file
1
semag/fnfmidfight/assets/data/freeplaySonglist.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Tutorial
|
1
semag/fnfmidfight/assets/data/fresh/fresh-alt.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh-alt.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/fresh/fresh-alt1.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh-alt1.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/fresh/fresh-easy.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/fresh/fresh-hard.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/fresh/fresh.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/fresh/fresh1.json
Normal file
1
semag/fnfmidfight/assets/data/fresh/fresh1.json
Normal file
File diff suppressed because one or more lines are too long
10
semag/fnfmidfight/assets/data/gospel/dialogue1.dat
Normal file
10
semag/fnfmidfight/assets/data/gospel/dialogue1.dat
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
:ruv:angry:Sorry Sarv.
|
||||||
|
:sarvente:smile:It's fine. it is really.
|
||||||
|
:ruv:angry:...
|
||||||
|
:sarvente:smile:...
|
||||||
|
:sarvente:smile:I'm quite tired of this cat and mouse chase y'know?
|
||||||
|
:sarvente:So I want to let out a little secret of mine. Let's keep this between the four of us okay?
|
||||||
|
:ruv:...?
|
||||||
|
:gf:...?
|
||||||
|
:bf:...?
|
||||||
|
:sarvente:May God forgive you...
|
1
semag/fnfmidfight/assets/data/gospel/dialogue2.dat
Normal file
1
semag/fnfmidfight/assets/data/gospel/dialogue2.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
:sarvente:devil:But I won't.
|
1
semag/fnfmidfight/assets/data/gospel/gospel-alpha.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-alpha.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-alt.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-alt.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-alt1.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-alt1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-easy.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-easy1.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-easy1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-hard.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel-hard1.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel-hard1.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/gospel/gospel1.json
Normal file
1
semag/fnfmidfight/assets/data/gospel/gospel1.json
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
I wish u luck on cheating lmao, better to beat it cuz it IS beatable
|
21
semag/fnfmidfight/assets/data/introText.txt
Normal file
21
semag/fnfmidfight/assets/data/introText.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
amen--to the nun tiddies
|
||||||
|
this is no christian--don't tell ur mom
|
||||||
|
we be rappin verses--bible verses
|
||||||
|
thats him officer--they downloaded this mod
|
||||||
|
we have your homework folder--don't mess with us
|
||||||
|
please follow mike geno--his music is so hot <3
|
||||||
|
friday--mass
|
||||||
|
beware of--ruv.
|
||||||
|
sarvente--supremacy
|
||||||
|
this mod was from made from hardwork--but ninjamuffin is still the og
|
||||||
|
amen--to the pico tiddies
|
||||||
|
a booby trap--that actually catches boodies
|
||||||
|
never gonna--give you up
|
||||||
|
stan Kuro and Geno -- cause I'm Moses who carried the stones
|
||||||
|
Julie says--Orangutan
|
||||||
|
Kuro is--a simp for sarvente
|
||||||
|
We are--banned from church
|
||||||
|
thank you buying--we appreciate ur $0:00
|
||||||
|
follow kawai sprite--r i g h t n o w
|
||||||
|
we love you--newgrounds
|
||||||
|
kris--please use two hands
|
3
semag/fnfmidfight/assets/data/main-view.xml
Normal file
3
semag/fnfmidfight/assets/data/main-view.xml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<vbox style="padding: 5px;">
|
||||||
|
<button text="Click Me!" onclick="this.text='Thanks!'" style="font-size: 24px;" />
|
||||||
|
</vbox>
|
4
semag/fnfmidfight/assets/data/parish/dialogue1.dat
Normal file
4
semag/fnfmidfight/assets/data/parish/dialogue1.dat
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:?:...
|
||||||
|
:sarv:Come on! It's gonna be a big night!
|
||||||
|
:?:...
|
||||||
|
:sarv:sad:This time I really want you coming, I know our differences are a huge gap but..
|
7
semag/fnfmidfight/assets/data/parish/dialogue2.dat
Normal file
7
semag/fnfmidfight/assets/data/parish/dialogue2.dat
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
:sarv:smile::loud:I really want to spend time with you today!
|
||||||
|
:sarv:happy:So you should really get here!
|
||||||
|
:?:... ...
|
||||||
|
:sarv:sad::loud:EXCUSE ME, DON'T BE SALTY
|
||||||
|
:sarv:sad:...That was very unholy of you.
|
||||||
|
:?:...
|
||||||
|
:sarv:smile:*sigh* You know what? Just get here, okay? I'll see you soon, I have some guests over.
|
7
semag/fnfmidfight/assets/data/parish/dialogue3.dat
Normal file
7
semag/fnfmidfight/assets/data/parish/dialogue3.dat
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
:sarvente:smile:Greetings! Sorry for the incovenience, are you interested in joining?
|
||||||
|
:bf:beep beep boop ba
|
||||||
|
:gf::true:Me and my boyfriend were just looking for the bathroom.
|
||||||
|
:sarvente:Awh but it seems like you two seem really good for this place. I'm sure of it!
|
||||||
|
:bf:Beep ba bop beep!
|
||||||
|
:sarvente:Huh?...I didn't quite understand what you said but let me show you why it's really good to join!
|
||||||
|
:bf:Skbeep?
|
1
semag/fnfmidfight/assets/data/parish/parish-alpha.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-alpha.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-alt.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-alt.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-alt1.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-alt1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-easy.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-easy1.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-easy1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-hard.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish-hard1.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish-hard1.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/parish/parish1.json
Normal file
1
semag/fnfmidfight/assets/data/parish/parish1.json
Normal file
File diff suppressed because one or more lines are too long
22
semag/fnfmidfight/assets/data/specialThanks.txt
Normal file
22
semag/fnfmidfight/assets/data/specialThanks.txt
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
wanda
|
||||||
|
fizzd
|
||||||
|
kiddbrute
|
||||||
|
HenryEYES
|
||||||
|
Clone Hero
|
||||||
|
Tom Fulp
|
||||||
|
StuffedWombat
|
||||||
|
mmatt_ugh
|
||||||
|
Squidly
|
||||||
|
Luis
|
||||||
|
GeoKureli
|
||||||
|
Will Blanton
|
||||||
|
SrPelo
|
||||||
|
Austin East
|
||||||
|
Krystin, Kaye-lyn, Cassidy, Mack, Levi, and Jasmine.
|
||||||
|
Laurel
|
||||||
|
bbpanzu
|
||||||
|
Etika
|
||||||
|
Foamymuffin (insert travis scott lyrics here)
|
||||||
|
SiIvaGunner
|
||||||
|
|
||||||
|
BIT BOY - MIKE WELSH
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"song":{"player1":"bf","sectionLengths":[],"notes":[{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[150,5,0],[1050,6,0],[1800,6,0],[600,4,0],[900,7,0],[1650,5,0],[352.5,5,0],[1267.5,6,0],[2175,6,0]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[3450,6,0],[3300,7,0],[2550,7,0],[3000,6,0],[4050,4,0],[4200,7,0],[2767.5,7,0],[3678.75,6,0],[4571.25,4,0]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[5850,6,0],[6000,6,0],[6450,5,0],[4950,7,0],[5400,6,0],[5700,5,0],[6600,4,0],[5193.75,4,0],[6982.5,7,0]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[7200,0,0],[7800,2,0],[8400,3,0]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[9600,0,900],[10800,3,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[12000,0,900],[13200,3,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[14400,0,900],[15600,3,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[16800,0,0],[16800,0,900],[16800,0,900],[18000,3,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[19200,2,900],[20400,1,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[21600,2,0],[22800,1,0],[21600,2,900],[22800,1,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[24000,2,0],[25200,1,0],[24000,2,0],[25200,1,0],[24000,2,900],[25200,1,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[26400,2,0],[27600,1,0],[26400,2,0],[27600,1,0],[26400,2,0],[27600,1,0],[26400,2,900],[27600,1,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[28800,0,900],[30000,2,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[31200,1,900],[32400,3,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[33600,0,0],[34800,2,0],[33600,0,900],[34800,2,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[36000,1,0],[37200,3,0],[36000,1,900],[37200,3,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[38400,1,300],[39000,1,300],[39600,2,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[40800,1,300],[41400,1,300],[42000,3,900]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[43200,1,0],[43800,1,0],[44400,2,0],[43200,1,300],[43800,1,300],[44400,2,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[45600,1,0],[46200,1,0],[46800,3,0],[45600,1,300],[46200,1,300],[46800,3,900]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[48000,1,0],[49800,3,0],[48382.5,2,0],[48671.25,3,0],[48978.75,2,675]],"mustHitSection":false},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[50400,1,0],[52200,3,0],[50775,2,0],[51075,3,0],[51375,2,675]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[52800,3,0],[53467.5,1,0],[54067.5,0,0],[54675,1,0]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[55278.75,2,0],[55882.5,3,0],[56478.75,0,0],[57071.25,2,0]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[[57600,1,750]],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[],"mustHitSection":true},{"typeOfSection":0,"lengthInSteps":16,"sectionNotes":[],"mustHitSection":true},{"sectionNotes":[],"typeOfSection":0,"lengthInSteps":16,"altAnim":false,"mustHitSection":true,"changeBPM":false,"bpm":100},{"sectionNotes":[],"typeOfSection":0,"lengthInSteps":16,"altAnim":false,"mustHitSection":true,"changeBPM":false,"bpm":100},{"lengthInSteps":16,"typeOfSection":0,"sectionNotes":[],"altAnim":false,"bpm":100,"changeBPM":false,"mustHitSection":true},{"sectionNotes":[],"typeOfSection":0,"lengthInSteps":16,"altAnim":false,"mustHitSection":true,"changeBPM":false,"bpm":100},{"lengthInSteps":16,"altAnim":false,"typeOfSection":0,"sectionNotes":[],"bpm":100,"changeBPM":false,"mustHitSection":true}],"player2":"gf","song":"Tutorial-Remix","validScore":true,"sections":0,"needsVoices":false,"bpm":100,"speed":1}}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"song":{"sectionLengths":[],"player1":"bf","player2":"gf","notes":[{"sectionNotes":[[150,5,0],[300,5,0],[1050,6,0],[1200,6,0],[1800,6,0],[2100,6,0],[600,4,0],[900,7,0],[1650,5,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[3450,6,0],[3600,6,0],[3300,7,0],[2550,7,0],[2700,7,0],[3000,6,0],[4050,4,0],[4200,7,0],[4500,4,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[5850,6,0],[6000,6,0],[6450,5,0],[4950,7,0],[5100,4,0],[5400,6,0],[5700,5,0],[6600,4,0],[6900,7,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[7200,0,0],[7800,2,0],[8400,3,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[10650,0,0],[11850,3,0],[9600,0,900],[10800,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[13050,0,0],[12000,0,900],[14250,3,0],[13200,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[15450,0,0],[14400,0,900],[16650,3,0],[15600,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[16800,0,0],[17850,0,0],[17850,0,0],[16800,0,900],[19050,3,0],[17850,0,0],[16800,0,900],[19050,3,0],[18000,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[20250,2,0],[19200,2,900],[21450,1,0],[20400,1,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[21600,2,0],[22800,1,0],[22650,2,0],[21600,2,900],[23850,1,0],[22800,1,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[24000,2,0],[25200,1,0],[24000,2,0],[25200,1,0],[25050,2,0],[24000,2,900],[26250,1,0],[25200,1,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[26400,2,0],[27600,1,0],[26400,2,0],[27600,1,0],[26400,2,0],[27600,1,0],[27450,2,0],[26400,2,900],[28650,1,0],[27600,1,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[29850,0,0],[28800,0,900],[31050,2,0],[30000,2,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[32250,1,0],[31200,1,900],[33450,3,0],[32400,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[33600,0,0],[34800,2,0],[34650,0,0],[33600,0,900],[35850,2,0],[34800,2,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[36000,1,0],[37200,3,0],[37050,1,0],[36000,1,900],[38250,3,0],[37200,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[38400,1,300],[39000,1,300],[39600,2,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[40800,1,300],[41400,1,300],[42000,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[43200,1,0],[43800,1,0],[44400,2,0],[43200,1,300],[43800,1,300],[44400,2,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[45600,1,0],[46200,1,0],[46800,3,0],[45600,1,300],[46200,1,300],[46800,3,900]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[48000,1,0],[49800,3,0],[48300,1,0],[48382.5,2,0],[48600,2,0],[48671.25,3,0],[48900,3,0],[48978.75,2,675]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[50400,1,0],[52200,3,0],[50700,1,0],[50775,2,0],[51000,2,0],[51075,3,0],[51300,3,0],[51375,2,675]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[52800,3,0],[53400,3,0],[53467.5,1,0],[54000,1,0],[54067.5,0,0],[54600,0,0],[54675,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[55200,1,0],[55278.75,2,0],[55800,2,0],[55882.5,3,0],[56400,3,0],[56478.75,0,0],[57000,0,0],[57071.25,2,0],[57540,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[57600,1,750]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"lengthInSteps":16,"typeOfSection":0,"sectionNotes":[],"altAnim":false,"bpm":100,"changeBPM":false,"mustHitSection":true},{"lengthInSteps":16,"typeOfSection":0,"sectionNotes":[],"altAnim":false,"bpm":100,"changeBPM":false,"mustHitSection":true},{"sectionNotes":[],"typeOfSection":0,"lengthInSteps":16,"altAnim":false,"mustHitSection":true,"changeBPM":false,"bpm":100},{"lengthInSteps":16,"altAnim":false,"typeOfSection":0,"sectionNotes":[],"bpm":100,"changeBPM":false,"mustHitSection":true}],"song":"Tutorial-Remix","validScore":true,"sections":0,"needsVoices":false,"speed":1,"bpm":100}}
|
1
semag/fnfmidfight/assets/data/tutorial/tutorial-alt.json
Normal file
1
semag/fnfmidfight/assets/data/tutorial/tutorial-alt.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"song":{"sectionLengths":[],"player1":"bf","player2":"gf","notes":[{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[9600,3,0],[10800,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[12000,3,0],[13200,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[14400,3,0],[15600,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[16800,3,0],[18000,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[19200,1,0],[20400,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[21600,1,0],[22800,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[24000,1,0],[25200,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[26400,1,0],[27600,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[28800,3,0],[30000,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[31200,2,0],[32400,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[33600,3,0],[34800,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[36000,2,0],[37200,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[38400,1,0],[39000,1,0],[39600,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[40800,2,0],[41400,2,0],[42000,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[43200,2,0],[43800,2,0],[44400,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[45600,2,0],[46200,2,0],[46800,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[49800,3,0],[48000,2,0],[48300,1,0],[48600,0,0],[48900,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":false},{"sectionNotes":[[52200,3,0],[50400,2,0],[50700,1,0],[51000,0,0],[51300,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[52800,3,0],[53400,1,0],[54000,0,0],[54600,1,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[55200,2,0],[55800,3,0],[56400,0,0],[57000,2,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[57600,1,750]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"sectionNotes":[[62400,0,0],[62550,1,0],[62700,2,0],[63000,2,0],[63150,1,0],[63450,1,0],[63600,2,0],[63900,2,0],[64200,2,0],[64350,3,0],[64650,0,0],[64500,1,0],[62850,0,0],[63300,3,0],[63750,0,0],[64050,0,0]],"lengthInSteps":16,"typeOfSection":0,"mustHitSection":true},{"typeOfSection":0,"sectionNotes":[],"lengthInSteps":16,"bpm":100,"changeBPM":false,"mustHitSection":true},{"lengthInSteps":16,"altAnim":false,"typeOfSection":0,"sectionNotes":[],"bpm":100,"changeBPM":false,"mustHitSection":true}],"song":"Tutorial","validScore":true,"sections":0,"needsVoices":false,"speed":1,"bpm":100}}
|
File diff suppressed because one or more lines are too long
BIN
semag/fnfmidfight/assets/data/tutorial/tutorial-hard.json
Normal file
BIN
semag/fnfmidfight/assets/data/tutorial/tutorial-hard.json
Normal file
Binary file not shown.
1
semag/fnfmidfight/assets/data/tutorial/tutorial.json
Normal file
1
semag/fnfmidfight/assets/data/tutorial/tutorial.json
Normal file
File diff suppressed because one or more lines are too long
4
semag/fnfmidfight/assets/data/worship/dialogue1.dat
Normal file
4
semag/fnfmidfight/assets/data/worship/dialogue1.dat
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:sarvente:upset:I see...I see how it is...
|
||||||
|
:sarvente:upset:It's always kids like you who assume you can enter this sacred place freely, just to make fun of it.
|
||||||
|
:sarvente:angry:This time, I'll give you another chance to take my offer. I really love for you to join us.
|
||||||
|
:bf:Beep bop Beep!
|
1
semag/fnfmidfight/assets/data/worship/worship-alpha.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-alpha.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-alt.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-alt.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-alt1.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-alt1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-easy.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-easy1.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-easy1.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-hard.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-hard.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship-hard1.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship-hard1.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship.json
Normal file
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/worship/worship1.json
Normal file
1
semag/fnfmidfight/assets/data/worship/worship1.json
Normal file
File diff suppressed because one or more lines are too long
BIN
semag/fnfmidfight/assets/data/zavodila/355.png
Normal file
BIN
semag/fnfmidfight/assets/data/zavodila/355.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 96 KiB |
7
semag/fnfmidfight/assets/data/zavodila/dialogue1.dat
Normal file
7
semag/fnfmidfight/assets/data/zavodila/dialogue1.dat
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
:sarvente:angry:...
|
||||||
|
:sarvente:upset:You finally came by...
|
||||||
|
:ruv::true:...
|
||||||
|
:sarvente:sad:I'm sorry for the trouble, Ruv...But looks like you have to see me like this...
|
||||||
|
:ruv::true:...
|
||||||
|
:ruv:upset:true:It's k.
|
||||||
|
:ruv:upset:true:It's my job to handle this kind of stuff too anyway...
|
10
semag/fnfmidfight/assets/data/zavodila/dialogue2.dat
Normal file
10
semag/fnfmidfight/assets/data/zavodila/dialogue2.dat
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
:ruv:You've pushed quite a lot of buttons while I was away, huh?
|
||||||
|
:ruv:Well you really should've just ran away or joined the church while you could.
|
||||||
|
:ruv:But you decided to pull a struggle. So here we are.
|
||||||
|
:bf:happy:bop bop bee pa?!
|
||||||
|
:ruv:Name's Ruv by the way. But that is the last name you will probably be hearing after this.
|
||||||
|
:ruv:I would be too tired to do these kind of stuff, but...
|
||||||
|
:ruv:angry:...I have to do what I'm meant to do.
|
||||||
|
:ruv:upset:I'd say break a leg but I might end up breaking yours literally and I'm going to make this as painful as possible for you...
|
||||||
|
:ruv:upset:...and your little girlfriend.
|
||||||
|
:bf:sad::loud:!!!
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
semag/fnfmidfight/assets/data/zavodila/zavodila-alt.json
Normal file
1
semag/fnfmidfight/assets/data/zavodila/zavodila-alt.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user