Hans Mackowiak

Results 427 comments of Hans Mackowiak

Moving it to tokens might be a bit more tricky I don't know if I can get `chooseDungeon` work with (Paper)Token cards instead

@Jetz72 Smash equipment like `Deconstruction Hammer` still use Original Host Name `Mortarpod` with `Sacrifice this creature` will fall back to Permanent (until I cheat something)

I need this for making better Reminder Text of the Station Keyword

Example function for adding to `CardTraitBase``: ```java public String getThisType() { CardTypeView type = getCardState().getType(); if (type.isAura()) return "Aura"; if (type.isEquipment()) return "Equipment"; if (type.isContraption()) return "Contraption"; if (type.isAttraction()) return...

For CARDNAME/NICKNAME, i want to use PatternMatcher [replaceAll](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/regex/Matcher.html#replaceAll(java.util.function.Function)) ```java String str = "AAA and BBB"; Pattern p = Pattern.compile("AAA|BBB"); Matcher m = p.matcher(str); String str2 = m.replaceAll(m1 -> m1.group().toLowerCase()); //...

@Jetz72 such corner cases can be ignored for now

@Jetz72 but I saw some Saga creatures say "this saga" too non DFC Saga Creature like * "Summon: Bahamut" says "this creature" for the Damage part * "Summon: Esper Valigarmanda"...