Exemplo n.º 1
0
        public void useSpell(Hero hero, int portal)
        {
            location = hero.getLocation();
            location.setX(location.getX() + 1);
            location.setX(location.getX() + 1);

            hero.removeItemFromInventory(new Spell(portal));
        }
Exemplo n.º 2
0
 public void Teleport(Hero hero, Monster monster)
 {
     monster.setLocation(hero.getLocation());
 }