Package vee.enemies

Examples of vee.enemies.PenelopeFox


//    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();
View Full Code Here

TOP

Related Classes of vee.enemies.PenelopeFox

Copyright © 2018 www.massapicom. 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.