Search in sources :

Example 1 with ImpShopkeeper

use of com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.ImpShopkeeper in project shattered-pixel-dungeon-gdx by 00-Evan.

the class ImpShopRoom method placeShopkeeper.

@Override
protected void placeShopkeeper(Level level) {
    int pos = level.pointToCell(center());
    Mob shopkeeper = new ImpShopkeeper();
    shopkeeper.pos = pos;
    level.mobs.add(shopkeeper);
}
Also used : Mob(com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob) ImpShopkeeper(com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.ImpShopkeeper)

Aggregations

Mob (com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob)1 ImpShopkeeper (com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.ImpShopkeeper)1