mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Move "Offering" from modifiableKeywords to modifiableKeywordEndings
This commit is contained in:
@@ -49,13 +49,14 @@ public final class CardUtil {
|
|||||||
public static final List<String> modifiableKeywords = Lists.newArrayList(
|
public static final List<String> modifiableKeywords = Lists.newArrayList(
|
||||||
"Enchant", "Protection", "Cumulative upkeep", "Equip", "Buyback",
|
"Enchant", "Protection", "Cumulative upkeep", "Equip", "Buyback",
|
||||||
"Cycling", "Echo", "Kicker", "Flashback", "Madness", "Morph",
|
"Cycling", "Echo", "Kicker", "Flashback", "Madness", "Morph",
|
||||||
"Affinity", "Entwine", "Splice", "Offering", "Ninjutsu",
|
"Affinity", "Entwine", "Splice", "Ninjutsu",
|
||||||
"Transute", "Replicate", "Recover", "Suspend", "Aura swap",
|
"Transute", "Replicate", "Recover", "Suspend", "Aura swap",
|
||||||
"Fortify", "Transfigure", "Champion", "Evoke", "Prowl",
|
"Fortify", "Transfigure", "Champion", "Evoke", "Prowl",
|
||||||
"Reinforce", "Unearth", "Level up", "Miracle", "Overload",
|
"Reinforce", "Unearth", "Level up", "Miracle", "Overload",
|
||||||
"Scavenge", "Bestow");
|
"Scavenge", "Bestow");
|
||||||
/** List of keyword endings of keywords that could be modified by text changes. */
|
/** List of keyword endings of keywords that could be modified by text changes. */
|
||||||
public static final List<String> modifiableKeywordEndings = Lists.newArrayList("walk", "cycling");
|
public static final List<String> modifiableKeywordEndings = Lists.newArrayList("walk", "cycling",
|
||||||
|
"offering");
|
||||||
|
|
||||||
public static final boolean isKeywordModifiable(final String kw) {
|
public static final boolean isKeywordModifiable(final String kw) {
|
||||||
for (final String modKw : modifiableKeywords) {
|
for (final String modKw : modifiableKeywords) {
|
||||||
|
|||||||
Reference in New Issue
Block a user