mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
SPIGOT-2376: Way to distinguish Zombie professions.
This commit is contained in:
parent
32351955d8
commit
82821325a6
1 changed files with 21 additions and 7 deletions
|
@ -117,30 +117,44 @@ public interface Villager extends Ageable, NPC, InventoryHolder {
|
|||
/**
|
||||
* Normal. <b>Reserved for Zombies.</b>
|
||||
*/
|
||||
NORMAL,
|
||||
NORMAL(true),
|
||||
/**
|
||||
* Farmer profession. Wears a brown robe.
|
||||
*/
|
||||
FARMER,
|
||||
FARMER(false),
|
||||
/**
|
||||
* Librarian profession. Wears a white robe.
|
||||
*/
|
||||
LIBRARIAN,
|
||||
LIBRARIAN(false),
|
||||
/**
|
||||
* Priest profession. Wears a purple robe.
|
||||
*/
|
||||
PRIEST,
|
||||
PRIEST(false),
|
||||
/**
|
||||
* Blacksmith profession. Wears a black apron.
|
||||
*/
|
||||
BLACKSMITH,
|
||||
BLACKSMITH(false),
|
||||
/**
|
||||
* Butcher profession. Wears a white apron.
|
||||
*/
|
||||
BUTCHER,
|
||||
BUTCHER(false),
|
||||
/**
|
||||
* Husk. <b>Reserved for Zombies</b>
|
||||
*/
|
||||
HUSK;
|
||||
HUSK(true);
|
||||
private final boolean zombie;
|
||||
|
||||
private Profession(boolean zombie) {
|
||||
this.zombie = zombie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns if this profession can only be used by zombies.
|
||||
*
|
||||
* @return zombie profession status
|
||||
*/
|
||||
public boolean isZombie() {
|
||||
return zombie;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue