difficulty shit in progress

This commit is contained in:
Cameron Taylor 2020-10-31 16:23:19 -07:00
parent 8273af5a43
commit a9638e1c42
6 changed files with 9 additions and 4 deletions

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

View File

@ -781,7 +781,7 @@ class PlayState extends MusicBeatState
{ {
if (daNote.tooLate) if (daNote.tooLate)
{ {
health -= 0.03; health -= 0.04;
vocals.volume = 0; vocals.volume = 0;
} }
@ -1084,7 +1084,7 @@ class PlayState extends MusicBeatState
{ {
if (!boyfriend.stunned) if (!boyfriend.stunned)
{ {
health -= 0.055; health -= 0.06;
if (combo > 5) if (combo > 5)
{ {
gf.playAnim('sad'); gf.playAnim('sad');
@ -1180,9 +1180,9 @@ class PlayState extends MusicBeatState
} }
if (note.noteData >= 0) if (note.noteData >= 0)
health += 0.03; health += 0.023;
else else
health += 0.007; health += 0.004;
switch (note.noteData) switch (note.noteData)
{ {

View File

@ -125,6 +125,7 @@ class TitleState extends MusicBeatState
ngSpr.setGraphicSize(Std.int(ngSpr.width * 0.8)); ngSpr.setGraphicSize(Std.int(ngSpr.width * 0.8));
ngSpr.updateHitbox(); ngSpr.updateHitbox();
ngSpr.screenCenter(X); ngSpr.screenCenter(X);
ngSpr.antialiasing = true;
FlxTween.tween(credTextShit, {y: credTextShit.y + 20}, 2.9, {ease: FlxEase.quadInOut, type: PINGPONG}); FlxTween.tween(credTextShit, {y: credTextShit.y + 20}, 2.9, {ease: FlxEase.quadInOut, type: PINGPONG});