mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 08:52:15 -07:00
Even more default tags.
This commit is contained in:
parent
572c865390
commit
120ced192b
1 changed files with 64 additions and 49 deletions
|
|
@ -16,55 +16,70 @@ DeckPreviewTagDialog::DeckPreviewTagDialog(const QStringList &knownTags, const Q
|
||||||
setWindowTitle("Deck Tags Manager");
|
setWindowTitle("Deck Tags Manager");
|
||||||
resize(400, 500);
|
resize(400, 500);
|
||||||
|
|
||||||
QStringList defaultTags = {"🏃️ Aggro",
|
QStringList defaultTags = {
|
||||||
"🧙️ Control",
|
// Strategies
|
||||||
"⚔️ Midrange",
|
"🏃️ Aggro",
|
||||||
"🌀 Combo",
|
"🧙️ Control",
|
||||||
"🪓 Mill",
|
"⚔️ Midrange",
|
||||||
"🐉 Tribal",
|
"🌀 Combo",
|
||||||
"🔒 Stax",
|
"🪓 Mill",
|
||||||
"🗺️ Landfall",
|
"🔒 Stax",
|
||||||
"🛡️ Pillowfort",
|
"🗺️ Landfall",
|
||||||
"🌱 Ramp",
|
"🛡️ Pillowfort",
|
||||||
"⚡ Storm",
|
"🌱 Ramp",
|
||||||
"💀 Aristocrats",
|
"⚡ Storm",
|
||||||
"☠️ Reanimator",
|
"💀 Aristocrats",
|
||||||
"👹 Sacrifice",
|
"☠️ Reanimator",
|
||||||
"🔥 Burn",
|
"👹 Sacrifice",
|
||||||
"🌟 Lifegain",
|
"🔥 Burn",
|
||||||
"🔮 Spellslinger",
|
"🌟 Lifegain",
|
||||||
"👥 Tokens",
|
"🔮 Spellslinger",
|
||||||
"🐺 Werewolves",
|
"👥 Tokens",
|
||||||
"🦴 Skeletons",
|
"🎭 Blink",
|
||||||
"🦅 Flying",
|
"⏳ Time Manipulation",
|
||||||
"💎 Artifacts",
|
"🌍 Domain",
|
||||||
"🌔 Enchantress",
|
"💫 Proliferate",
|
||||||
"🌊 Flash",
|
"📜 Saga",
|
||||||
"👾 Eldrazi",
|
"🎲 Chaos",
|
||||||
"🎭 Blink",
|
"🪄 Auras",
|
||||||
"⏳ Time Manipulation",
|
"🔫 Pingers",
|
||||||
"🌍 Domain",
|
|
||||||
"💫 Proliferate",
|
// Themes
|
||||||
"🧛 Vampires",
|
"👑 Monarch",
|
||||||
"🦇 Bats",
|
"🚀 Vehicles",
|
||||||
"🐺 Wolves",
|
"💉 Infect",
|
||||||
"🐠 Merfolk",
|
"🩸 Madness",
|
||||||
"🐉 Dragons",
|
"🌀 Morph"
|
||||||
"🍄 Fungus",
|
|
||||||
"🦗 Insects",
|
// Card Types
|
||||||
"🦅 Birds",
|
"⚔️ Creature",
|
||||||
"🐚 Sea Creatures",
|
"💎 Artifact",
|
||||||
"🎩 Wizards",
|
"🌔 Enchantment",
|
||||||
"🎻 Bards",
|
"📖 Sorcery",
|
||||||
"👑 Monarch",
|
"⚡ Instant",
|
||||||
"📜 Saga",
|
"🌌 Planeswalker",
|
||||||
"🚀 Vehicles",
|
"🌏 Land",
|
||||||
"💉 Infect",
|
"🪄 Aura",
|
||||||
"🩸 Madness",
|
|
||||||
"🌀 Morph",
|
// Tribal Types
|
||||||
"🎲 Chaos",
|
"🐉 Tribal",
|
||||||
"🪄 Auras",
|
"🐠 Merfolk",
|
||||||
"🔫 Pingers"};
|
"🐺 Werewolves",
|
||||||
|
"🦴 Skeletons",
|
||||||
|
"🦅 Flying",
|
||||||
|
"👾 Eldrazi",
|
||||||
|
"🧛 Vampires",
|
||||||
|
"🦇 Bats",
|
||||||
|
"🐺 Wolves",
|
||||||
|
"🐉 Dragons",
|
||||||
|
"🍄 Fungus",
|
||||||
|
"🦗 Insects",
|
||||||
|
"🦅 Birds",
|
||||||
|
"🐚 Sea Creatures",
|
||||||
|
"🎩 Wizards",
|
||||||
|
"🎻 Bards",
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
// Merge knownTags with defaultTags, ensuring no duplicates
|
// Merge knownTags with defaultTags, ensuring no duplicates
|
||||||
QStringList combinedTags = knownTags + defaultTags + activeTags;
|
QStringList combinedTags = knownTags + defaultTags + activeTags;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue