Code:
Game1 game = new Game1();
seems like an error to me, to you really want to create a new instance of, "Game1" in your Damage class, normaly there is only 1 instance of the Game class in total.
note that in
Code:
Damage Damage = new Damage();
always "Game1 game = new Game1();" is executet first.