Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nebulazorua committed Jul 8, 2021
1 parent be7125f commit 37b17a3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -3061,7 +3061,12 @@ class PlayState extends MusicBeatState
if(burnTimer<0)burnTimer=0;
if(burnTicker>=burnTicks){
burnTicker-=burnTicks;
health-=.05;
if(ItemState.equipped.contains("depressed")){
health-=.025;
}else{
health-=.05;
}

}
}

Expand Down Expand Up @@ -3414,7 +3419,7 @@ class PlayState extends MusicBeatState
else
FlxG.sound.play(Paths.music('gameOverEnd'));

score-=12500;
songScore-=12500;
hitNotes-=6;
burnTimer=0;
beenSavedByResistance=true;
Expand Down Expand Up @@ -3688,9 +3693,9 @@ class PlayState extends MusicBeatState
});
}else if (daNote.noteType==6){
if(ItemState.equipped.contains("depressed"))
health-=.01;
health-=.0075;
else
health-=.02;
health-=.015;
}else if (daNote.noteType==7){
health=.01;
}
Expand Down

0 comments on commit 37b17a3

Please sign in to comment.