Interface MushroomCow

All Superinterfaces:
Ageable, Animals, Attributable, Audience, Breedable, CommandSender, Cow, Creature, Damageable, Entity, Frictional, HoverEventSource<HoverEvent.ShowEntity>, LivingEntity, Lootable, Metadatable, Mob, Nameable, Permissible, PersistentDataHolder, Pointered, ProjectileSource, ServerOperator, Shearable, Sound.Emitter

public interface MushroomCow extends Cow, Shearable
Represents a mushroom Cow
  • Method Details

    • getVariant

      Get the variant of this cow.
      Returns:
      cow variant
    • setVariant

      void setVariant(@NotNull @NotNull MushroomCow.Variant variant)
      Set the variant of this cow.
      Parameters:
      variant - cow variant
    • getStewEffectDuration

      @Deprecated(forRemoval=true) @Contract("-> fail") default int getStewEffectDuration()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Mushroom cows can now hold multiple effects, use getStewEffects()
      Gets how long the effect applied to stew from this mushroom cow is.
      Returns:
      duration of the effect (in ticks)
    • setStewEffectDuration

      @Deprecated(forRemoval=true) @Contract("_ -> fail") default void setStewEffectDuration(int duration)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Mushroom cows can now hold multiple effects, use setStewEffects(java.util.List)
      Sets how long the effect applied to stew from this mushroom cow is.
      Parameters:
      duration - duration of the effect (in ticks)
    • getStewEffectType

      @Deprecated(forRemoval=true) @Contract("-> fail") default PotionEffectType getStewEffectType()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Mushroom cows can now hold multiple effects, use getStewEffects()
      Gets the type of effect applied to stew from this mushroom cow is.
      Returns:
      effect type, or null if an effect is currently not set
      Throws:
      UnsupportedOperationException
    • setStewEffect

      @Deprecated(forRemoval=true) @Contract("_ -> fail") default void setStewEffect(@Nullable PotionEffectType type)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Mushroom cows can now hold multiple effects, use setStewEffects(java.util.List)
      Sets the type of effect applied to stew from this mushroom cow is.
      Parameters:
      type - new effect type or null if this cow does not give effects
      Throws:
      UnsupportedOperationException
    • getStewEffects

      Returns an immutable collection of the effects applied to stew items for this mushroom cow.
      Returns:
      immutable effect entry collection
    • setStewEffects

      void setStewEffects(@NotNull List<SuspiciousEffectEntry> effects)
      Sets effects applied to stew items for this mushroom cow.
      Parameters:
      effects - effect entry list