This commit is contained in:
KadeDeveloper 2021-08-13 18:52:19 -07:00
parent fa9cd7ed47
commit a148c75ca9
2 changed files with 7 additions and 7 deletions

View File

@ -38,7 +38,7 @@ class MainMenuState extends MusicBeatState
var newGaming2:FlxText; var newGaming2:FlxText;
public static var firstStart:Bool = true; public static var firstStart:Bool = true;
public static var nightly:String = ""; public static var nightly:String = "pre-release2";
public static var kadeEngineVer:String = "1.6.2" + nightly; public static var kadeEngineVer:String = "1.6.2" + nightly;
public static var gameVer:String = "0.2.7.1"; public static var gameVer:String = "0.2.7.1";

View File

@ -1682,7 +1682,7 @@ class PlayState extends MusicBeatState
ana.hit = false; ana.hit = false;
ana.hitJudge = "shit"; ana.hitJudge = "shit";
ana.nearestNote = []; ana.nearestNote = [];
health -= 0.30; health -= 0.20;
} }
} }
@ -3206,7 +3206,7 @@ class PlayState extends MusicBeatState
else else
{ {
if (!daNote.isSustainNote) if (!daNote.isSustainNote)
health -= 0.20; health -= 0.2;
vocals.volume = 0; vocals.volume = 0;
if (theFunne && !daNote.isSustainNote) if (theFunne && !daNote.isSustainNote)
{ {
@ -3229,7 +3229,7 @@ class PlayState extends MusicBeatState
&& daNote.sustainActive && daNote.sustainActive
&& daNote.spotInLine != daNote.parent.children.length) && daNote.spotInLine != daNote.parent.children.length)
{ {
health -= 0.30; // give a health punishment for failing a LN health -= 0.35; // give a health punishment for failing a LN
trace("hold fell over at " + daNote.spotInLine); trace("hold fell over at " + daNote.spotInLine);
for (i in daNote.parent.children) for (i in daNote.parent.children)
{ {
@ -3261,7 +3261,7 @@ class PlayState extends MusicBeatState
if (daNote.isParent) if (daNote.isParent)
{ {
health -= 0.30; // give a health punishment for failing a LN health -= 0.2; // give a health punishment for failing a LN
trace("hold fell over at the start"); trace("hold fell over at the start");
for (i in daNote.children) for (i in daNote.children)
{ {
@ -3277,7 +3277,7 @@ class PlayState extends MusicBeatState
&& daNote.sustainActive && daNote.sustainActive
&& daNote.spotInLine != daNote.parent.children.length) && daNote.spotInLine != daNote.parent.children.length)
{ {
health -= 0.40; // give a health punishment for failing a LN health -= 0.25; // give a health punishment for failing a LN
trace("hold fell over at " + daNote.spotInLine); trace("hold fell over at " + daNote.spotInLine);
for (i in daNote.parent.children) for (i in daNote.parent.children)
{ {
@ -3576,7 +3576,7 @@ class PlayState extends MusicBeatState
totalNotesHit += 0.75; totalNotesHit += 0.75;
case 'sick': case 'sick':
if (health < 2) if (health < 2)
health += 0.04; health += 0.02;
if (FlxG.save.data.accuracyMod == 0) if (FlxG.save.data.accuracyMod == 0)
totalNotesHit += 1; totalNotesHit += 1;
sicks++; sicks++;