2015-06-12 20:44:04 +00:00
|
|
|
/*
|
|
|
|
* Pixel Dungeon
|
|
|
|
* Copyright (C) 2012-2015 Oleg Dolya
|
|
|
|
*
|
|
|
|
* Shattered Pixel Dungeon
|
|
|
|
* Copyright (C) 2014-2015 Evan Debenham
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2015-03-18 07:51:38 +00:00
|
|
|
package com.shatteredpixel.shatteredpixeldungeon.items;
|
|
|
|
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.Assets;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Shopkeeper;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
|
|
|
import com.watabou.noosa.audio.Sample;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class MerchantsBeacon extends Item {
|
|
|
|
|
|
|
|
private static final String AC_USE = "USE";
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "merchant's beacon";
|
2015-03-22 19:18:24 +00:00
|
|
|
image = ItemSpriteSheet.BEACON;
|
2015-03-18 07:51:38 +00:00
|
|
|
|
|
|
|
stackable = true;
|
|
|
|
|
|
|
|
defaultAction = AC_USE;
|
|
|
|
|
|
|
|
bones = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ArrayList<String> actions(Hero hero) {
|
|
|
|
ArrayList<String> actions = super.actions(hero);
|
|
|
|
actions.add(AC_USE);
|
|
|
|
return actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void execute(Hero hero, String action) {
|
|
|
|
if (action.equals(AC_USE)) {
|
|
|
|
detach( hero.belongings.backpack );
|
|
|
|
Shopkeeper.sell();
|
|
|
|
Sample.INSTANCE.play( Assets.SND_BEACON );
|
|
|
|
} else
|
|
|
|
super.execute(hero, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isUpgradable() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isIdentified() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int price() {
|
2015-03-22 19:18:24 +00:00
|
|
|
return 5 * quantity;
|
2015-03-18 07:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String info() {
|
2015-03-22 19:18:24 +00:00
|
|
|
return "This odd piece of dwarven technology allows you to communicate from great distances." +
|
2015-03-18 07:51:38 +00:00
|
|
|
"\n\nAfter being activated, this beacon will let you sell items to Pixel Mart from anywhere in the dungeon." +
|
2015-03-22 19:18:24 +00:00
|
|
|
"\n\nHowever, the magic within the beacon will only last for one session, so use it wisely.";
|
2015-03-18 07:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|