use of com.lilithsthrone.game.character.body.valueEnums.TongueModifier in project liliths-throne-public by Innoxia.
the class Tongue method getDescriptor.
public String getDescriptor(GameCharacter owner) {
List<String> list = new ArrayList<>();
for (TongueModifier tm : tongueModifiers) {
list.add(tm.getName());
}
list.add(type.getDescriptor(owner));
return UtilText.returnStringAtRandom(list.toArray(new String[] {}));
}
Aggregations