mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[LCI] Implement Malcolm, Alluring Scoundrel
This commit is contained in:
parent
9707ba9a35
commit
db7198620e
3 changed files with 102 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue