Yeah, your function is increasing player.phaser by a TIME factor which makes it incredibly unlikely that player.phaser will ever be exactly equal to 70. either use the int() function to only look at the integer value of player.phaser, or change the comparison in the if statement to something like

if(player.phaser > 68 && player.phaser < 72) { blah }