Package transientlibs.objects.creatures.items

Examples of transientlibs.objects.creatures.items.Item


    public GDXUnit(int onX, int onY, int setID, TilelessMap setMap) {
        super(Creatures.creatures.get(setID).masterImage, onX, onY, setMap);
        creatures = Creatures.creatures.get(setID);

        for (Int i : creatures.equippedItems) {
            equipment.equipItem(new Item(i.value));
        }

        ofType = setID;

        isDrawn = true;
View Full Code Here


        //Log.info("super finished");

        creature = Creatures.creatures.get(setType);

        for (Int i : creature.equippedItems) {
            equipment.equipItem(new Item(i.value));
        }


        ofType = setType;
        mapCoords.x = onX;
View Full Code Here

TOP

Related Classes of transientlibs.objects.creatures.items.Item

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.