Package vee.elixirs

Examples of vee.elixirs.HealthElixir


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

TOP

Related Classes of vee.elixirs.HealthElixir

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.