I somehow got to 24? The points I had kept going up without me doing anything for some reason lol
Pretty cool! It was clever to have to hide in the grass to shoot the boars. However I suggest you make the boars go towards the player at a constant speed instead of going at a speed relative to the distance to the player. Here's how I would do it in Godot:
var direction = (player.position - boar.position).normalized()
(of course this is just an example, adapt this to whatever way your project works)