[LCI] Implement Malcolm, Alluring Scoundrel

This commit is contained in:
Susucre 2023-10-29 13:22:47 +01:00
parent 9707ba9a35
commit db7198620e
3 changed files with 102 additions and 1 deletions

View file

@ -35,6 +35,7 @@ public enum CounterType {
CARRION("carrion"),
CHARGE("charge"),
CHIP("chip"),
CHORUS("chorus"),
COIN("coin"),
COLLECTION("collection"),
COMPONENT("component"),
@ -228,7 +229,7 @@ public enum CounterType {
}
CounterType(String name) {
this(name, "aeiou".contains( String.valueOf( name.charAt( 0 ) ) ) ? "an" : "a");
this(name, "aeiou".contains(String.valueOf(name.charAt(0))) ? "an" : "a");
}
CounterType(String name, String article) {