mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
evil mf shit
This commit is contained in:
parent
91f1c816b9
commit
43f43f6f6f
2 changed files with 5 additions and 5 deletions
|
@ -98,7 +98,7 @@ class FreeplayState extends MusicBeatState
|
||||||
if (StoryMenuState.weekUnlocked[7] || isDebug)
|
if (StoryMenuState.weekUnlocked[7] || isDebug)
|
||||||
addWeek(['Ugh', 'Guns', 'Stress'], 7, ['tankman']);
|
addWeek(['Ugh', 'Guns', 'Stress'], 7, ['tankman']);
|
||||||
|
|
||||||
addWeek(["Darnell"], 8, ['darnell']);
|
addWeek(["Darnell", "lit-up", "2hot"], 8, ['darnell']);
|
||||||
|
|
||||||
// LOAD MUSIC
|
// LOAD MUSIC
|
||||||
|
|
||||||
|
|
|
@ -2159,7 +2159,7 @@ class PlayState extends MusicBeatState
|
||||||
{
|
{
|
||||||
if (daNote.tooLate)
|
if (daNote.tooLate)
|
||||||
{
|
{
|
||||||
health -= 0.0475;
|
health -= 0.0775;
|
||||||
vocals.volume = 0;
|
vocals.volume = 0;
|
||||||
killCombo();
|
killCombo();
|
||||||
}
|
}
|
||||||
|
@ -2345,7 +2345,7 @@ class PlayState extends MusicBeatState
|
||||||
var healthMulti:Float = 1;
|
var healthMulti:Float = 1;
|
||||||
|
|
||||||
if (daNote.noteData >= 0)
|
if (daNote.noteData >= 0)
|
||||||
healthMulti *= 0.023;
|
healthMulti *= 0.033;
|
||||||
else
|
else
|
||||||
healthMulti *= 0.002;
|
healthMulti *= 0.002;
|
||||||
|
|
||||||
|
@ -2366,7 +2366,7 @@ class PlayState extends MusicBeatState
|
||||||
}
|
}
|
||||||
else if (noteDiff > Note.HIT_WINDOW * Note.SICK_THRESHOLD)
|
else if (noteDiff > Note.HIT_WINDOW * Note.SICK_THRESHOLD)
|
||||||
{
|
{
|
||||||
healthMulti *= 0.70;
|
healthMulti *= 0.78;
|
||||||
|
|
||||||
daRating = 'good';
|
daRating = 'good';
|
||||||
score = 200;
|
score = 200;
|
||||||
|
@ -2769,7 +2769,7 @@ class PlayState extends MusicBeatState
|
||||||
function noteMiss(direction:Int = 1):Void
|
function noteMiss(direction:Int = 1):Void
|
||||||
{
|
{
|
||||||
// whole function used to be encased in if (!boyfriend.stunned)
|
// whole function used to be encased in if (!boyfriend.stunned)
|
||||||
health -= 0.04;
|
health -= 0.07;
|
||||||
killCombo();
|
killCombo();
|
||||||
|
|
||||||
if (!practiceMode)
|
if (!practiceMode)
|
||||||
|
|
Loading…
Reference in a new issue