1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-25 08:13:45 +00:00

dumb useless lol

This commit is contained in:
Cameron Taylor 2022-02-16 16:57:08 -05:00
parent d6db576585
commit f5c3b7db02

View file

@ -2423,37 +2423,31 @@ class PlayState extends MusicBeatState
var score:Int = 350;
var daRating:String = "sick";
var isSick:Bool = true;
var isSick:Bool = false;
var healthMulti:Float = 1;
if (daNote.lowStakes)
healthMulti *= 0.002;
else
healthMulti *= 0.033;
healthMulti *= daNote.lowStakes ? 0.002 : 0.033;
if (noteDiff > Note.HIT_WINDOW * Note.BAD_THRESHOLD)
{
healthMulti *= 0; // no health on shit note
daRating = 'shit';
score = 50;
isSick = false; // shitty copypaste on this literally just because im lazy and tired lol!
}
else if (noteDiff > Note.HIT_WINDOW * Note.GOOD_THRESHOLD)
{
healthMulti *= 0.2;
daRating = 'bad';
score = 100;
isSick = false;
}
else if (noteDiff > Note.HIT_WINDOW * Note.SICK_THRESHOLD)
{
healthMulti *= 0.78;
daRating = 'good';
score = 200;
isSick = false;
}
else
isSick = true;
health += healthMulti;