package vee;
import vee.enemies.Henchwoman;
import vee.elixirs.HealthElixir;
import vee.enemies.PenelopeFox;
import vee.levels.Village;
import vee.ui.GameFrame;
public class Vee {
public static void main(String[] args) {
// GameFrame ex = new GameFrame();
//attack test
PenelopeFox fox = PenelopeFox.getInstance();
Henchwoman second_henchwoman = new Henchwoman();
HealthElixir healthElixir = new HealthElixir();
fox.beAttacked(second_henchwoman.attack());
System.out.println("After attack "+fox.getCurrentHealth());
healthElixir.consume(fox);
System.out.println("After elixir consume "+fox.getCurrentHealth());
// Village level
Village village = new Village();
Player player = new Player();
village.placeAtCoordinate(player.getMapCharacter(), 1, 1);
village.printLevel();
}
}