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>
76 lines
1.8 KiB
Java
76 lines
1.8 KiB
Java
package org.bukkit.entity;
|
|
|
|
import io.papermc.paper.registry.RegistryAccess;
|
|
import io.papermc.paper.registry.RegistryKey;
|
|
import org.bukkit.Keyed;
|
|
import org.bukkit.NamespacedKey;
|
|
import org.jspecify.annotations.NullMarked;
|
|
|
|
/**
|
|
* Represents a Chicken.
|
|
*/
|
|
@NullMarked
|
|
public interface Chicken extends Animals {
|
|
|
|
/**
|
|
* Gets the variant of this chicken.
|
|
*
|
|
* @return the chicken variant
|
|
*/
|
|
Variant getVariant();
|
|
|
|
/**
|
|
* Sets the variant of this chicken.
|
|
*
|
|
* @param variant the chicken variant
|
|
*/
|
|
void setVariant(Variant variant);
|
|
|
|
/**
|
|
* Gets if this chicken was spawned as a chicken jockey.
|
|
*
|
|
* @return is chicken jockey
|
|
*/
|
|
boolean isChickenJockey();
|
|
|
|
/**
|
|
* Sets if this chicken was spawned as a chicken jockey.
|
|
*
|
|
* @param isChickenJockey is chicken jockey
|
|
*/
|
|
void setIsChickenJockey(boolean isChickenJockey);
|
|
|
|
/**
|
|
* Gets the number of ticks till this chicken lays an egg.
|
|
*
|
|
* @return ticks till the chicken lays an egg
|
|
*/
|
|
int getEggLayTime();
|
|
|
|
/**
|
|
* Sets the number of ticks till this chicken lays an egg.
|
|
*
|
|
* @param eggLayTime ticks till the chicken lays an egg
|
|
*/
|
|
void setEggLayTime(int eggLayTime);
|
|
|
|
/**
|
|
* Represents the variant of a chicken.
|
|
*/
|
|
interface Variant extends Keyed {
|
|
|
|
// Start generate - ChickenVariant
|
|
// @GeneratedFrom 1.21.5
|
|
Variant COLD = getVariant("cold");
|
|
|
|
Variant TEMPERATE = getVariant("temperate");
|
|
|
|
Variant WARM = getVariant("warm");
|
|
// End generate - ChickenVariant
|
|
|
|
private static Variant getVariant(String key) {
|
|
return RegistryAccess.registryAccess().getRegistry(RegistryKey.CHICKEN_VARIANT).getOrThrow(NamespacedKey.minecraft(key));
|
|
}
|
|
}
|
|
}
|