Package vee

Source Code of vee.Vee

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();
   

  }
}
TOP

Related Classes of vee.Vee

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.