Co-authored-by: Bjarne Koll <git@lynxplay.dev> Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com> Co-authored-by: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com> Co-authored-by: MiniDigger | Martin <admin@minidigger.dev> Co-authored-by: Nassim Jahnke <nassim@njahnke.dev> Co-authored-by: Noah van der Aa <ndvdaa@gmail.com> Co-authored-by: Owen1212055 <23108066+Owen1212055@users.noreply.github.com> Co-authored-by: Shane Freeder <theboyetronic@gmail.com> Co-authored-by: Spottedleaf <Spottedleaf@users.noreply.github.com> Co-authored-by: Tamion <70228790+notTamion@users.noreply.github.com> Co-authored-by: Warrior <50800980+Warriorrrr@users.noreply.github.com>
77 lines
2.3 KiB
Java
77 lines
2.3 KiB
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a wandering trader NPC
|
|
*/
|
|
public interface WanderingTrader extends AbstractVillager {
|
|
|
|
/**
|
|
* Gets the despawn delay before this {@link WanderingTrader} is forcibly
|
|
* despawned.
|
|
*
|
|
* If this is less than or equal to 0, then the trader will not be
|
|
* despawned.
|
|
*
|
|
* @return The despawn delay before this {@link WanderingTrader} is forcibly
|
|
* despawned
|
|
*/
|
|
public int getDespawnDelay();
|
|
|
|
/**
|
|
* Sets the despawn delay before this {@link WanderingTrader} is forcibly
|
|
* despawned.
|
|
*
|
|
* If this is less than or equal to 0, then the trader will not be
|
|
* despawned.
|
|
*
|
|
* @param despawnDelay The new despawn delay before this
|
|
* {@link WanderingTrader} is forcibly despawned
|
|
*/
|
|
public void setDespawnDelay(int despawnDelay);
|
|
|
|
/**
|
|
* Set if the Wandering Trader can and will drink an invisibility potion.
|
|
* @param bool whether the mob will drink
|
|
*/
|
|
public void setCanDrinkPotion(boolean bool);
|
|
|
|
/**
|
|
* Get if the Wandering Trader can and will drink an invisibility potion.
|
|
* @return whether the mob will drink
|
|
*/
|
|
public boolean canDrinkPotion();
|
|
|
|
/**
|
|
* Set if the Wandering Trader can and will drink milk.
|
|
* @param bool whether the mob will drink
|
|
*/
|
|
public void setCanDrinkMilk(boolean bool);
|
|
|
|
/**
|
|
* Get if the Wandering Trader can and will drink milk.
|
|
* @return whether the mob will drink
|
|
*/
|
|
public boolean canDrinkMilk();
|
|
|
|
/**
|
|
* Gets the location that this wandering trader is currently
|
|
* wandering towards.
|
|
* <p>
|
|
* This will return null if the wandering trader has finished
|
|
* wandering towards the given location.
|
|
*
|
|
* @return the location currently wandering towards, or null if not wandering
|
|
*/
|
|
@org.jetbrains.annotations.Nullable
|
|
org.bukkit.Location getWanderingTowards();
|
|
|
|
/**
|
|
* Sets the location that this wandering trader is currently wandering towards.
|
|
* <p>
|
|
* This can be set to null to prevent the wandering trader from wandering further.
|
|
*
|
|
* @param location location to wander towards (world is ignored, will always use the entity's world)
|
|
*/
|
|
void setWanderingTowards(@org.jetbrains.annotations.Nullable org.bukkit.Location location);
|
|
}
|