rewrote the CadavaBerriesPlugin (misnomer) to CadavaPotionListener

This commit is contained in:
bushtail
2022-03-21 00:17:59 +00:00
committed by Ryan
parent ec35110748
commit fa13d165d2
2 changed files with 25 additions and 40 deletions
@@ -1,40 +0,0 @@
package core.game.interaction.object;
import core.cache.def.impl.ItemDefinition;
import core.game.interaction.OptionHandler;
import core.game.node.Node;
import core.game.node.entity.player.Player;
import core.plugin.Initializable;
import core.plugin.Plugin;
/**
* Represents the plugin used to handle the cadava potion.
* @author 'Vexia
* @version 1.0
*/
@Initializable
public final class CavadaBerriesPlugin extends OptionHandler {
@Override
public Plugin<Object> newInstance(Object arg) throws Throwable {
ItemDefinition.forId(756).getHandlers().put("option:look-at", this);
ItemDefinition.forId(756).getHandlers().put("option:drink", this);
return this;
}
@Override
public boolean handle(Player player, Node node, String option) {
if (option.equals("drink")) {
player.getDialogueInterpreter().sendItemMessage(756, "You dare not drink.");
}
if (option.equals("look-at")) {
player.getDialogueInterpreter().sendItemMessage(756, "This looks very colourful.");
}
return true;
}
@Override
public boolean isWalk() {
return false;
}
}
@@ -0,0 +1,25 @@
package rs09.game.interaction.`object`
import api.sendItemDialogue
import org.rs09.consts.Items
import rs09.game.interaction.InteractionListener
/**
* @author bushtail
*/
class CadavaPotionListener : InteractionListener() {
var POTION = Items.CADAVA_POTION_756
override fun defineListeners() {
on(POTION, ITEM, "drink") { player, node ->
sendItemDialogue(player, POTION, "You dare not drink.")
return@on true
}
on(POTION, ITEM, "look-at") { player, node ->
sendItemDialogue(player, POTION, "This looks very colourful.")
return@on true
}
}
}