From ce8048a5f47ee90fad9dee32b845207000e7cec2 Mon Sep 17 00:00:00 2001 From: Peter Lord Date: Tue, 16 Jun 2026 00:56:21 -0700 Subject: [PATCH] Parse mod entity classes into the data-mod catalog The run and live pages render an entity from its catalog entry after falling back main -> beta -> mod. This adds tools/parse_mod.py, which turns a mod's C# card/relic/potion classes plus its localization JSON into the same per-language catalog shape the site already renders for base entities, written to data-mod///. It reuses the base-game parser machinery: description_resolver bakes the SmartFormat tokens ({Damage:diff()}, {IfUpgraded:show:...}, [gold] tags) into final text exactly as for base cards, and the 33-field card schema and enums come from card_parser. The mod-specific part is reading mechanics from the fluent builder calls (WithDamage, WithBlock, WithVar, WithKeyword, WithCostUpgradeBy, WithCalculatedDamage, HasEnergyCostX) rather than the decompiled game's DynamicVar declarations, and namespacing ids with the mod prefix (Eruption -> WATCHER-ERUPTION) so they never collide with base ids. The mod's repo layout, id prefix, color, and languages come from its data/mods.json entry. Verified against WatcherMod: 90 cards, 8 relics, 4 potions across 7 languages, with cost, type, rarity, damage/block, custom vars, keywords, X-cost, and upgrade descriptions all resolving correctly. One potion (Bottled Miracle) shows its count as the runtime "X" because that number lives in an effect method rather than a builder call; everything else bakes its numbers in. --- data-mod/watcher/deu/cards.json | 3860 +++++++++++++++++++++++++++++ data-mod/watcher/deu/potions.json | 46 + data-mod/watcher/deu/relics.json | 130 + data-mod/watcher/eng/cards.json | 3860 +++++++++++++++++++++++++++++ data-mod/watcher/eng/potions.json | 46 + data-mod/watcher/eng/relics.json | 130 + data-mod/watcher/ita/cards.json | 3860 +++++++++++++++++++++++++++++ data-mod/watcher/ita/potions.json | 46 + data-mod/watcher/ita/relics.json | 130 + data-mod/watcher/jpn/cards.json | 3858 ++++++++++++++++++++++++++++ data-mod/watcher/jpn/potions.json | 46 + data-mod/watcher/jpn/relics.json | 130 + data-mod/watcher/kor/cards.json | 3858 ++++++++++++++++++++++++++++ data-mod/watcher/kor/potions.json | 46 + data-mod/watcher/kor/relics.json | 130 + data-mod/watcher/rus/cards.json | 3860 +++++++++++++++++++++++++++++ data-mod/watcher/rus/potions.json | 46 + data-mod/watcher/rus/relics.json | 130 + data-mod/watcher/zhs/cards.json | 3860 +++++++++++++++++++++++++++++ data-mod/watcher/zhs/potions.json | 46 + data-mod/watcher/zhs/relics.json | 130 + data/mods.json | 9 +- tools/parse_mod.py | 497 ++++ 23 files changed, 28753 insertions(+), 1 deletion(-) create mode 100644 data-mod/watcher/deu/cards.json create mode 100644 data-mod/watcher/deu/potions.json create mode 100644 data-mod/watcher/deu/relics.json create mode 100644 data-mod/watcher/eng/cards.json create mode 100644 data-mod/watcher/eng/potions.json create mode 100644 data-mod/watcher/eng/relics.json create mode 100644 data-mod/watcher/ita/cards.json create mode 100644 data-mod/watcher/ita/potions.json create mode 100644 data-mod/watcher/ita/relics.json create mode 100644 data-mod/watcher/jpn/cards.json create mode 100644 data-mod/watcher/jpn/potions.json create mode 100644 data-mod/watcher/jpn/relics.json create mode 100644 data-mod/watcher/kor/cards.json create mode 100644 data-mod/watcher/kor/potions.json create mode 100644 data-mod/watcher/kor/relics.json create mode 100644 data-mod/watcher/rus/cards.json create mode 100644 data-mod/watcher/rus/potions.json create mode 100644 data-mod/watcher/rus/relics.json create mode 100644 data-mod/watcher/zhs/cards.json create mode 100644 data-mod/watcher/zhs/potions.json create mode 100644 data-mod/watcher/zhs/relics.json create mode 100644 tools/parse_mod.py diff --git a/data-mod/watcher/deu/cards.json b/data-mod/watcher/deu/cards.json new file mode 100644 index 00000000..bd9b808d --- /dev/null +++ b/data-mod/watcher/deu/cards.json @@ -0,0 +1,3860 @@ +[ + { + "id": "WATCHER-CONCLUDE", + "name": "Abschließen", + "description": "Füge ALLEN Gegnern 12 Schaden zu.\nBeende deinen Zug.", + "description_raw": "Füge ALLEN Gegnern {Damage:diff()} Schaden zu.\nBeende deinen Zug.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge ALLEN Gegnern 16 Schaden zu.\nBeende deinen Zug.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "Allmächtig werden", + "description": "Erhalte 3 [gold]Stärke[/gold].", + "description_raw": "Erhalte {StrengthPower:diff()} [gold]Stärke[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 4 [gold]Stärke[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "Allwissenheit", + "description": "Wähle eine Karte im Nachziehstapel. Spiele sie zweimal und erschöpfe sie.", + "description_raw": "Wähle eine Karte im Nachziehstapel. Spiele sie zweimal und erschöpfe sie.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-ALPHA", + "name": "Alpha", + "description": "Mische ein [gold]Beta[/gold] in den Nachziehstapel.", + "description_raw": "Mische ein [gold]Beta[/gold] in den Nachziehstapel.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-ANCIENT_CARD", + "name": "Anhäufen", + "description": "Solange du in [gold]Zorn[/gold] bist, füge +50% Schaden zu.", + "description_raw": "Solange du in [gold]Zorn[/gold] bist, füge +50% Schaden zu.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "Anschlusshieb", + "description": "Füge 7 Schaden zu.\nHast du zuletzt einen Angriff gespielt, erhalte [blue]1[/blue] [energy:1].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nHast du zuletzt einen Angriff gespielt, erhalte [blue]1[/blue] {energyPrefix:energyIcons(1)}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 11 Schaden zu.\nHast du zuletzt einen Angriff gespielt, erhalte [blue]1[/blue] [energy:1].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "Ansturm", + "description": "Immer wenn du [gold]Zorn[/gold] annimmst, ziehe 2 Karten.", + "description_raw": "Immer wenn du [gold]Zorn[/gold] annimmst, ziehe 2 Karten.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-ERUPTION", + "name": "Ausbruch", + "description": "Füge 9 Schaden zu.\nNimm [gold]Zorn[/gold] an.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nNimm [gold]Zorn[/gold] an.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-EVALUATE", + "name": "Auswerten", + "description": "Erhalte 6 [gold]Block[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 10 [gold]Block[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "Beharrlichkeit", + "description": "Erhalte 5 [gold]Block[/gold].\nBeim Behalten erhöhe den Block für diesen Kampf um 2.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nBeim Behalten erhöhe den Block für diesen Kampf um {Increase:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 7 [gold]Block[/gold].\nBeim Behalten erhöhe den Block für diesen Kampf um 3.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-BETA", + "name": "Beta", + "description": "Mische ein [gold]Omega[/gold] in den Nachziehstapel.", + "description_raw": "Mische ein [gold]Omega[/gold] in den Nachziehstapel.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-PRAY", + "name": "Beten", + "description": "Erhalte 3 [gold]Mantra[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "description_raw": "Erhalte {MantraPower:diff()} [gold]Mantra[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 4 [gold]Mantra[/gold].\nMische eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "Blasphemie", + "description": "Nimm [gold]Göttlichkeit[/gold] an.\nStirb nächsten Zug.", + "description_raw": "Nimm [gold]Göttlichkeit[/gold] an.\nStirb nächsten Zug.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "Brillanz", + "description": "Füge 12 Schaden zu.\nFügt mehr Schaden zu pro diesen Kampf erhaltenem [gold]Mantra[/gold].", + "description_raw": "Füge {CalculatedDamage:diff()} Schaden zu.\nFügt mehr Schaden zu pro diesen Kampf erhaltenem [gold]Mantra[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "Brodelnde Wut", + "description": "Zu Beginn deines nächsten Zuges nimm [gold]Zorn[/gold] an und ziehe 2 Karten.", + "description_raw": "Zu Beginn deines nächsten Zuges nimm [gold]Zorn[/gold] an und ziehe {DrawCardsNextTurnPower:diff()} Karten.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Zu Beginn deines nächsten Zuges nimm [gold]Zorn[/gold] an und ziehe 3 Karten.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "Crescendo", + "description": "Nimm [gold]Zorn[/gold] an.", + "description_raw": "Nimm [gold]Zorn[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "Den Himmel erreichen", + "description": "Füge 10 Schaden zu.\nMische ein [gold]Durch Gewalt[/gold] in den Nachziehstapel.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nMische ein [gold]Durch Gewalt[/gold] in den Nachziehstapel.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 15 Schaden zu.\nMische ein [gold]Durch Gewalt[/gold] in den Nachziehstapel.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "Deus ex Machina", + "description": "Unspielbar.\nWenn du diese Karte ziehst, nimm 2 [gold]Wunder[/gold] auf die [gold]Hand[/gold] und erschöpfe sie.", + "description_raw": "Unspielbar.\nWenn du diese Karte ziehst, nimm {Cards:diff()} [gold]Wunder[/gold] auf die [gold]Hand[/gold] und erschöpfe sie.", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Unspielbar.\nWenn du diese Karte ziehst, nimm 3 [gold]Wunder[/gold] auf die [gold]Hand[/gold] und erschöpfe sie.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "Devaform", + "description": "Flüchtig.\nErhalte immer zu Beginn deines Zuges [energy:1] und erhöhe diesen Wert um 1.", + "description_raw": "Flüchtig.\nErhalte immer zu Beginn deines Zuges {energyPrefix:energyIcons(1)} und erhöhe diesen Wert um 1.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-SWIVEL", + "name": "Drehen", + "description": "Erhalte 8 [gold]Block[/gold].\nDer nächste Angriff den du spielst kostet 0.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nDer nächste Angriff den du spielst kostet 0.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 11 [gold]Block[/gold].\nDer nächste Angriff den du spielst kostet 0.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "Drittes Auge", + "description": "Erhalte 7 [gold]Block[/gold].\n[gold]Spähe[/gold] 3.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\n[gold]Spähe[/gold] {Cards:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 9 [gold]Block[/gold].\n[gold]Spähe[/gold] 5.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "Durch Gewalt", + "description": "Füge 20 Schaden zu.", + "description_raw": "Füge {Damage:diff()} Schaden zu.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 30 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "Einfach Glück", + "description": "[gold]Spähe[/gold] 1.\nErhalte 2 [gold]Block[/gold].\nFüge 3 Schaden zu.", + "description_raw": "[gold]Spähe[/gold] {Cards:diff()}.\nErhalte {Block:diff()} [gold]Block[/gold].\nFüge {Damage:diff()} Schaden zu.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]Spähe[/gold] 2.\nErhalte 3 [gold]Block[/gold].\nFüge 4 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-WEAVE", + "name": "Einflechten", + "description": "Füge 4 Schaden zu.\nImmer wenn du [gold]Spähst[/gold], nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nImmer wenn du [gold]Spähst[/gold], nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 6 Schaden zu.\nImmer wenn du [gold]Spähst[/gold], nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "Einsegnen", + "description": "Füge ALLEN Gegnern 5 Schaden zu.", + "description_raw": "Füge ALLEN Gegnern {Damage:diff()} Schaden zu.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge ALLEN Gegnern 8 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-INSIGHT", + "name": "Einsicht", + "description": "Ziehe 2 Karten.", + "description_raw": "Ziehe {Cards:diff()} Karten.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ziehe 3 Karten.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "Empörung", + "description": "Falls du in [gold]Zorn[/gold] bist, wende 3 [gold]Verwundbar[/gold] auf ALLE Gegner an. Sonst nimm [gold]Zorn[/gold] an.", + "description_raw": "Falls du in [gold]Zorn[/gold] bist, wende {VulnerablePower:diff()} [gold]Verwundbar[/gold] auf ALLE Gegner an. Sonst nimm [gold]Zorn[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Falls du in [gold]Zorn[/gold] bist, wende 5 [gold]Verwundbar[/gold] auf ALLE Gegner an. Sonst nimm [gold]Zorn[/gold] an.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "Etablierung", + "description": "Immer wenn eine Karte behalten wird, senke ihre Kosten für diesen Kampf um 1.", + "description_raw": "Immer wenn eine Karte behalten wird, senke ihre Kosten für diesen Kampf um 1.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "Ewiges Leben", + "description": "Erhalte 6 [gold]Panzerrüstung[/gold].", + "description_raw": "Erhalte {PlatedArmorPower:diff()} [gold]Panzerrüstung[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 8 [gold]Panzerrüstung[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-FASTING", + "name": "Fasten", + "description": "Erhalte 3 [gold]Stärke[/gold].\nErhalte 3 [gold]Geschicklichkeit[/gold].\nErhalte jeden Zug 1 [energy:1] weniger.", + "description_raw": "Erhalte {StrengthPower:diff()} [gold]Stärke[/gold].\nErhalte {DexterityPower:diff()} [gold]Geschicklichkeit[/gold].\nErhalte jeden Zug 1 {energyPrefix:energyIcons(1)} weniger.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 4 [gold]Stärke[/gold].\nErhalte 4 [gold]Geschicklichkeit[/gold].\nErhalte jeden Zug 1 [energy:1] weniger.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "Flammenkranz", + "description": "Dein nächster Angriff fügt 5 Schaden mehr zu.", + "description_raw": "Dein nächster Angriff fügt {VigorPower:diff()} Schaden mehr zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Dein nächster Angriff fügt 8 Schaden mehr zu.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "Fliegende Ärmel", + "description": "Füge 4 Schaden zweimal zu.", + "description_raw": "Füge {Damage:diff()} Schaden zweimal zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 6 Schaden zweimal zu.", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "Flüchtige Klarheit", + "description": "ALLE Verbündeten nehmen [gold]Ruhe[/gold] an.\nSie verlassen [gold]Ruhe[/gold] zu Beginn ihres nächsten Zuges.", + "description_raw": "ALLE Verbündeten nehmen [gold]Ruhe[/gold] an.\nSie verlassen [gold]Ruhe[/gold] zu Beginn ihres nächsten Zuges.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "Fremder Einfluss", + "description": "Wähle 1 aus 3 Angriffen aller Farben. Nimm ihn auf die [gold]Hand[/gold].", + "description_raw": "Wähle 1 aus 3 Angriffen aller Farben. Nimm ihn auf die [gold]Hand[/gold].{IfUpgraded:show:\nEr kostet diesen Zug 0.|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Wähle 1 aus 3 Angriffen aller Farben. Nimm ihn auf die [gold]Hand[/gold].\nEr kostet diesen Zug 0.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "Fürchte kein Böses", + "description": "Füge 8 Schaden zu.\nFalls der Gegner angreifen will, nimm [gold]Ruhe[/gold] an.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nFalls der Gegner angreifen will, nimm [gold]Ruhe[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 11 Schaden zu.\nFalls der Gegner angreifen will, nimm [gold]Ruhe[/gold] an.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-SAFETY", + "name": "Geborgenheit", + "description": "Erhalte 12 [gold]Block[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 16 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "Geistesschild", + "description": "Erhalte 3 [gold]Block[/gold] pro Handkarte.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold] pro Handkarte.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 4 [gold]Block[/gold] pro Handkarte.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "Gelenke brechen", + "description": "Füge 8 Schaden zu.\nHast du diesen Kampf zuletzt eine [gold]Fertigkeit[/gold] gespielt, wende 1 [gold]Verwundbar[/gold] an.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nHast du diesen Kampf zuletzt eine [gold]Fertigkeit[/gold] gespielt, wende {VulnerablePower:diff()} [gold]Verwundbar[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 10 Schaden zu.\nHast du diesen Kampf zuletzt eine [gold]Fertigkeit[/gold] gespielt, wende 2 [gold]Verwundbar[/gold] an.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "Gesudel", + "description": "Ziehe Karten, bis deine [gold]Hand[/gold] voll ist.", + "description_raw": "Ziehe Karten, bis deine [gold]Hand[/gold] voll ist.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "Geteilte Weisheit", + "description": "Ein anderer Spieler nimmt [gold]Göttlichkeit[/gold] an.", + "description_raw": "Ein anderer Spieler nimmt [gold]Göttlichkeit[/gold] an.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-HALT", + "name": "Halt", + "description": "Erhalte 3 [gold]Block[/gold].\nFalls du in [gold]Zorn[/gold] bist, erhalte 9 zusätzlichen [gold]Block[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nFalls du in [gold]Zorn[/gold] bist, erhalte {WrathBlock:diff()} zusätzlichen [gold]Block[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 4 [gold]Block[/gold].\nFalls du in [gold]Zorn[/gold] bist, erhalte 14 zusätzlichen [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-SANCTITY", + "name": "Heiligkeit", + "description": "Erhalte 6 [gold]Block[/gold].\nHast du diesen Kampf zuletzt eine Fertigkeit gespielt, ziehe 2 Karten.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nHast du diesen Kampf zuletzt eine Fertigkeit gespielt, ziehe 2 Karten.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 9 [gold]Block[/gold].\nHast du diesen Kampf zuletzt eine Fertigkeit gespielt, ziehe 2 Karten.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "Hiebregen", + "description": "Füge 4 Schaden zu.\nÄnderst du Haltungen, nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nÄnderst du Haltungen, nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 6 Schaden zu.\nÄnderst du Haltungen, nimm diese Karte vom Abwurfstapel auf die [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-DEVOTION", + "name": "Hingabe", + "description": "Erhalte immer zu Beginn deines Zuges 2 [gold]Mantra[/gold].", + "description_raw": "Erhalte immer zu Beginn deines Zuges {DevotionPower:diff()} [gold]Mantra[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte immer zu Beginn deines Zuges 3 [gold]Mantra[/gold].", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "Innerer Friede", + "description": "Falls du in [gold]Ruhe[/gold] bist, ziehe 3 Karten. Sonst nimm [gold]Ruhe[/gold] an.", + "description_raw": "Falls du in [gold]Ruhe[/gold] bist, ziehe {Cards:diff()} Karten. Sonst nimm [gold]Ruhe[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Falls du in [gold]Ruhe[/gold] bist, ziehe 4 Karten. Sonst nimm [gold]Ruhe[/gold] an.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "Kampfhymne", + "description": "Nimm immer zu Beginn deines Zuges ein [gold]Zertrümmern[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Nimm immer zu Beginn deines Zuges ein [gold]Zertrümmern[/gold] auf die [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "Kegeln", + "description": "Füge pro Gegner im Kampf 7 Schaden zu.", + "description_raw": "Füge pro Gegner im Kampf {Damage:diff()} Schaden zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge pro Gegner im Kampf 10 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "Klinge beschwören", + "description": "Mische einen [gold]Vernichter[/gold] in den Nachziehstapel.", + "description_raw": "Mische einen [gold]Vernichter[/gold] {IfUpgraded:show:mit X+1 |}in den Nachziehstapel.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Mische einen [gold]Vernichter[/gold] mit X+1 in den Nachziehstapel.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "Leere Faust", + "description": "Füge 9 Schaden zu.\nVerlasse deine [gold]Haltung[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nVerlasse deine [gold]Haltung[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 14 Schaden zu.\nVerlasse deine [gold]Haltung[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "Leerer Kopf", + "description": "Ziehe 2 Karten.\nVerlasse deine [gold]Haltung[/gold].", + "description_raw": "Ziehe {Cards:diff()} Karten.\nVerlasse deine [gold]Haltung[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ziehe 3 Karten.\nVerlasse deine [gold]Haltung[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "Leerer Körper", + "description": "Erhalte 7 [gold]Block[/gold].\nVerlasse deine [gold]Haltung[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nVerlasse deine [gold]Haltung[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 10 [gold]Block[/gold].\nVerlasse deine [gold]Haltung[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "Lektion gelernt", + "description": "Füge 10 Schaden zu.\nFalls tödlich, verbessere 1 zufällige Karte in deinem [gold]Deck[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nFalls tödlich, verbessere 1 zufällige Karte in deinem [gold]Deck[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 13 Schaden zu.\nFalls tödlich, verbessere 1 zufällige Karte in deinem [gold]Deck[/gold].", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-MEDITATE", + "name": "Meditieren", + "description": "Nimm 1 Karte vom Abwurfstapel auf die [gold]Hand[/gold] und behalte sie.\nNimm [gold]Ruhe[/gold] an.\nBeende deinen Zug.", + "description_raw": "Nimm {Cards:diff()} {Cards:plural:Karte|Karten} vom Abwurfstapel auf die [gold]Hand[/gold] und behalte {Cards:plural:sie|sie}.\nNimm [gold]Ruhe[/gold] an.\nBeende deinen Zug.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Nimm 2 Karten vom Abwurfstapel auf die [gold]Hand[/gold] und behalte sie.\nNimm [gold]Ruhe[/gold] an.\nBeende deinen Zug.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "Mentale Festung", + "description": "Immer wenn du deine [gold]Haltung[/gold] änderst, erhalte 4 [gold]Block[/gold].", + "description_raw": "Immer wenn du deine [gold]Haltung[/gold] änderst, erhalte {MentalFortressPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Immer wenn du deine [gold]Haltung[/gold] änderst, erhalte 6 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "Niederknien", + "description": "Erhalte 2 [gold]Mantra[/gold].\nErhalte 4 [gold]Block[/gold].", + "description_raw": "Erhalte {MantraPower:diff()} [gold]Mantra[/gold].\nErhalte {Block:diff()} [gold]Block[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 3 [gold]Mantra[/gold].\nErhalte 4 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-NIRVANA", + "name": "Nirvana", + "description": "Immer wenn du [gold]Spähst[/gold], erhalte 3 [gold]Block[/gold].", + "description_raw": "Immer wenn du [gold]Spähst[/gold], erhalte {NirvanaPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Immer wenn du [gold]Spähst[/gold], erhalte 4 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "Offenbarung", + "description": "Füge 12 Schaden zu.\nNimm [gold]Göttlichkeit[/gold] an.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nNimm [gold]Göttlichkeit[/gold] an.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-OMEGA", + "name": "Omega", + "description": "Füge immer am Ende deines Zuges ALLEN Gegnern 50 Schaden zu.", + "description_raw": "Füge immer am Ende deines Zuges ALLEN Gegnern {OmegaPower:diff()} Schaden zu.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge immer am Ende deines Zuges ALLEN Gegnern 60 Schaden zu.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "Ragnarök", + "description": "Füge 5 mal einem zufälligen Gegner 5 Schaden zu.", + "description_raw": "Füge {Repeat:diff()} mal einem zufälligen Gegner {Damage:diff()} Schaden zu.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 6 mal einem zufälligen Gegner 6 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "Realität meistern", + "description": "Jede Karte, die du im Kampf erhältst, ist verbessert.", + "description_raw": "Jede Karte, die du im Kampf erhältst, ist verbessert.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "Realität prägen", + "description": "Füge 6 Schaden zu.\nNimm ein [gold]Zertrümmern[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nNimm ein [gold]Zertrümmern[/gold] auf die [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 10 Schaden zu.\nNimm ein [gold]Zertrümmern[/gold] auf die [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "Realität trügen", + "description": "Erhalte 4 [gold]Block[/gold].\nNimm eine [gold]Geborgenheit[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nNimm eine [gold]Geborgenheit[/gold] auf die [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 7 [gold]Block[/gold].\nNimm eine [gold]Geborgenheit[/gold] auf die [gold]Hand[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "Ruhm und Reichtum", + "description": "Erhalte 25 [gold]Gold[/gold].", + "description_raw": "Erhalte {Gold:diff()} [gold]Gold[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 30 [gold]Gold[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-COLLECT", + "name": "Sammeln", + "description": "Nimm zu Beginn deiner nächsten X Züge ein [gold]Wunder+[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Nimm zu Beginn deiner nächsten {IfUpgraded:show:X+1|X} Züge ein [gold]Wunder+[/gold] auf die [gold]Hand[/gold].", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Nimm zu Beginn deiner nächsten X+1 Züge ein [gold]Wunder+[/gold] auf die [gold]Hand[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "Sand der Zeit", + "description": "Füge 20 Schaden zu.\nBeim Behalten verringere die Kosten für diesen Kampf um 1.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nBeim Behalten verringere die Kosten für diesen Kampf um 1.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 26 Schaden zu.\nBeim Behalten verringere die Kosten für diesen Kampf um 1.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "Schicksalsschnitt", + "description": "Füge 7 Schaden zu.\n[gold]Spähe[/gold] 2.\nZiehe [blue]1[/blue] Karte.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\n[gold]Spähe[/gold] {Cards:diff()}.\nZiehe [blue]1[/blue] Karte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 9 Schaden zu.\n[gold]Spähe[/gold] 3.\nZiehe [blue]1[/blue] Karte.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "Schlag", + "description": "Füge 6 Schaden zu.", + "description_raw": "Füge {Damage:diff()} Schaden zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 9 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "Schwachpunkte", + "description": "Wende 8 [gold]Markierung[/gold] an.\nALLE Gegner verlieren TP in Höhe ihrer [gold]Markierung[/gold].", + "description_raw": "Wende {MarkPower:diff()} [gold]Markierung[/gold] an.\nALLE Gegner verlieren TP in Höhe ihrer [gold]Markierung[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Wende 11 [gold]Markierung[/gold] an.\nALLE Gegner verlieren TP in Höhe ihrer [gold]Markierung[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "Schärpenknall", + "description": "Füge 8 Schaden zu.\nHast du diesen Kampf zuletzt einen Angriff gespielt, wende 1 [gold]Schwach[/gold] an.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nHast du diesen Kampf zuletzt einen Angriff gespielt, wende {WeakPower:diff()} [gold]Schwach[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 10 Schaden zu.\nHast du diesen Kampf zuletzt einen Angriff gespielt, wende 2 [gold]Schwach[/gold] an.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-PROTECT", + "name": "Schützen", + "description": "Erhalte 12 [gold]Block[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 16 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "Spezialmanöver", + "description": "Nur spielbar, wenn dies dein einziger Angriff auf der [gold]Hand[/gold] ist.\nFüge 30 Schaden zu.", + "description_raw": "Nur spielbar, wenn dies dein einziger Angriff auf der [gold]Hand[/gold] ist.\nFüge {Damage:diff()} Schaden zu.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Nur spielbar, wenn dies dein einziger Angriff auf der [gold]Hand[/gold] ist.\nFüge 40 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "Sprich zur Hand", + "description": "Füge 5 Schaden zu.\nImmer wenn du diesen Gegner angreifst, erhalte 2 [gold]Block[/gold].", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nImmer wenn du diesen Gegner angreifst, erhalte {BlockReturnPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 7 Schaden zu.\nImmer wenn du diesen Gegner angreifst, erhalte 3 [gold]Block[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "Stille", + "description": "Nimm [gold]Ruhe[/gold] an.", + "description_raw": "Nimm [gold]Ruhe[/gold] an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-STUDY", + "name": "Studieren", + "description": "Mische immer am Ende deines Zuges eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "description_raw": "Mische immer am Ende deines Zuges eine [gold]Einsicht[/gold] in den Nachziehstapel.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "Urteil", + "description": "Falls der Gegner 30 oder weniger TP hat, setze seine TP auf 0.", + "description_raw": "Falls der Gegner {DamageThreshold:diff()} oder weniger TP hat, setze seine TP auf 0.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Falls der Gegner 40 oder weniger TP hat, setze seine TP auf 0.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-WORSHIP", + "name": "Verehren", + "description": "Erhalte 5 [gold]Mantra[/gold].", + "description_raw": "Erhalte 5 [gold]Mantra[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-WALLOP", + "name": "Verhauen", + "description": "Füge 9 Schaden zu.\nErhalte soviel [gold]Block[/gold], wie du ungeblockten Schaden zugefügt hast.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nErhalte soviel [gold]Block[/gold], wie du ungeblockten Schaden zugefügt hast.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 12 Schaden zu.\nErhalte soviel [gold]Block[/gold], wie du ungeblockten Schaden zugefügt hast.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "Vernichter", + "description": "Füge 9 Schaden X mal zu.", + "description_raw": "Füge {Damage:diff()} Schaden {Repeat:cond:<0?X|{Repeat:diff()}} mal zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 15 Schaden X mal zu.", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "Verteidigen", + "description": "Erhalte 5 [gold]Block[/gold].", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 8 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "Voraussicht", + "description": "Spähe immer zu Beginn deines Zuges 3.", + "description_raw": "Spähe immer zu Beginn deines Zuges {ForesightPower:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Spähe immer zu Beginn deines Zuges 4.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "Wachsamkeit", + "description": "Erhalte 8 [gold]Block[/gold].\nNimm [gold]Ruhe[/gold] an.", + "description_raw": "Erhalte {Block:diff()} [gold]Block[/gold].\nNimm [gold]Ruhe[/gold] an.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte 12 [gold]Block[/gold].\nNimm [gold]Ruhe[/gold] an.", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "Wie Wasser", + "description": "Erhalte immer am Ende deines Zuges, falls du in [gold]Ruhe[/gold] bist, 5 [gold]Block[/gold].", + "description_raw": "Erhalte immer am Ende deines Zuges, falls du in [gold]Ruhe[/gold] bist, {LikeWaterPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte immer am Ende deines Zuges, falls du in [gold]Ruhe[/gold] bist, 7 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "Windmühlschlag", + "description": "Füge 7 Schaden zu.\nBeim Behalten erhöhe den Schaden für diesen Kampf um 4.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nBeim Behalten erhöhe den Schaden für diesen Kampf um {RetainIncrease:diff()}.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 10 Schaden zu.\nBeim Behalten erhöhe den Schaden für diesen Kampf um 5.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "Wink mit der Hand", + "description": "Immer wenn du diesen Zug [gold]Block[/gold] erhältst, wende 1 [gold]Schwach[/gold] auf ALLE Gegner an.", + "description_raw": "Immer wenn du diesen Zug [gold]Block[/gold] erhältst, wende {WaveOfTheHandPower:diff()} [gold]Schwach[/gold] auf ALLE Gegner an.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Immer wenn du diesen Zug [gold]Block[/gold] erhältst, wende 2 [gold]Schwach[/gold] auf ALLE Gegner an.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "Wirbeltritt", + "description": "Füge 15 Schaden zu.\nZiehe 2 Karten.", + "description_raw": "Füge {Damage:diff()} Schaden zu.\nZiehe {Cards:diff()} Karten.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 20 Schaden zu.\nZiehe 2 Karten.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-MIRACLE", + "name": "Wunder", + "description": "Erhalte [energy:1].", + "description_raw": "Erhalte {Energy:energyIcons()}.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Erhalte [energy:2].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-TANTRUM", + "name": "Wutanfall", + "description": "Füge 3 mal 3 Schaden zu.\nNimm [gold]Zorn[/gold] an.\nMische diese Karte in den Nachziehstapel.", + "description_raw": "Füge {Repeat:diff()} mal {Damage:diff()} Schaden zu.\nNimm [gold]Zorn[/gold] an.\nMische diese Karte in den Nachziehstapel.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 4 mal 3 Schaden zu.\nNimm [gold]Zorn[/gold] an.\nMische diese Karte in den Nachziehstapel.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "Wünschen", + "description": "Wähle eins:\nErhalte 6 [gold]Panzerrüstung[/gold],\n3 [gold]Stärke[/gold] oder 25 [gold]Gold[/gold].", + "description_raw": "Wähle eins:\nErhalte {PlatedArmorPower:diff()} [gold]Panzerrüstung[/gold],\n{StrengthPower:diff()} [gold]Stärke[/gold] oder {Gold:diff()} [gold]Gold[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Wähle eins:\nErhalte 8 [gold]Panzerrüstung[/gold],\n4 [gold]Stärke[/gold] oder 30 [gold]Gold[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-SMITE", + "name": "Zertrümmern", + "description": "Füge 12 Schaden zu.", + "description_raw": "Füge {Damage:diff()} Schaden zu.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Füge 16 Schaden zu.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-VAULT", + "name": "Überspringen", + "description": "Du hast einen weiteren Zug nach diesem.\nBeende deinen Zug.", + "description_raw": "Du hast einen weiteren Zug nach diesem.\nBeende deinen Zug.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + } +] \ No newline at end of file diff --git a/data-mod/watcher/deu/potions.json b/data-mod/watcher/deu/potions.json new file mode 100644 index 00000000..399add24 --- /dev/null +++ b/data-mod/watcher/deu/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "Abgefülltes Wunder", + "description": "Nimm X [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Nimm {Cards:diff()} [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-AMBROSIA", + "name": "Ambrosia", + "description": "Nimm [gold]Göttlichkeit[/gold] an.", + "description_raw": "Nimm [gold]Göttlichkeit[/gold] an.", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "Ruhetrank", + "description": "Nimm [gold]Ruhe[/gold] an.", + "description_raw": "Nimm [gold]Ruhe[/gold] an.", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "Zorntrank", + "description": "Nimm [gold]Zorn[/gold] an.", + "description_raw": "Nimm [gold]Zorn[/gold] an.", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/deu/relics.json b/data-mod/watcher/deu/relics.json new file mode 100644 index 00000000..0ed65451 --- /dev/null +++ b/data-mod/watcher/deu/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-DAMARU", + "name": "Damaru", + "description": "Erhalte zu Beginn deines Zuges 1 [gold]Mantra[/gold].", + "description_raw": "Erhalte zu Beginn deines Zuges 1 [gold]Mantra[/gold].", + "flavor": "Der Klang des Trömmelchens hält deinen Geist wach und zeigt dir, wie es weitergeht.", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 0 + }, + { + "id": "WATCHER-DUALITY", + "name": "Dualität", + "description": "Immer wenn du einen [gold]Angriff[/gold] spielst, erhalte 1 temporäre [gold]Geschicklichkeit[/gold].", + "description_raw": "Immer wenn du einen [gold]Angriff[/gold] spielst, erhalte 1 temporäre [gold]Geschicklichkeit[/gold].", + "flavor": "\"Und die Sonne war für immer gelöscht, als hätte sich ein Vorhang vor ihr geschlossen.\" - Zoroth", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 1 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "Goldenes Auge", + "description": "Immer wenn du [gold]spähst[/gold], spähe 2 Karten mehr.", + "description_raw": "Immer wenn du [gold]spähst[/gold], spähe 2 Karten mehr.", + "flavor": "Lies die Gedanken der Umstehenden und sieh voraus, was sie gleich tun.", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 2 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "Heiliges Wasser", + "description": "Ersetzt [gold]Reines Wasser[/gold]. Nimm zu Beginn jedes Kampfes 3 [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Ersetzt [gold]Reines Wasser[/gold]. Nimm zu Beginn jedes Kampfes 3 [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "flavor": "Noch aus einer Zeit vor dem Spire.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 3 + }, + { + "id": "WATCHER-MELANGE", + "name": "Melange", + "description": "Immer wenn du den Nachziehstapel mischst, [gold]spähe[/gold] 3.", + "description_raw": "Immer wenn du den Nachziehstapel mischst, [gold]spähe[/gold] 3.", + "flavor": "Mysteriöser Sand von unbekanntem Ursprung. Riecht nach Zimt.", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 4 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "Purpurlotus", + "description": "Immer wenn du [gold]Ruhe[/gold] verlässt, erhalte eine zusätzliche [gold]Energie[/gold].", + "description_raw": "Immer wenn du [gold]Ruhe[/gold] verlässt, erhalte eine zusätzliche [gold]Energie[/gold].", + "flavor": "Die alten Schriften beschreiben, dass die Oberfläche von \"Manapools\" mit diesen Blumen übersät waren.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 5 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "Reines Wasser", + "description": "Nimm zu Beginn jedes Kampfes ein [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "description_raw": "Nimm zu Beginn jedes Kampfes ein [gold]Wunder[/gold] auf die [gold]Hand[/gold].", + "flavor": "Durch feinen Sand gefiltert und frei von Unreinheiten.", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 6 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "Tränenmedaillon", + "description": "Beginne jeden Kampf in [gold]Ruhe[/gold].", + "description_raw": "Beginne jeden Kampf in [gold]Ruhe[/gold].", + "flavor": "Ist der Besitzer blind, bleibt der Inhalt ungesehen.", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/eng/cards.json b/data-mod/watcher/eng/cards.json new file mode 100644 index 00000000..e08a5a07 --- /dev/null +++ b/data-mod/watcher/eng/cards.json @@ -0,0 +1,3860 @@ +[ + { + "id": "WATCHER-ANCIENT_CARD", + "name": "Accumulate", + "description": "While in [gold]Wrath[/gold], deal +50% damage.", + "description_raw": "While in [gold]Wrath[/gold], deal +50% damage.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-ALPHA", + "name": "Alpha", + "description": "Shuffle a [gold]Beta[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Shuffle a [gold]Beta[/gold] into your [gold]Draw Pile[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "Battle Hymn", + "description": "At the start of each turn, add a [gold]Smite[/gold] into your [gold]Hand[/gold].", + "description_raw": "At the start of each turn, add a [gold]Smite[/gold] into your [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "Become Almighty", + "description": "Gain 3 [gold]Strength[/gold].", + "description_raw": "Gain {StrengthPower:diff()} [gold]Strength[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 4 [gold]Strength[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-BETA", + "name": "Beta", + "description": "Shuffle an [gold]Omega[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Shuffle an [gold]Omega[/gold] into your [gold]Draw Pile[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "Blasphemy", + "description": "Enter [gold]Divinity[/gold].\nDie next turn.", + "description_raw": "Enter [gold]Divinity[/gold].\nDie next turn.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "Bowling Bash", + "description": "Deal 7 damage for each enemy in combat.", + "description_raw": "Deal {Damage:diff()} damage for each enemy in combat.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 10 damage for each enemy in combat.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "Brilliance", + "description": "Deal 12 damage.\nDeals additional damage equal to [gold]Mantra[/gold] gained this combat.", + "description_raw": "Deal {CalculatedDamage:diff()} damage.\nDeals additional damage equal to [gold]Mantra[/gold] gained this combat.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "Carve Reality", + "description": "Deal 6 damage.\nAdd a [gold]Smite[/gold] into your [gold]Hand[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nAdd a [gold]Smite[/gold] into your [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 10 damage.\nAdd a [gold]Smite[/gold] into your [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-COLLECT", + "name": "Collect", + "description": "Put a [gold]Miracle+[/gold] into your [gold]Hand[/gold] at the start\nof your next X turns.", + "description_raw": "Put a [gold]Miracle+[/gold] into your [gold]Hand[/gold] at the start\nof your next {IfUpgraded:show:X+1|X} turns.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Put a [gold]Miracle+[/gold] into your [gold]Hand[/gold] at the start\nof your next X+1 turns.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "Conclude", + "description": "Deal 12 damage to ALL enemies.\nEnd your turn.", + "description_raw": "Deal {Damage:diff()} damage to ALL enemies.\nEnd your turn.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 16 damage to ALL enemies.\nEnd your turn.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "Conjure Blade", + "description": "Shuffle an [gold]Expunger[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Shuffle an [gold]Expunger[/gold] {IfUpgraded:show:with X+1 |}into your [gold]Draw Pile[/gold].", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Shuffle an [gold]Expunger[/gold] with X+1 into your [gold]Draw Pile[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "Consecrate", + "description": "Deal 5 damage to ALL enemies.", + "description_raw": "Deal {Damage:diff()} damage to ALL enemies.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 8 damage to ALL enemies.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "Crescendo", + "description": "Enter [gold]Wrath[/gold].", + "description_raw": "Enter [gold]Wrath[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "Crush Joints", + "description": "Deal 8 damage.\nIf the last card played this combat was a Skill, apply 1 [gold]Vulnerable[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nIf the last card played this combat was a Skill, apply {VulnerablePower:diff()} [gold]Vulnerable[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 10 damage.\nIf the last card played this combat was a Skill, apply 2 [gold]Vulnerable[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "Cut Through Fate", + "description": "Deal 7 damage.\n[gold]Scry[/gold] 2.\nDraw a card.", + "description_raw": "Deal {Damage:diff()} damage.\n[gold]Scry[/gold] {Cards:diff()}.\nDraw a card.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 9 damage.\n[gold]Scry[/gold] 3.\nDraw a card.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "Deceive Reality", + "description": "Gain 4 [gold]Block[/gold].\nAdd a [gold]Safety[/gold] into your [gold]Hand[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nAdd a [gold]Safety[/gold] into your [gold]Hand[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 7 [gold]Block[/gold].\nAdd a [gold]Safety[/gold] into your [gold]Hand[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "Defend", + "description": "Gain 5 [gold]Block[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 8 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "Deus Ex Machina", + "description": "When you draw this card, add 2 [gold]Miracles[/gold] to your [gold]Hand[/gold] and [gold]Exhaust[/gold].", + "description_raw": "When you draw this card, add {Cards:diff()} [gold]Miracles[/gold] to your [gold]Hand[/gold] and [gold]Exhaust[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "When you draw this card, add 3 [gold]Miracles[/gold] to your [gold]Hand[/gold] and [gold]Exhaust[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "Deva Form", + "description": "At the start of your turn, gain [energy:1] and increase this gain by 1.", + "description_raw": "At the start of your turn, gain {Energy:energyIcons()} and increase this gain by 1.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-DEVOTION", + "name": "Devotion", + "description": "At the start of your turn, gain 2 [gold]Mantra[/gold].", + "description_raw": "At the start of your turn, gain {DevotionPower:diff()} [gold]Mantra[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "At the start of your turn, gain 3 [gold]Mantra[/gold].", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "Empty Body", + "description": "Gain 7 [gold]Block[/gold].\nExit your Stance.", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nExit your Stance.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 10 [gold]Block[/gold].\nExit your Stance.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "Empty Fist", + "description": "Deal 9 damage.\nExit your Stance.", + "description_raw": "Deal {Damage:diff()} damage.\nExit your Stance.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 14 damage.\nExit your Stance.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "Empty Mind", + "description": "Draw 2 cards.\nExit your Stance.", + "description_raw": "Draw {Cards:diff()} cards.\nExit your Stance.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Draw 3 cards.\nExit your Stance.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-ERUPTION", + "name": "Eruption", + "description": "Deal 9 damage.\nEnter [gold]Wrath[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nEnter [gold]Wrath[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "Establishment", + "description": "Whenever a card is [gold]Retained[/gold], reduce its cost by 1 this combat.", + "description_raw": "Whenever a card is [gold]Retained[/gold], reduce its cost by 1 this combat.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-EVALUATE", + "name": "Evaluate", + "description": "Gain 6 [gold]Block[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 10 [gold]Block[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "Expunger", + "description": "Deal 9 damage X times.", + "description_raw": "Deal {Damage:diff()} damage {Repeat:cond:<0?X|{Repeat:diff()}} times.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 15 damage X times.", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "Fame and Fortune", + "description": "Gain 25 [gold]Gold[/gold].", + "description_raw": "Gain {Gold:diff()} [gold]Gold[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 30 [gold]Gold[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-FASTING", + "name": "Fasting", + "description": "Gain 3 [gold]Strength[/gold].\nGain 3 [gold]Dexterity[/gold].\nGain 1 less [energy:1] at the start of each turn.", + "description_raw": "Gain {StrengthPower:diff()} [gold]Strength[/gold].\nGain {DexterityPower:diff()} [gold]Dexterity[/gold].\nGain 1 less {energyPrefix:energyIcons(1)} at the start of each turn.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 4 [gold]Strength[/gold].\nGain 4 [gold]Dexterity[/gold].\nGain 1 less [energy:1] at the start of each turn.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "Fear No Evil", + "description": "Deal 8 damage.\nIf the enemy intends to attack, enter [gold]Calm[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nIf the enemy intends to attack, enter [gold]Calm[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 11 damage.\nIf the enemy intends to attack, enter [gold]Calm[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "Fleeting Clarity", + "description": "ALL allies enter [gold]Calm[/gold].\nThey exit [gold]Calm[/gold] at the start of their next turn.", + "description_raw": "ALL allies enter [gold]Calm[/gold].\nThey exit [gold]Calm[/gold] at the start of their next turn.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "Flurry of Blows", + "description": "Deal 4 damage.\nWhenever you change Stances, return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nWhenever you change Stances, return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 6 damage.\nWhenever you change Stances, return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "Flying Sleeves", + "description": "Deal 4 damage twice.", + "description_raw": "Deal {Damage:diff()} damage twice.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 6 damage twice.", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "Follow-Up", + "description": "Deal 7 damage.\nIf the last card played was an Attack, gain [energy:1].", + "description_raw": "Deal {Damage:diff()} damage.\nIf the last card played was an Attack, gain {Energy:energyIcons()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 11 damage.\nIf the last card played was an Attack, gain [energy:1].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "Foreign Influence", + "description": "Choose 1 of 3 Attacks of any color to add to your [gold]Hand[/gold].", + "description_raw": "Choose 1 of 3 Attacks of any color to add to your [gold]Hand[/gold].{IfUpgraded:show:\nIt's free to play this turn.|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Choose 1 of 3 Attacks of any color to add to your [gold]Hand[/gold].\nIt's free to play this turn.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "Foresight", + "description": "At the start of your turn, [gold]Scry[/gold] 3.", + "description_raw": "At the start of your turn, [gold]Scry[/gold] {ForesightPower:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "At the start of your turn, [gold]Scry[/gold] 4.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-HALT", + "name": "Halt", + "description": "Gain 3 [gold]Block[/gold].\nIf you are in [gold]Wrath[/gold],\ngain 9 additional\n[gold]Block[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nIf you are in [gold]Wrath[/gold],\ngain {WrathBlock:diff()} additional\n[gold]Block[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 4 [gold]Block[/gold].\nIf you are in [gold]Wrath[/gold],\ngain 14 additional\n[gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "Indignation", + "description": "If you are in [gold]Wrath[/gold], apply 3 [gold]Vulnerable[/gold] to ALL enemies. Otherwise, enter [gold]Wrath[/gold].", + "description_raw": "If you are in [gold]Wrath[/gold], apply {VulnerablePower:diff()} [gold]Vulnerable[/gold] to ALL enemies. Otherwise, enter [gold]Wrath[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "If you are in [gold]Wrath[/gold], apply 5 [gold]Vulnerable[/gold] to ALL enemies. Otherwise, enter [gold]Wrath[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "Inner Peace", + "description": "If you are in [gold]Calm[/gold], draw 3 cards.\nOtherwise, enter [gold]Calm[/gold].", + "description_raw": "If you are in [gold]Calm[/gold], draw {Cards:diff()} cards.\nOtherwise, enter [gold]Calm[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "If you are in [gold]Calm[/gold], draw 4 cards.\nOtherwise, enter [gold]Calm[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-INSIGHT", + "name": "Insight", + "description": "Draw 2 cards.", + "description_raw": "Draw {Cards:diff()} cards.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Draw 3 cards.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "Judgment", + "description": "If the enemy has 30 HP or less, set their HP to 0.", + "description_raw": "If the enemy has {DamageThreshold:diff()} HP or less, set their HP to 0.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "If the enemy has 40 HP or less, set their HP to 0.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "Just Lucky", + "description": "[gold]Scry[/gold] 1.\nGain 2 [gold]Block[/gold].\nDeal 3 damage.", + "description_raw": "[gold]Scry[/gold] {Cards:diff()}.\nGain {Block:diff()} [gold]Block[/gold].\nDeal {Damage:diff()} damage.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]Scry[/gold] 2.\nGain 3 [gold]Block[/gold].\nDeal 4 damage.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "Lesson Learned", + "description": "Deal 10 damage.\nIf [gold]Fatal[/gold], Upgrade a random card in your [gold]Deck[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nIf [gold]Fatal[/gold], Upgrade a random card in your [gold]Deck[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 13 damage.\nIf [gold]Fatal[/gold], Upgrade a random card in your [gold]Deck[/gold].", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "Like Water", + "description": "At the end of your turn, if you are in [gold]Calm[/gold], gain 5 [gold]Block[/gold].", + "description_raw": "At the end of your turn, if you are in [gold]Calm[/gold], gain {LikeWaterPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "At the end of your turn, if you are in [gold]Calm[/gold], gain 7 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "Live Forever", + "description": "Gain 6 [gold]Plated Armor[/gold].", + "description_raw": "Gain {PlatedArmorPower:diff()} [gold]Plated Armor[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 8 [gold]Plated Armor[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "Master Reality", + "description": "Whenever a card is created during combat, Upgrade it.", + "description_raw": "Whenever a card is created during combat, Upgrade it.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-MEDITATE", + "name": "Meditate", + "description": "Put 1 card from your [gold]Discard Pile[/gold] into your [gold]Hand[/gold] and [gold]Retain[/gold] it.\nEnter [gold]Calm[/gold].\nEnd your turn.", + "description_raw": "Put {Cards:diff()} {Cards:plural:card|cards} from your [gold]Discard Pile[/gold] into your [gold]Hand[/gold] and [gold]Retain[/gold] {Cards:plural:it|them}.\nEnter [gold]Calm[/gold].\nEnd your turn.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Put 2 cards from your [gold]Discard Pile[/gold] into your [gold]Hand[/gold] and [gold]Retain[/gold] them.\nEnter [gold]Calm[/gold].\nEnd your turn.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "Mental Fortress", + "description": "Whenever you change Stances, gain 4 [gold]Block[/gold].", + "description_raw": "Whenever you change Stances, gain {MentalFortressPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Whenever you change Stances, gain 6 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-MIRACLE", + "name": "Miracle", + "description": "Gain [energy:1].", + "description_raw": "Gain {Energy:energyIcons()}.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain [energy:2].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-NIRVANA", + "name": "Nirvana", + "description": "Whenever you [gold]Scry[/gold], gain 3 [gold]Block[/gold].", + "description_raw": "Whenever you [gold]Scry[/gold], gain {NirvanaPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Whenever you [gold]Scry[/gold], gain 4 [gold]Block[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-OMEGA", + "name": "Omega", + "description": "At the end of your turn, deal 50 damage to ALL enemies.", + "description_raw": "At the end of your turn, deal {OmegaPower:diff()} damage to ALL enemies.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "At the end of your turn, deal 60 damage to ALL enemies.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "Omniscience", + "description": "Choose a card in your [gold]Draw Pile[/gold].\nPlay the chosen card twice and [gold]Exhaust[/gold] it.", + "description_raw": "Choose a card in your [gold]Draw Pile[/gold].\nPlay the chosen card twice and [gold]Exhaust[/gold] it.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "Perseverance", + "description": "Gain 5 [gold]Block[/gold].\nWhenever this card is [gold]Retained[/gold], increase its [gold]Block[/gold] by 2.", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nWhenever this card is [gold]Retained[/gold], increase its [gold]Block[/gold] by {Increase:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 7 [gold]Block[/gold].\nWhenever this card is [gold]Retained[/gold], increase its [gold]Block[/gold] by 3.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-PRAY", + "name": "Pray", + "description": "Gain 3 [gold]Mantra[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Gain {MantraPower:diff()} [gold]Mantra[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 4 [gold]Mantra[/gold].\nShuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "Pressure Points", + "description": "Apply 8 [gold]Mark[/gold].\nALL enemies lose HP\nequal to their [gold]Mark[/gold].", + "description_raw": "Apply {MarkPower:diff()} [gold]Mark[/gold].\nALL enemies lose HP\nequal to their [gold]Mark[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Apply 11 [gold]Mark[/gold].\nALL enemies lose HP\nequal to their [gold]Mark[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "Prostrate", + "description": "Gain 2 [gold]Mantra[/gold].\nGain 4 [gold]Block[/gold].", + "description_raw": "Gain {MantraPower:diff()} [gold]Mantra[/gold].\nGain {Block:diff()} [gold]Block[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 3 [gold]Mantra[/gold].\nGain 4 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-PROTECT", + "name": "Protect", + "description": "Gain 12 [gold]Block[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 16 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "Ragnarok", + "description": "Deal 5 damage to a random enemy 5 times.", + "description_raw": "Deal {Damage:diff()} damage to a random enemy {Repeat:diff()} times.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 6 damage to a random enemy 6 times.", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "Reach Heaven", + "description": "Deal 10 damage.\nShuffle a [gold]Through Violence[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nShuffle a [gold]Through Violence[/gold] into your [gold]Draw Pile[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 15 damage.\nShuffle a [gold]Through Violence[/gold] into your [gold]Draw Pile[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "Revelation ", + "description": "Deal 12 damage.\nEnter [gold]Divinity[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nEnter [gold]Divinity[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "Rushdown", + "description": "Whenever you enter [gold]Wrath[/gold], draw 2 cards.", + "description_raw": "Whenever you enter [gold]Wrath[/gold], draw {RushdownPower:diff()} cards.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-SAFETY", + "name": "Safety", + "description": "Gain 12 [gold]Block[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 16 [gold]Block[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-SANCTITY", + "name": "Sanctity", + "description": "Gain 6 [gold]Block[/gold].\nIf the last card played this combat was a Skill, draw 2 cards.", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nIf the last card played this combat was a Skill, draw 2 cards.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 9 [gold]Block[/gold].\nIf the last card played this combat was a Skill, draw 2 cards.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "Sands of Time", + "description": "Deal 20 damage.\nWhen [gold]Retained[/gold], lower its cost by 1 this combat.", + "description_raw": "Deal {Damage:diff()} damage.\nWhen [gold]Retained[/gold], lower its cost by 1 this combat.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 26 damage.\nWhen [gold]Retained[/gold], lower its cost by 1 this combat.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "Sash Whip", + "description": "Deal 8 damage.\nIf the last card played\nthis combat was an\nAttack, apply 1 [gold]Weak[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nIf the last card played\nthis combat was an\nAttack, apply {WeakPower:diff()} [gold]Weak[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 10 damage.\nIf the last card played\nthis combat was an\nAttack, apply 2 [gold]Weak[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "Scrawl", + "description": "Draw cards until your [gold]Hand[/gold] is full.", + "description_raw": "Draw cards until your [gold]Hand[/gold] is full.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "Shared Wisdom", + "description": "Another player enters [gold]Divinity[/gold].", + "description_raw": "Another player enters [gold]Divinity[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "Signature Move", + "description": "Can only be played if this is the only Attack in your [gold]Hand[/gold].\nDeal 30 damage.", + "description_raw": "Can only be played if this is the only Attack in your [gold]Hand[/gold].\nDeal {Damage:diff()} damage.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Can only be played if this is the only Attack in your [gold]Hand[/gold].\nDeal 40 damage.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "Simmering Fury", + "description": "At the start of your next turn, enter [gold]Wrath[/gold] and draw 2 cards.", + "description_raw": "At the start of your next turn, enter [gold]Wrath[/gold] and draw {DrawCardsNextTurnPower:diff()} cards.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "At the start of your next turn, enter [gold]Wrath[/gold] and draw 3 cards.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-SMITE", + "name": "Smite", + "description": "Deal 12 damage.", + "description_raw": "Deal {Damage:diff()} damage.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 16 damage.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "Spirit Shield", + "description": "Gain 3 [gold]Block[/gold] for each card in your [gold]Hand[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold] for each card in your [gold]Hand[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 4 [gold]Block[/gold] for each card in your [gold]Hand[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "Strike", + "description": "Deal 6 damage.", + "description_raw": "Deal {Damage:diff()} damage.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 9 damage.", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-STUDY", + "name": "Study", + "description": "At the end of your turn, shuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "description_raw": "At the end of your turn, shuffle an [gold]Insight[/gold] into your [gold]Draw Pile[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-SWIVEL", + "name": "Swivel", + "description": "Gain 8 [gold]Block[/gold].\nThe next Attack you play costs [energy:0].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nThe next Attack you play costs {energyPrefix:energyIcons(0)}.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 11 [gold]Block[/gold].\nThe next Attack you play costs [energy:0].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "Talk to the Hand", + "description": "Deal 5 damage.\nWhenever you attack this enemy, gain 2 [gold]Block[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nWhenever you attack this enemy, gain {BlockReturnPower:diff()} [gold]Block[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 7 damage.\nWhenever you attack this enemy, gain 3 [gold]Block[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-TANTRUM", + "name": "Tantrum", + "description": "Deal 3 damage 3 times.\nEnter [gold]Wrath[/gold].\nShuffle this card into your [gold]Draw Pile[/gold].", + "description_raw": "Deal {Damage:diff()} damage {Repeat:diff()} times.\nEnter [gold]Wrath[/gold].\nShuffle this card into your [gold]Draw Pile[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 3 damage 4 times.\nEnter [gold]Wrath[/gold].\nShuffle this card into your [gold]Draw Pile[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "Third Eye", + "description": "Gain 7 [gold]Block[/gold].\n[gold]Scry[/gold] 3.", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\n[gold]Scry[/gold] {Cards:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 9 [gold]Block[/gold].\n[gold]Scry[/gold] 5.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "Through Violence", + "description": "Deal 20 damage.", + "description_raw": "Deal {Damage:diff()} damage.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 30 damage.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "Tranquility", + "description": "Enter [gold]Calm[/gold].", + "description_raw": "Enter [gold]Calm[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-VAULT", + "name": "Vault", + "description": "Take an extra turn after this one.\nEnd your turn.", + "description_raw": "Take an extra turn after this one.\nEnd your turn.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "Vigilance", + "description": "Gain 8 [gold]Block[/gold].\nEnter [gold]Calm[/gold].", + "description_raw": "Gain {Block:diff()} [gold]Block[/gold].\nEnter [gold]Calm[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Gain 12 [gold]Block[/gold].\nEnter [gold]Calm[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-WALLOP", + "name": "Wallop", + "description": "Deal 9 damage.\nGain [gold]Block[/gold] equal to unblocked damage dealt.", + "description_raw": "Deal {Damage:diff()} damage.\nGain [gold]Block[/gold] equal to unblocked damage dealt.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 12 damage.\nGain [gold]Block[/gold] equal to unblocked damage dealt.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "Wave of the Hand", + "description": "Whenever you gain [gold]Block[/gold] this turn, apply 1 [gold]Weak[/gold] to ALL enemies.", + "description_raw": "Whenever you gain [gold]Block[/gold] this turn, apply {WaveOfTheHandPower:diff()} [gold]Weak[/gold] to ALL enemies.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Whenever you gain [gold]Block[/gold] this turn, apply 2 [gold]Weak[/gold] to ALL enemies.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-WEAVE", + "name": "Weave", + "description": "Deal 4 damage.\nWhenever you [gold]Scry[/gold], return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "description_raw": "Deal {Damage:diff()} damage.\nWhenever you [gold]Scry[/gold], return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 6 damage.\nWhenever you [gold]Scry[/gold], return this from the [gold]Discard Pile[/gold] to your [gold]Hand[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "Wheel Kick", + "description": "Deal 15 damage.\nDraw 2 cards.", + "description_raw": "Deal {Damage:diff()} damage.\nDraw {Cards:diff()} cards.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 20 damage.\nDraw 2 cards.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "Windmill Strike", + "description": "Deal 7 damage.\nWhen this card is [gold]Retained[/gold],\nincrease its damage by 4 this combat.", + "description_raw": "Deal {Damage:diff()} damage.\nWhen this card is [gold]Retained[/gold],\nincrease its damage by {RetainIncrease:diff()} this combat.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Deal 10 damage.\nWhen this card is [gold]Retained[/gold],\nincrease its damage by 5 this combat.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "Wish", + "description": "Choose one:\nGain 6 [gold]Plated Armor[/gold],\n3 [gold]Strength[/gold], or 25 [gold]Gold[/gold].", + "description_raw": "Choose one:\nGain {PlatedArmorPower:diff()} [gold]Plated Armor[/gold],\n{StrengthPower:diff()} [gold]Strength[/gold], or {Gold:diff()} [gold]Gold[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Choose one:\nGain 8 [gold]Plated Armor[/gold],\n4 [gold]Strength[/gold], or 30 [gold]Gold[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-WORSHIP", + "name": "Worship", + "description": "Gain 5 [gold]Mantra[/gold].", + "description_raw": "Gain 5 [gold]Mantra[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "Wreath of Flames", + "description": "Your next Attack deals 5 additional damage.", + "description_raw": "Your next Attack deals {VigorPower:diff()} additional damage.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Your next Attack deals 8 additional damage.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + } +] \ No newline at end of file diff --git a/data-mod/watcher/eng/potions.json b/data-mod/watcher/eng/potions.json new file mode 100644 index 00000000..ed35c015 --- /dev/null +++ b/data-mod/watcher/eng/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-AMBROSIA", + "name": "Ambrosia", + "description": "Enter [gold]Divinity[/gold].", + "description_raw": "Enter [gold]Divinity[/gold].", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "Bottled Miracle", + "description": "Add X [gold]Miracles[/gold] to your [gold]Hand[/gold].", + "description_raw": "Add {Cards:diff()} [gold]Miracles[/gold] to your [gold]Hand[/gold].", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "Calm Potion", + "description": "Enter [gold]Calm[/gold].", + "description_raw": "Enter [gold]Calm[/gold].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "Wrath Potion", + "description": "Enter [gold]Wrath[/gold].", + "description_raw": "Enter [gold]Wrath[/gold].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/eng/relics.json b/data-mod/watcher/eng/relics.json new file mode 100644 index 00000000..cc9b0cd3 --- /dev/null +++ b/data-mod/watcher/eng/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-DAMARU", + "name": "Damaru", + "description": "At the start of your turn, gain 1 [gold]Mantra[/gold].", + "description_raw": "At the start of your turn, gain 1 [gold]Mantra[/gold].", + "flavor": "The sound of the small drum keeps your mind awake, revealing a path forward.", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 0 + }, + { + "id": "WATCHER-DUALITY", + "name": "Duality", + "description": "Whenever you play an [gold]Attack[/gold], gain [blue]1[/blue] [gold]Dexterity[/gold] this turn.", + "description_raw": "Whenever you play an [gold]Attack[/gold], gain [blue]1[/blue] [gold]Dexterity[/gold] this turn. ", + "flavor": "\"And the sun was extinguished forever, as if curtains fell before it.\" - Zoroth", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 1 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "Golden Eye", + "description": "Whenever you [gold]Scry[/gold], [gold]Scry[/gold] 2 additional cards.", + "description_raw": "Whenever you [gold]Scry[/gold], [gold]Scry[/gold] 2 additional cards.", + "flavor": "See into the minds of those nearby, predicting their future moves.", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 2 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "Holy Water", + "description": "Replaces [gold]Pure Water[/gold]. At the start of each combat, add [blue]3[/blue] [gold]Miracles[/gold] into your [gold]Hand[/gold].", + "description_raw": "Replaces [gold]Pure Water[/gold]. At the start of each combat, add [blue]3[/blue] [gold]Miracles[/gold] into your [gold]Hand[/gold].", + "flavor": "Collected from a time before the Spire.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 3 + }, + { + "id": "WATCHER-MELANGE", + "name": "Melange", + "description": "Whenever you shuffle your draw pile, [gold]Scry[/gold] 3.", + "description_raw": "Whenever you shuffle your draw pile, [gold]Scry[/gold] 3.", + "flavor": "Mysterious sands from an unknown origin. Smells of cinnamon.", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 4 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "Pure Water", + "description": "At the start of each combat, add [blue]1[/blue] [gold]Miracle[/gold] into your [gold]Hand[/gold].", + "description_raw": "At the start of each combat, add [blue]1[/blue] [gold]Miracle[/gold] into your [gold]Hand[/gold].", + "flavor": "Filtered through fine sand and free of impurities.", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 5 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "Teardrop Locket", + "description": "Start each combat in [gold]Calm[/gold].", + "description_raw": "Start each combat in [gold]Calm[/gold].", + "flavor": "Its owner blind, its contents unseen.", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 6 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "Violet Lotus", + "description": "Whenever you exit [gold]Calm[/gold], gain an additional [gold]Energy[/gold]", + "description_raw": "Whenever you exit [gold]Calm[/gold], gain an additional [gold]Energy[/gold]", + "flavor": "The old texts describe that the surface of \"mana pools\" were littered with these flowers.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/ita/cards.json b/data-mod/watcher/ita/cards.json new file mode 100644 index 00000000..9fa50c25 --- /dev/null +++ b/data-mod/watcher/ita/cards.json @@ -0,0 +1,3860 @@ +[ + { + "id": "WATCHER-ANCIENT_CARD", + "name": "Accumula", + "description": "Quando sei in [gold]Furia[/gold], infliggi il 50% di danni in più.", + "description_raw": "Quando sei in [gold]Furia[/gold], infliggi il 50% di danni in più.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-WORSHIP", + "name": "Adorazione", + "description": "Ottieni [blue]5[/blue] [gold]Mantra[/gold].", + "description_raw": "Ottieni [blue]5[/blue] [gold]Mantra[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-ALPHA", + "name": "Alpha", + "description": "Mescola un [gold]Beta[/gold] nel tuo mazzo.", + "description_raw": "Mescola un [gold]Beta[/gold] nel tuo mazzo.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-HALT", + "name": "Alt", + "description": "Ottieni 3 [gold]Blocco[/gold].\nSe sei in [gold]Furia[/gold], Ottieni 9 [gold]Blocco[/gold] aggiuntivo.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nSe sei in [gold]Furia[/gold], Ottieni {WrathBlock:diff()} [gold]Blocco[/gold] aggiuntivo.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 4 [gold]Blocco[/gold].\nSe sei in [gold]Furia[/gold], Ottieni 14 [gold]Blocco[/gold] aggiuntivo.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "Assalto", + "description": "Ogni volta che entri in [gold]Furia[/gold], peschi [blue]2[/blue] carte.", + "description_raw": "Ogni volta che entri in [gold]Furia[/gold], peschi [blue]2[/blue] carte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "Attraverso la Violenza", + "description": "Infliggi 20 danni.", + "description_raw": "Infliggi {Damage:diff()} danni.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 30 danni.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "Bagliore", + "description": "Infliggi 12 danni.\nInfligge danni aggiuntivi pari al [gold]Mantra[/gold] ottenuto in questo combattimento.", + "description_raw": "Infliggi {CalculatedDamage:diff()} danni.\nInfligge danni aggiuntivi pari al [gold]Mantra[/gold] ottenuto in questo combattimento.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-VAULT", + "name": "Balzo", + "description": "Esegui un turno extra dopo questo.\nTermina il tuo turno.", + "description_raw": "Esegui un turno extra dopo questo.\nTermina il tuo turno.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-BETA", + "name": "Beta", + "description": "Mescola un [gold]Omega[/gold] nel tuo mazzo.", + "description_raw": "Mescola un [gold]Omega[/gold] nel tuo mazzo.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "Blasfemia", + "description": "Entra in [gold]Divinità[/gold].\nMuori al prossimo turno.", + "description_raw": "Entra in [gold]Divinità[/gold].\nMuori al prossimo turno.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-WALLOP", + "name": "Botta", + "description": "Infliggi 9 danni.\nOttieni [gold]Blocco[/gold] pari ai danni non bloccati inflitti.", + "description_raw": "Infliggi {Damage:diff()} danni.\nOttieni [gold]Blocco[/gold] pari ai danni non bloccati inflitti.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 12 danni.\nOttieni [gold]Blocco[/gold] pari ai danni non bloccati inflitti.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "Calcio Rotante", + "description": "Infliggi 15 danni.\nPeschi 2 carte.", + "description_raw": "Infliggi {Damage:diff()} danni.\nPeschi {Cards:diff()} carte.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 20 danni.\nPeschi 2 carte.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-TANTRUM", + "name": "Capriccio", + "description": "Infliggi 3 danni 3 volte.\nEntra in [gold]Furia[/gold].\nMescola questa carta nel tuo mazzo.", + "description_raw": "Infliggi {Damage:diff()} danni {Repeat:diff()} volte.\nEntra in [gold]Furia[/gold].\nMescola questa carta nel tuo mazzo.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 3 danni 4 volte.\nEntra in [gold]Furia[/gold].\nMescola questa carta nel tuo mazzo.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "Chiarezza Fugace", + "description": "TUTTI gli alleati entrano in [gold]Calma[/gold].\nEscono dalla [gold]Calma[/gold] all'inizio del loro prossimo turno.", + "description_raw": "TUTTI gli alleati entrano in [gold]Calma[/gold].\nEscono dalla [gold]Calma[/gold] all'inizio del loro prossimo turno.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "Colpo", + "description": "Infliggi 6 danni.", + "description_raw": "Infliggi {Damage:diff()} danni.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 9 danni.", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "Colpo del Mulino", + "description": "Infliggi 7 danni.\nQuando questa carta viene [gold]Trattenuta[/gold], aumenta i suoi danni di 4.", + "description_raw": "Infliggi {Damage:diff()} danni.\nQuando questa carta viene [gold]Trattenuta[/gold], aumenta i suoi danni di {RetainIncrease:diff()}.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 10 danni.\nQuando questa carta viene [gold]Trattenuta[/gold], aumenta i suoi danni di 5.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "Come l'Acqua", + "description": "Alla fine del tuo turno, se sei in [gold]Calma[/gold], ottieni 5 [gold]Blocco[/gold].", + "description_raw": "Alla fine del tuo turno, se sei in [gold]Calma[/gold], ottieni {LikeWaterPower:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Alla fine del tuo turno, se sei in [gold]Calma[/gold], ottieni 7 [gold]Blocco[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "Concludi", + "description": "Infliggi 12 danni a TUTTI i nemici.\nTermina il tuo turno.", + "description_raw": "Infliggi {Damage:diff()} danni a TUTTI i nemici.\nTermina il tuo turno.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 16 danni a TUTTI i nemici.\nTermina il tuo turno.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "Consacra", + "description": "Infliggi 5 danni a TUTTI i nemici.", + "description_raw": "Infliggi {Damage:diff()} danni a TUTTI i nemici.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 8 danni a TUTTI i nemici.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "Consolidamento", + "description": "Ogni volta che una carta viene [gold]Trattenuta[/gold], riduci il suo costo di 1 in questo combattimento.", + "description_raw": "Ogni volta che una carta viene [gold]Trattenuta[/gold], riduci il suo costo di 1 in questo combattimento.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "Corona di Fiamme", + "description": "Il tuo prossimo Attacco infligge 5 danni aggiuntivi.", + "description_raw": "Il tuo prossimo Attacco infligge {VigorPower:diff()} danni aggiuntivi.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Il tuo prossimo Attacco infligge 8 danni aggiuntivi.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "Corpo Vuoto", + "description": "Ottieni 7 [gold]Blocco[/gold].\nEsci dalla tua [gold]Posa[/gold].", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nEsci dalla tua [gold]Posa[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 10 [gold]Blocco[/gold].\nEsci dalla tua [gold]Posa[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "Crescendo", + "description": "Entri in [gold]Furia[/gold].", + "description_raw": "Entri in [gold]Furia[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "Desiderio", + "description": "Scegli uno:\nOttieni 6 [gold]Armatura a Placche[/gold],\n3 [gold]Forza[/gold], oppure 25 [gold]Oro[/gold].", + "description_raw": "Scegli uno:\nOttieni {PlatedArmorPower:diff()} [gold]Armatura a Placche[/gold],\n{StrengthPower:diff()} [gold]Forza[/gold], oppure {Gold:diff()} [gold]Oro[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Scegli uno:\nOttieni 8 [gold]Armatura a Placche[/gold],\n4 [gold]Forza[/gold], oppure 30 [gold]Oro[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "Deus Ex Machina", + "description": "Quando peschi questa carta, aggiungi 2 [gold]Miracoli[/gold] alla tua mano ed [gold]Esaurisci[/gold].", + "description_raw": "Quando peschi questa carta, aggiungi {Cards:diff()} [gold]Miracoli[/gold] alla tua mano ed [gold]Esaurisci[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Quando peschi questa carta, aggiungi 3 [gold]Miracoli[/gold] alla tua mano ed [gold]Esaurisci[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-DEVOTION", + "name": "Devozione", + "description": "All'inizio del tuo turno, Ottieni 2 [gold]Mantra[/gold].", + "description_raw": "All'inizio del tuo turno, Ottieni {DevotionPower:diff()} [gold]Mantra[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "All'inizio del tuo turno, Ottieni 3 [gold]Mantra[/gold].", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "Difesa", + "description": "Ottieni 5 [gold]Blocco[/gold].", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 8 [gold]Blocco[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-FASTING", + "name": "Digiuno", + "description": "Ottieni 3 [gold]Forza[/gold].\nOttieni 3 [gold]Destrezza[/gold].\nOttieni 1 [energy:1] in meno all'inizio di ogni turno.", + "description_raw": "Ottieni {StrengthPower:diff()} [gold]Forza[/gold].\nOttieni {DexterityPower:diff()} [gold]Destrezza[/gold].\nOttieni 1 {energyPrefix:energyIcons(1)} in meno all'inizio di ogni turno.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 4 [gold]Forza[/gold].\nOttieni 4 [gold]Destrezza[/gold].\nOttieni 1 [energy:1] in meno all'inizio di ogni turno.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "Diventa Onnipotente", + "description": "Ottieni 3 [gold]Forza[/gold].", + "description_raw": "Ottieni {StrengthPower:diff()} [gold]Forza[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 4 [gold]Forza[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "Dominio della Realtà", + "description": "Ogni volta che una carta viene creata durante il combattimento, [gold]Potenziala[/gold].", + "description_raw": "Ogni volta che una carta viene creata durante il combattimento, [gold]Potenziala[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-ERUPTION", + "name": "Eruzione", + "description": "Infliggi 9 danni.\nEntri in [gold]Furia[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nEntri in [gold]Furia[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "Evoca la Lama", + "description": "Mescola [gold]Sterminatore[/gold] nel tuo mazzo.", + "description_raw": "Mescola [gold]Sterminatore[/gold] {IfUpgraded:show:con X+1 |} nel tuo mazzo.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Mescola [gold]Sterminatore[/gold] con X+1 nel tuo mazzo.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "Fama e Fortuna", + "description": "Ottieni 25 [gold]Oro[/gold].", + "description_raw": "Ottieni {Gold:diff()} [gold]Oro[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 30 [gold]Oro[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "Forma Deva", + "description": "All'inizio del tuo turno, Ottieni [energy:1] e aumenta questo guadagno di 1.", + "description_raw": "All'inizio del tuo turno, Ottieni {energyPrefix:energyIcons(1)} e aumenta questo guadagno di 1.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "Fortezza Mentale", + "description": "Ogni volta che cambi [gold]Posa[/gold], Ottieni 4 [gold]Blocco[/gold].", + "description_raw": "Ogni volta che cambi [gold]Posa[/gold], Ottieni {MentalFortressPower:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ogni volta che cambi [gold]Posa[/gold], Ottieni 6 [gold]Blocco[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "Frantuma le Giunture", + "description": "Infliggi 8 danni.\nSe l'ultima carta giocata in questo combattimento era un'[gold]Abilità[/gold], applica 1 [gold]Vulnerabilità[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe l'ultima carta giocata in questo combattimento era un'[gold]Abilità[/gold], applica {VulnerablePower:diff()} [gold]Vulnerabilità[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 10 danni.\nSe l'ultima carta giocata in questo combattimento era un'[gold]Abilità[/gold], applica 2 [gold]Vulnerabilità[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "Frusta di Seta", + "description": "Infliggi 8 danni.\nSe l'ultima carta giocata in questo combattimento era un Attacco, applica 1 [gold]Debolezza[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe l'ultima carta giocata in questo combattimento era un Attacco, applica {WeakPower:diff()} [gold]Debolezza[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 10 danni.\nSe l'ultima carta giocata in questo combattimento era un Attacco, applica 2 [gold]Debolezza[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "Furia Covante", + "description": "All'inizio del tuo prossimo turno, entri in [gold]Furia[/gold] e peschi 2 carte.", + "description_raw": "All'inizio del tuo prossimo turno, entri in [gold]Furia[/gold] e peschi {DrawCardsNextTurnPower:diff()} carte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "All'inizio del tuo prossimo turno, entri in [gold]Furia[/gold] e peschi 3 carte.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "Gesto della Mano", + "description": "Ogni volta che ottieni [gold]Blocco[/gold] questo turno, applichi 1 [gold]Debolezza[/gold] a TUTTI i nemici.", + "description_raw": "Ogni volta che ottieni [gold]Blocco[/gold] questo turno, applichi {WaveOfTheHandPower:diff()} [gold]Debolezza[/gold] a TUTTI i nemici.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ogni volta che ottieni [gold]Blocco[/gold] questo turno, applichi 2 [gold]Debolezza[/gold] a TUTTI i nemici.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "Giudizio", + "description": "Se il nemico ha 30 HP o meno, azzera i suoi HP.", + "description_raw": "Se il nemico ha {DamageThreshold:diff()} HP o meno, azzera i suoi HP.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Se il nemico ha 40 HP o meno, azzera i suoi HP.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "Incidi la Realtà", + "description": "Infliggi 6 danni.\nAggiungi una [gold]Punizione[/gold] nella tua mano.", + "description_raw": "Infliggi {Damage:diff()} danni.\nAggiungi una [gold]Punizione[/gold] nella tua mano.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 10 danni.\nAggiungi una [gold]Punizione[/gold] nella tua mano.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "Indignazione", + "description": "Se sei in [gold]Furia[/gold], applichi 3 [gold]Vulnerabilità[/gold] a TUTTI i nemici. Altrimenti, entri in [gold]Furia[/gold].", + "description_raw": "Se sei in [gold]Furia[/gold], applichi {VulnerablePower:diff()} [gold]Vulnerabilità[/gold] a TUTTI i nemici. Altrimenti, entri in [gold]Furia[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Se sei in [gold]Furia[/gold], applichi 5 [gold]Vulnerabilità[/gold] a TUTTI i nemici. Altrimenti, entri in [gold]Furia[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "Influenza Straniera", + "description": "Scegli 1 di 3 Attacchi di qualsiasi colore da aggiungere alla tua mano.", + "description_raw": "Scegli 1 di 3 Attacchi di qualsiasi colore da aggiungere alla tua mano.{IfUpgraded:show:\nCosta 0 questo turno.|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Scegli 1 di 3 Attacchi di qualsiasi colore da aggiungere alla tua mano.\nCosta 0 questo turno.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "Inganna la Realtà", + "description": "Ottieni 4 [gold]Blocco[/gold].\nAggiungi una [gold]Salvezza[/gold] nella tua mano.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nAggiungi una [gold]Salvezza[/gold] nella tua mano.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 7 [gold]Blocco[/gold].\nAggiungi una [gold]Salvezza[/gold] nella tua mano.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "Inno di Battaglia", + "description": "All'inizio di ogni turno, aggiungi una [gold]Punizione[/gold] nella tua mano.", + "description_raw": "All'inizio di ogni turno, aggiungi una [gold]Punizione[/gold] nella tua mano.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-WEAVE", + "name": "Intreccio", + "description": "Infliggi 4 danni. Ogni volta che [gold]Scruti[/gold], ritorna dal cimitero alla tua mano.", + "description_raw": "Infliggi {Damage:diff()} danni. Ogni volta che [gold]Scruti[/gold], ritorna dal cimitero alla tua mano.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 6 danni. Ogni volta che [gold]Scruti[/gold], ritorna dal cimitero alla tua mano.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-INSIGHT", + "name": "Intuizione", + "description": "Peschi 2 carte.", + "description_raw": "Peschi {Cards:diff()} carte.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Peschi 3 carte.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "Lezione Appresa", + "description": "Infliggi 10 danni.\nSe [gold]Fatale[/gold], [gold]Potenzia[/gold] una carta casuale nel tuo mazzo.", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe [gold]Fatale[/gold], [gold]Potenzia[/gold] una carta casuale nel tuo mazzo.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 13 danni.\nSe [gold]Fatale[/gold], [gold]Potenzia[/gold] una carta casuale nel tuo mazzo.", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "Maniche Volanti", + "description": "Infliggi 4 danni due volte.", + "description_raw": "Infliggi {Damage:diff()} danni due volte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 6 danni due volte.", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-MEDITATE", + "name": "Medita", + "description": "Prendi 1 carta dal tuo cimitero e mettile in mano, [gold]Conservale[/gold].\nEntri in [gold]Calma[/gold].\nTermina il tuo turno.", + "description_raw": "Prendi {Cards:diff()} {Cards:plural:carta|carte} dal tuo cimitero e mettile in mano, [gold]Conservale[/gold].\nEntri in [gold]Calma[/gold].\nTermina il tuo turno.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Prendi 2 carte dal tuo cimitero e mettile in mano, [gold]Conservale[/gold].\nEntri in [gold]Calma[/gold].\nTermina il tuo turno.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "Mente Vuota", + "description": "Peschi 2 carte.\nEsci dalla tua [gold]Posa[/gold].", + "description_raw": "Peschi {Cards:diff()} carte.\nEsci dalla tua [gold]Posa[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Peschi 3 carte.\nEsci dalla tua [gold]Posa[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-MIRACLE", + "name": "Miracolo", + "description": "Ottieni [energy:1].", + "description_raw": "Ottieni {Energy:energyIcons()}.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni [energy:2].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "Mossa Distintiva", + "description": "Può essere giocata solo se è l'unico Attacco nella tua mano.\nInfliggi 30 danni.", + "description_raw": "Può essere giocata solo se è l'unico Attacco nella tua mano.\nInfliggi {Damage:diff()} danni.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Può essere giocata solo se è l'unico Attacco nella tua mano.\nInfliggi 40 danni.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-NIRVANA", + "name": "Nirvana", + "description": "Ogni volta che [gold]Scruti[/gold], Ottieni 3 [gold]Blocco[/gold].", + "description_raw": "Ogni volta che [gold]Scruti[/gold], Ottieni {NirvanaPower:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ogni volta che [gold]Scruti[/gold], Ottieni 4 [gold]Blocco[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "Non Temere il Male", + "description": "Infliggi 8 danni.\nSe il nemico intende attaccare, entri in [gold]Calma[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe il nemico intende attaccare, entri in [gold]Calma[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 11 danni.\nSe il nemico intende attaccare, entri in [gold]Calma[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-OMEGA", + "name": "Omega", + "description": "Alla fine del tuo turno, infliggi 50 danni a TUTTI i nemici.", + "description_raw": "Alla fine del tuo turno, infliggi {OmegaPower:diff()} danni a TUTTI i nemici.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Alla fine del tuo turno, infliggi 60 danni a TUTTI i nemici.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "Onniscienza", + "description": "Scegli una carta nel tuo mazzo. Gioca la carta scelta due volte ed [gold]Esauriscila[/gold].", + "description_raw": "Scegli una carta nel tuo mazzo. Gioca la carta scelta due volte ed [gold]Esauriscila[/gold].", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "Pace Interiore", + "description": "Se sei in [gold]Calma[/gold], peschi 3 carte. Altrimenti, entri in [gold]Calma[/gold].", + "description_raw": "Se sei in [gold]Calma[/gold], peschi {Cards:diff()} carte. Altrimenti, entri in [gold]Calma[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Se sei in [gold]Calma[/gold], peschi 4 carte. Altrimenti, entri in [gold]Calma[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "Parla con la Mano", + "description": "Infliggi 5 danni.\nOgni volta che attacchi questo nemico, Ottieni 2 [gold]Blocco[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nOgni volta che attacchi questo nemico, Ottieni {BlockReturnPower:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 7 danni.\nOgni volta che attacchi questo nemico, Ottieni 3 [gold]Blocco[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-SWIVEL", + "name": "Perno", + "description": "Ottieni 8 [gold]Blocco[/gold].\nIl prossimo Attacco che giochi costa 0.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nIl prossimo Attacco che giochi costa 0.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 11 [gold]Blocco[/gold].\nIl prossimo Attacco che giochi costa 0.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "Perseveranza", + "description": "Ottieni 5 [gold]Blocco[/gold].\nOgni volta che questa carta viene [gold]Conservata[/gold], aumenta il suo [gold]Blocco[/gold] di 2.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nOgni volta che questa carta viene [gold]Conservata[/gold], aumenta il suo [gold]Blocco[/gold] di {Increase:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 7 [gold]Blocco[/gold].\nOgni volta che questa carta viene [gold]Conservata[/gold], aumenta il suo [gold]Blocco[/gold] di 3.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-PRAY", + "name": "Prega", + "description": "Ottieni 3 [gold]Mantra[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "description_raw": "Ottieni {MantraPower:diff()} [gold]Mantra[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 4 [gold]Mantra[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "Preveggenza", + "description": "All'inizio del tuo turno, [gold]Scruta[/gold] 3 carte.", + "description_raw": "All'inizio del tuo turno, [gold]Scruta[/gold] {ForesightPower:diff()} carte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "All'inizio del tuo turno, [gold]Scruta[/gold] 4 carte.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "Prostrare", + "description": "Ottieni 2 [gold]Mantra[/gold].\nOttieni 4 [gold]Blocco[/gold].", + "description_raw": "Ottieni {MantraPower:diff()} [gold]Mantra[/gold].\nOttieni {Block:diff()} [gold]Blocco[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 3 [gold]Mantra[/gold].\nOttieni 4 [gold]Blocco[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-PROTECT", + "name": "Proteggi", + "description": "Ottieni 12 [gold]Blocco[/gold].", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 16 [gold]Blocco[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "Pugno Vuoto", + "description": "Infliggi 9 danni.\nEsci dalla tua [gold]Posa[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nEsci dalla tua [gold]Posa[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 14 danni.\nEsci dalla tua [gold]Posa[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-SMITE", + "name": "Punizione", + "description": "Infliggi 12 danni.", + "description_raw": "Infliggi {Damage:diff()} danni.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 16 danni.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "Punti di Pressione", + "description": "Applica 8 [gold]Marchio[/gold].\nTUTTI i nemici perdono HP pari al loro [gold]Marchio[/gold].", + "description_raw": "Applica {MarkPower:diff()} [gold]Marchio[/gold].\nTUTTI i nemici perdono HP pari al loro [gold]Marchio[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Applica 11 [gold]Marchio[/gold].\nTUTTI i nemici perdono HP pari al loro [gold]Marchio[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-COLLECT", + "name": "Raccogli", + "description": "Metti un [gold]Miracolo+[/gold] nella tua mano all'inizio dei tuoi prossimi X turni.", + "description_raw": "Metti un [gold]Miracolo+[/gold] nella tua mano all'inizio dei tuoi prossimi {IfUpgraded:show:X+1|X} turni.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Metti un [gold]Miracolo+[/gold] nella tua mano all'inizio dei tuoi prossimi X+1 turni.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "Raffica di Colpi", + "description": "Infliggi 4 danni.\nOgni volta che cambi Posa, rimettila dalla pila degli scarti alla tua mano.", + "description_raw": "Infliggi {Damage:diff()} danni.\nOgni volta che cambi Posa, rimettila dalla pila degli scarti alla tua mano.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 6 danni.\nOgni volta che cambi Posa, rimettila dalla pila degli scarti alla tua mano.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "Ragnarok", + "description": "Infliggi 5 danni a un nemico casuale 5 volte.", + "description_raw": "Infliggi {Damage:diff()} danni a un nemico casuale {Repeat:diff()} volte.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 6 danni a un nemico casuale 6 volte.", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "Rivelazione", + "description": "Infliggi 12 danni.\nEntra in [gold]Divinità[/gold].", + "description_raw": "Infliggi {Damage:diff()} danni.\nEntra in [gold]Divinità[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "Sabbie del Tempo", + "description": "Infliggi 20 danni.\nSe [gold]Conservata[/gold], riduce il suo costo di 1 in questo combattimento.", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe [gold]Conservata[/gold], riduce il suo costo di 1 in questo combattimento.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 26 danni.\nSe [gold]Conservata[/gold], riduce il suo costo di 1 in questo combattimento.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "Saggezza Condivisa", + "description": "Un altro giocatore entra in [gold]Divinità[/gold].", + "description_raw": "Un altro giocatore entra in [gold]Divinità[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-SAFETY", + "name": "Salvezza", + "description": "Ottieni 12 [gold]Blocco[/gold].", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 16 [gold]Blocco[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-SANCTITY", + "name": "Santità", + "description": "Ottieni 6 [gold]Blocco[/gold].\nSe l'ultima carta giocata in questo combattimento era un'Abilità, peschi 2 carte.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nSe l'ultima carta giocata in questo combattimento era un'Abilità, peschi 2 carte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 9 [gold]Blocco[/gold].\nSe l'ultima carta giocata in questo combattimento era un'Abilità, peschi 2 carte.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "Scarabocchio", + "description": "peschi carte finché la tua mano non è piena.", + "description_raw": "peschi carte finché la tua mano non è piena.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "Scudo Spirituale", + "description": "Ottieni 3 [gold]Blocco[/gold] per ogni carta nella tua mano.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold] per ogni carta nella tua mano.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 4 [gold]Blocco[/gold] per ogni carta nella tua mano.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "Seguito", + "description": "Infliggi 7 danni.\nSe l'ultima carta giocata era un Attacco, Ottieni [blue]1[/blue] [energy:1].", + "description_raw": "Infliggi {Damage:diff()} danni.\nSe l'ultima carta giocata era un Attacco, Ottieni [blue]1[/blue] {energyPrefix:energyIcons(1)}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 11 danni.\nSe l'ultima carta giocata era un Attacco, Ottieni [blue]1[/blue] [energy:1].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "Sfondamento", + "description": "Infliggi 7 danni per ogni nemico in combattimento.", + "description_raw": "Infliggi {Damage:diff()} danni per ogni nemico in combattimento.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 10 danni per ogni nemico in combattimento.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "Solo Fortuna", + "description": "[gold]Scruta[/gold] 1 carte.\nOttieni 2 [gold]Blocco[/gold].\nInfliggi 3 danni.", + "description_raw": "[gold]Scruta[/gold] {Cards:diff()} carte.\nOttieni {Block:diff()} [gold]Blocco[/gold].\nInfliggi {Damage:diff()} danni.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]Scruta[/gold] 2 carte.\nOttieni 3 [gold]Blocco[/gold].\nInfliggi 4 danni.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "Sterminatore", + "description": "Infliggi 9 danni X volte.", + "description_raw": "Infliggi {Damage:diff()} danni {Repeat:cond:<0?X|{Repeat:diff()}} volte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 15 danni X volte.", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-STUDY", + "name": "Studia", + "description": "Alla fine del tuo turno, mescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "description_raw": "Alla fine del tuo turno, mescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "Taglia il Destino", + "description": "Infliggi 7 danni.\n[gold]Scruta[/gold] 2 carte.\npeschi [blue]1[/blue] carta.", + "description_raw": "Infliggi {Damage:diff()} danni.\n[gold]Scruta[/gold] {Cards:diff()} carte.\npeschi [blue]1[/blue] carta.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 9 danni.\n[gold]Scruta[/gold] 3 carte.\npeschi [blue]1[/blue] carta.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "Terzo Occhio", + "description": "Ottieni 7 [gold]Blocco[/gold].\n[gold]Scruta[/gold] 3 carte.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\n[gold]Scruta[/gold] {Cards:diff()} carte.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 9 [gold]Blocco[/gold].\n[gold]Scruta[/gold] 5 carte.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "Tocca il Cielo", + "description": "Infliggi 10 danni.\nMescola [gold]Attraverso la Violenza[/gold] nel tuo mazzo.", + "description_raw": "Infliggi {Damage:diff()} danni.\nMescola [gold]Attraverso la Violenza[/gold] nel tuo mazzo.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Infliggi 15 danni.\nMescola [gold]Attraverso la Violenza[/gold] nel tuo mazzo.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "Tranquillità", + "description": "Entra in [gold]Calma[/gold].", + "description_raw": "Entra in [gold]Calma[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-EVALUATE", + "name": "Valuta", + "description": "Ottieni 6 [gold]Blocco[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 10 [gold]Blocco[/gold].\nMescola un'[gold]Intuizione[/gold] nel tuo mazzo.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "Vigilanza", + "description": "Ottieni 8 [gold]Blocco[/gold].\nEntri in [gold]Serenità[/gold].", + "description_raw": "Ottieni {Block:diff()} [gold]Blocco[/gold].\nEntri in [gold]Serenità[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 12 [gold]Blocco[/gold].\nEntri in [gold]Serenità[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "Vivi per Sempre", + "description": "Ottieni 6 [gold]Armatura a Placche[/gold].", + "description_raw": "Ottieni {PlatedArmorPower:diff()} [gold]Armatura a Placche[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Ottieni 8 [gold]Armatura a Placche[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + } +] \ No newline at end of file diff --git a/data-mod/watcher/ita/potions.json b/data-mod/watcher/ita/potions.json new file mode 100644 index 00000000..ba7f4116 --- /dev/null +++ b/data-mod/watcher/ita/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-AMBROSIA", + "name": "Ambrosia", + "description": "Enteri in [blue]Divinità[/blue].", + "description_raw": "Enteri in [blue]Divinità[/blue].", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "Miracolo in bottiglia", + "description": "Aggiungi X [blue]Miracoli[/blue] alla tua mano.", + "description_raw": "Aggiungi {Cards:diff()} [blue]Miracoli[/blue] alla tua mano.", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "Pozione Calmante", + "description": "Entri in [blue]Calma[/blue].", + "description_raw": "Entri in [blue]Calma[/blue].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "Pozione Iraconda", + "description": "Entri in [blue]Ira[/blue].", + "description_raw": "Entri in [blue]Ira[/blue].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/ita/relics.json b/data-mod/watcher/ita/relics.json new file mode 100644 index 00000000..207f9983 --- /dev/null +++ b/data-mod/watcher/ita/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-PURE_WATER", + "name": "Acqua Pura", + "description": "All'inizio di ogni combattimento, aggiungi 1 [gold]Miracolo[/gold] alla tua mano.", + "description_raw": "All'inizio di ogni combattimento, aggiungi 1 [gold]Miracolo[/gold] alla tua mano.", + "flavor": "Filtrata attraverso sabbia fine e priva di impurità.", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 0 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "Acqua Santa", + "description": "Sostituisce [gold]Acqua Pura[/gold]. All'inizio di ogni combattimento, aggiungi 3 [gold]Miracoli[/gold] alla tua mano.", + "description_raw": "Sostituisce [gold]Acqua Pura[/gold]. All'inizio di ogni combattimento, aggiungi 3 [gold]Miracoli[/gold] alla tua mano.", + "flavor": "Raccolta in un'epoca prima della Guglia.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 1 + }, + { + "id": "WATCHER-DAMARU", + "name": "Damaru", + "description": "All'inizio del tuo turno, accumuli 1 [gold]Mantra[/gold].", + "description_raw": "All'inizio del tuo turno, accumuli 1 [gold]Mantra[/gold].", + "flavor": "Il suono del piccolo tamburo mantiene sveglia la tua mente, rivelando un cammino da seguire.", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 2 + }, + { + "id": "WATCHER-DUALITY", + "name": "Dualità", + "description": "Ogni volta che giochi un [gold]Attacco[/gold], ottieni 1 [gold]Destrezza[/gold] temporanea.", + "description_raw": "Ogni volta che giochi un [gold]Attacco[/gold], ottieni 1 [gold]Destrezza[/gold] temporanea.", + "flavor": "\"E il sole si spense per sempre, come se delle tende cadessero davanti ad esso.\" - Zoroth", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 3 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "Loto Viola", + "description": "Ogni volta che abbandoni [gold]Serenità[/gold], guadagna un'[gold]Energia[/gold] aggiuntiva.", + "description_raw": "Ogni volta che abbandoni [gold]Serenità[/gold], guadagna un'[gold]Energia[/gold] aggiuntiva.", + "flavor": "I testi antichi descrivono che la superficie dei \"laghi di mana\" era cosparsa di questi fiori.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 4 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "Medaglione Lacrimale", + "description": "Inizi i combattimenti in [gold]Quiete[/gold].", + "description_raw": "Inizi i combattimenti in [gold]Quiete[/gold].", + "flavor": "Il suo proprietario cieco, il suo contenuto invisibile.", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 5 + }, + { + "id": "WATCHER-MELANGE", + "name": "Melange", + "description": "Ogni volta che rimescoli il mazzo di pesca, [gold]Scruta[/gold] 3.", + "description_raw": "Ogni volta che rimescoli il mazzo di pesca, [gold]Scruta[/gold] 3.", + "flavor": "Sabbie misteriose di origine sconosciuta. Profumano di cannella.", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 6 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "Occhio Dorato", + "description": "Ogni volta che [gold]Scrutini[/gold], [gold]Scruta[/gold] 2 carte aggiuntive.", + "description_raw": "Ogni volta che [gold]Scrutini[/gold], [gold]Scruta[/gold] 2 carte aggiuntive.", + "flavor": "Leggi nella mente di chi ti sta vicino, prevedendo le loro mosse future.", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/jpn/cards.json b/data-mod/watcher/jpn/cards.json new file mode 100644 index 00000000..c47501f4 --- /dev/null +++ b/data-mod/watcher/jpn/cards.json @@ -0,0 +1,3858 @@ +[ + { + "id": "WATCHER-TANTRUM", + "name": "かんしゃく", + "description": "3ダメージを3回与える。\n[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。\nこのカードを山札に加える。", + "description_raw": "{Damage:diff()}ダメージを{Repeat:diff()}回与える。\n[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。\nこのカードを山札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "3ダメージを4回与える。\n[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。\nこのカードを山札に加える。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "ただの幸運", + "description": "[gold]占術[/gold]1。\n2[gold]ブロック[/gold]を得る。\n3ダメージを与える。", + "description_raw": "[gold]占術[/gold]{Cards:diff()}。\n{Block:diff()}[gold]ブロック[/gold]を得る。\n{Damage:diff()}ダメージを与える。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]占術[/gold]2。\n3[gold]ブロック[/gold]を得る。\n4ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-WALLOP", + "name": "ぶん殴り", + "description": "9ダメージを与える。\n[gold]ブロック[/gold]されなかったダメージに等しい[gold]ブロック[/gold]を得る。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]ブロック[/gold]されなかったダメージに等しい[gold]ブロック[/gold]を得る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "12ダメージを与える。\n[gold]ブロック[/gold]されなかったダメージに等しい[gold]ブロック[/gold]を得る。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-ALPHA", + "name": "アルファ", + "description": "[gold]ベータ[/gold]を1枚山札に加える。", + "description_raw": "[gold]ベータ[/gold]を1枚山札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "ウィンドストライク", + "description": "7ダメージを与える。\nこのカードを保留するたび、そのダメージが4増加する。", + "description_raw": "{Damage:diff()}ダメージを与える。\nこのカードを保留するたび、そのダメージが{RetainIncrease:diff()}増加する。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10ダメージを与える。\nこのカードを保留するたび、そのダメージが5増加する。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-OMEGA", + "name": "オメガ", + "description": "ターン終了時、すべての敵に50ダメージを与える。", + "description_raw": "ターン終了時、すべての敵に{OmegaPower:diff()}ダメージを与える。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "ターン終了時、すべての敵に60ダメージを与える。", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "ストライク", + "description": "6ダメージを与える。", + "description_raw": "{Damage:diff()}ダメージを与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "9ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-SMITE", + "name": "スマイト", + "description": "12ダメージを与える。", + "description_raw": "{Damage:diff()}ダメージを与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "16ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "デウス・エクス・マキナ", + "description": "このカードを引いた時、[gold]奇跡[/gold]を2枚手札に加えて[gold]廃棄[/gold]する。", + "description_raw": "このカードを引いた時、[gold]奇跡[/gold]を{Cards:diff()}枚手札に加えて[gold]廃棄[/gold]する。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "このカードを引いた時、[gold]奇跡[/gold]を3枚手札に加えて[gold]廃棄[/gold]する。", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "フィニッシュブロー", + "description": "アタックがこのカードだけの時、プレイ可能。\n30ダメージを与える。", + "description_raw": "アタックがこのカードだけの時、プレイ可能。\n{Damage:diff()}ダメージを与える。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "アタックがこのカードだけの時、プレイ可能。\n40ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-BETA", + "name": "ベータ", + "description": "[gold]オメガ[/gold]を1枚山札に加える。", + "description_raw": "[gold]オメガ[/gold]を1枚山札に加える。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "ボウリングバッシュ", + "description": "戦闘中の敵1体につき7ダメージを与える。", + "description_raw": "戦闘中の敵1体につき{Damage:diff()}ダメージを与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "戦闘中の敵1体につき10ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "ラグナロク", + "description": "5ダメージをランダムな敵に5回与える。", + "description_raw": "{Damage:diff()}ダメージをランダムな敵に{Repeat:diff()}回与える。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "6ダメージをランダムな敵に6回与える。", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "一触即発", + "description": "次のターン開始時、[gold]憤怒[/gold]の[gold]スタンス[/gold]に入り、カードを2枚引く。", + "description_raw": "次のターン開始時、[gold]憤怒[/gold]の[gold]スタンス[/gold]に入り、カードを{DrawCardsNextTurnPower:diff()}枚引く。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "次のターン開始時、[gold]憤怒[/gold]の[gold]スタンス[/gold]に入り、カードを3枚引く。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "不動心", + "description": "[gold]スタンス[/gold]を変更するたび、4[gold]ブロック[/gold]を得る。", + "description_raw": "[gold]スタンス[/gold]を変更するたび、{MentalFortressPower:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]スタンス[/gold]を変更するたび、6[gold]ブロック[/gold]を得る。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "不死", + "description": "[gold]プレートアーマー[/gold]Xを得る。", + "description_raw": "[gold]プレートアーマー[/gold]{PlatingPower:diff()}を得る。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-DEVOTION", + "name": "信心", + "description": "ターン開始時、[gold]マントラ[/gold]2を得る。", + "description_raw": "ターン開始時、[gold]マントラ[/gold]{DevotionPower:diff()}を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "ターン開始時、[gold]マントラ[/gold]3を得る。", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-HALT", + "name": "停止", + "description": "3[gold]ブロック[/gold]を得る。\n[gold]憤怒[/gold]ならば、追加で9[gold]ブロック[/gold]を得る。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n[gold]憤怒[/gold]ならば、追加で{WrathBlock:diff()}[gold]ブロック[/gold]を得る。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "4[gold]ブロック[/gold]を得る。\n[gold]憤怒[/gold]ならば、追加で14[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "先見の明", + "description": "ターン開始時、[gold]占術[/gold]3。", + "description_raw": "ターン開始時、[gold]占術[/gold]{ForesightPower:diff()}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "ターン開始時、[gold]占術[/gold]4。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "光輝", + "description": "12ダメージを与える。\nこの戦闘で得た[gold]マントラ[/gold]の数に等しい追加ダメージを与える。", + "description_raw": "{CalculatedDamage:diff()}ダメージを与える。\nこの戦闘で得た[gold]マントラ[/gold]の数に等しい追加ダメージを与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "全知", + "description": "山札からカードを1枚選ぶ。\n選ばれたカードを2回プレイして廃棄する。", + "description_raw": "山札からカードを1枚選ぶ。\n選ばれたカードを2回プレイして廃棄する。", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "共有の知恵", + "description": "別のプレイヤーが[gold]神聖[/gold]に入る。", + "description_raw": "別のプレイヤーが[gold]神聖[/gold]に入る。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "内なる平穏", + "description": "[gold]平静[/gold]ならば、カードを3枚引く。\nそうでなければ[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "[gold]平静[/gold]ならば、カードを{Cards:diff()}枚引く。\nそうでなければ[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]平静[/gold]ならば、カードを4枚引く。\nそうでなければ[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "再啓示", + "description": "12 のダメージを与える。\n[gold]神聖[/gold]に入る。", + "description_raw": "{Damage:diff()} のダメージを与える。\n[gold]神聖[/gold]に入る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "冒涜", + "description": "[gold]神聖[/gold][gold]スタンス[/gold]に入る。\n次のターン、あなたは死ぬ。", + "description_raw": "[gold]神聖[/gold][gold]スタンス[/gold]に入る。\n次のターン、あなたは死ぬ。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "制定", + "description": "カードが[gold]保留[/gold]されるたび、そのコストを1下げる。", + "description_raw": "カードが[gold]保留[/gold]されるたび、そのコストを1下げる。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "刹那の明晰", + "description": "すべての味方が[gold]平静[/gold]の[gold]スタンス[/gold]に入る。\n彼らは次のターンの開始時に[gold]平静[/gold]から抜け出す。", + "description_raw": "すべての味方が[gold]平静[/gold]の[gold]スタンス[/gold]に入る。\n彼らは次のターンの開始時に[gold]平静[/gold]から抜け出す。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "刻まれた現実", + "description": "6ダメージを与える。\n[gold]スマイト[/gold]を手札に加える。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]スマイト[/gold]を手札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10ダメージを与える。\n[gold]スマイト[/gold]を手札に加える。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "刻一刻", + "description": "20ダメージを与える。\nこのカードを[gold]保留[/gold]するたび、そのコストを1減らす。", + "description_raw": "{Damage:diff()}ダメージを与える。\nこのカードを[gold]保留[/gold]するたび、そのコストを1減らす。", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "26ダメージを与える。\nこのカードを[gold]保留[/gold]するたび、そのコストを1減らす。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "剣の召喚", + "description": "[gold]抹殺の剣[/gold]を1枚山札に加える。", + "description_raw": "[gold]抹殺の剣[/gold]を1枚山札に加える。", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": null, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-COLLECT", + "name": "収穫", + "description": "次のターン開始時、[gold]奇跡+[/gold]を1枚手札に加える。\nこの効果はXターン続く。", + "description_raw": "次のターン開始時、[gold]奇跡+[/gold]を1枚手札に加える。\nこの効果は{IfUpgraded:show:X+1|X}ターン続く。", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "次のターン開始時、[gold]奇跡+[/gold]を1枚手札に加える。\nこの効果はX+1ターン続く。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-ERUPTION", + "name": "噴火", + "description": "9ダメージを与える。\n[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "回し蹴り", + "description": "15ダメージを与える。\nカードを2枚引く。", + "description_raw": "{Damage:diff()}ダメージを与える。\nカードを2枚引く。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "20ダメージを与える。\nカードを2枚引く。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "外的影響", + "description": "3枚のアタックから1枚選んで手札に加える。\nこれらのカードはすべてのクラスから出現する。", + "description_raw": "3枚のアタックから1枚選んで手札に加える。\nこれらのカードはすべてのクラスから出現する。\n{IfUpgraded:show:\nこのターンそのコストは0。|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "3枚のアタックから1枚選んで手札に加える。\nこれらのカードはすべてのクラスから出現する。\n\nこのターンそのコストは0。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-MIRACLE", + "name": "奇跡", + "description": "[energy:1]を得る。", + "description_raw": "{Energy:energyIcons()}を得る。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[energy:2]を得る。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-STUDY", + "name": "学習", + "description": "ターン終了時、[gold]洞察[/gold]を1枚山札に加える。", + "description_raw": "ターン終了時、[gold]洞察[/gold]を1枚山札に加える。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "安らぎ", + "description": "[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "完全無欠", + "description": "[gold]筋力[/gold]3を得る。", + "description_raw": "[gold]筋力[/gold]{StrengthPower:diff()}を得る。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]筋力[/gold]4を得る。", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "富と名声", + "description": "25[gold]ゴールド[/gold]を得る。", + "description_raw": "{Gold:diff()}[gold]ゴールド[/gold]を得る。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "30[gold]ゴールド[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "審判", + "description": "敵のHPが30以下のとき、即死させる。", + "description_raw": "敵のHPが{DamageThreshold:diff()}以下のとき、即死させる。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "敵のHPが40以下のとき、即死させる。", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-WORSHIP", + "name": "崇拝", + "description": "[gold]マントラ[/gold][blue]5[/blue]を得る。", + "description_raw": "[gold]マントラ[/gold][blue]5[/blue]を得る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "得られた教訓", + "description": "10ダメージを与える。\nこの攻撃で敵を倒した時、デッキのランダムなカードを[gold]アップグレード[/gold]する。", + "description_raw": "{Damage:diff()}ダメージを与える。\nこの攻撃で敵を倒した時、デッキのランダムなカードを[gold]アップグレード[/gold]する。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "13ダメージを与える。\nこの攻撃で敵を倒した時、デッキのランダムなカードを[gold]アップグレード[/gold]する。", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "忍耐", + "description": "5[gold]ブロック[/gold]を得る。\nこのカードを[gold]保留[/gold]するたび、その[gold]ブロック[/gold]が2増加する。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\nこのカードを[gold]保留[/gold]するたび、その[gold]ブロック[/gold]が{Increase:diff()}増加する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "7[gold]ブロック[/gold]を得る。\nこのカードを[gold]保留[/gold]するたび、その[gold]ブロック[/gold]が3増加する。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "悪しきを恐れず", + "description": "8ダメージを与える。\n敵が攻撃を予定している場合、[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "{Damage:diff()}ダメージを与える。\n敵が攻撃を予定している場合、[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "11ダメージを与える。\n敵が攻撃を予定している場合、[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "憤慨", + "description": "[gold]憤怒[/gold]ならば、敵全体に[gold]弱体[/gold]3を与える。\nそうでなければ[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "[gold]憤怒[/gold]ならば、敵全体に[gold]弱体[/gold]{VulnerablePower:diff()}を与える。\nそうでなければ[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]憤怒[/gold]ならば、敵全体に[gold]弱体[/gold]5を与える。\nそうでなければ[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "戦いの賛歌", + "description": "ターン開始時、[gold]スマイト[/gold]を1枚手札に加える。", + "description_raw": "ターン開始時、[gold]スマイト[/gold]を1枚手札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "抹殺の剣", + "description": "9ダメージをX回与える。", + "description_raw": "{Damage:diff()}ダメージを{Repeat:cond:<0?X|{Repeat:diff()}}回与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "15ダメージをX回与える。", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "拒絶の掌", + "description": "5ダメージを与える。\nこの敵がダメージを受けるたび、2[gold]ブロック[/gold]を得る。", + "description_raw": "{Damage:diff()}ダメージを与える。\nこの敵がダメージを受けるたび、{BlockReturnPower:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "7ダメージを与える。\nこの敵がダメージを受けるたび、3[gold]ブロック[/gold]を得る。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "掌握した現実", + "description": "カードが戦闘中に作られるたび、それを[gold]アップグレード[/gold]する。", + "description_raw": "カードが戦闘中に作られるたび、それを[gold]アップグレード[/gold]する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "揺れ動く手", + "description": "このターン、[gold]ブロック[/gold]を得るたび、敵全体に[gold]脱力[/gold]1を与える。", + "description_raw": "このターン、[gold]ブロック[/gold]を得るたび、敵全体に[gold]脱力[/gold]{WaveOfTheHandPower:diff()}を与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "このターン、[gold]ブロック[/gold]を得るたび、敵全体に[gold]脱力[/gold]2を与える。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-FASTING", + "name": "断食", + "description": "[gold]筋力[/gold]3を得る。\n[gold]敏捷[/gold]3を得る。\nターン開始時[energy:1]を失う。", + "description_raw": "[gold]筋力[/gold]{StrengthPower:diff()}を得る。\n[gold]敏捷[/gold]{DexterityPower:diff()}を得る。\nターン開始時{energyPrefix:energyIcons(1)}を失う。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]筋力[/gold]4を得る。\n[gold]敏捷[/gold]4を得る。\nターン開始時[energy:1]を失う。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-SWIVEL", + "name": "旋転回避", + "description": "8[gold]ブロック[/gold]を得る。\n次にプレイするアタックのコストは0。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n次にプレイするアタックのコストは0。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "11[gold]ブロック[/gold]を得る。\n次にプレイするアタックのコストは0。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "昂揚", + "description": "[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "[gold]憤怒[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "昇天", + "description": "10ダメージを与える。\n[gold]蹂躙[/gold]を山札に加える。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]蹂躙[/gold]を山札に加える。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "15ダメージを与える。\n[gold]蹂躙[/gold]を山札に加える。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "欺かれた現実", + "description": "4[gold]ブロック[/gold]を得る。\n[gold]退避[/gold]を手札に加える。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n[gold]退避[/gold]を手札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "7[gold]ブロック[/gold]を得る。\n[gold]退避[/gold]を手札に加える。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "水の如し", + "description": "ターン終了時、[gold]平静[/gold]ならば5[gold]ブロック[/gold]を得る。", + "description_raw": "ターン終了時、[gold]平静[/gold]ならば{LikeWaterPower:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "ターン終了時、[gold]平静[/gold]ならば7[gold]ブロック[/gold]を得る。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-INSIGHT", + "name": "洞察", + "description": "カードを2枚引く。", + "description_raw": "カードを{Cards:diff()}枚引く。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "カードを3枚引く。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-NIRVANA", + "name": "涅槃", + "description": "[gold]占術[/gold]を行うたび、3[gold]ブロック[/gold]を得る。", + "description_raw": "[gold]占術[/gold]を行うたび、{NirvanaPower:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]占術[/gold]を行うたび、4[gold]ブロック[/gold]を得る。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "無の型:体", + "description": "7[gold]ブロック[/gold]を得る。\n[gold]スタンス[/gold]を解除する。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n[gold]スタンス[/gold]を解除する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10[gold]ブロック[/gold]を得る。\n[gold]スタンス[/gold]を解除する。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "無の型:心", + "description": "カードを2枚引く。\n[gold]スタンス[/gold]を解除する。", + "description_raw": "カードを{Cards:diff()}枚引く。\n[gold]スタンス[/gold]を解除する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "カードを3枚引く。\n[gold]スタンス[/gold]を解除する。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "無の型:拳", + "description": "9ダメージを与える。\n[gold]スタンス[/gold]を解除する。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]スタンス[/gold]を解除する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "14ダメージを与える。\n[gold]スタンス[/gold]を解除する。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "猪突猛進", + "description": "[gold]憤怒[/gold]の[gold]スタンス[/gold]に入るたび、カードを2枚引く。", + "description_raw": "[gold]憤怒[/gold]の[gold]スタンス[/gold]に入るたび、カードを2枚引く。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-MEDITATE", + "name": "瞑想", + "description": "捨て札のカードを1枚手札に戻し、[gold]保留[/gold]する。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。\nターンを終了する。", + "description_raw": "捨て札のカードを{Cards:diff()}枚手札に戻し、[gold]保留[/gold]する。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。\nターンを終了する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "捨て札のカードを2枚手札に戻し、[gold]保留[/gold]する。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。\nターンを終了する。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-PRAY", + "name": "祈り", + "description": "[gold]マントラ[/gold]3を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "description_raw": "[gold]マントラ[/gold]{MantraPower:diff()}を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]マントラ[/gold]4を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "神人化", + "description": "ターン開始時、[energy:1]を得る。\nこの効果は毎ターン1増加する。", + "description_raw": "ターン開始時、{energyPrefix:energyIcons(1)}を得る。\nこの効果は毎ターン1増加する。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "第三の目", + "description": "7ブロックを得る。\n[gold]占術[/gold]3。", + "description_raw": "{Block:diff()}ブロックを得る。\n[gold]占術[/gold]{Cards:diff()}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "9ブロックを得る。\n[gold]占術[/gold]5。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "精神障壁", + "description": "手札のカード1枚につき3[gold]ブロック[/gold]を得る。", + "description_raw": "手札のカード1枚につき{Block:diff()}[gold]ブロック[/gold]を得る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "手札のカード1枚につき4[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "終結", + "description": "敵全体に12ダメージを与える。\nターンを終了する。", + "description_raw": "敵全体に{Damage:diff()}ダメージを与える。\nターンを終了する。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "敵全体に16ダメージを与える。\nターンを終了する。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "経絡秘孔", + "description": "[gold]点穴[/gold]8を与える。\n[gold]点穴[/gold]を持っている敵全体が[gold]点穴[/gold]に等しいHPを失う。", + "description_raw": "[gold]点穴[/gold]{MarkPower:diff()}を与える。\n[gold]点穴[/gold]を持っている敵全体が[gold]点穴[/gold]に等しいHPを失う。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]点穴[/gold]11を与える。\n[gold]点穴[/gold]を持っている敵全体が[gold]点穴[/gold]に等しいHPを失う。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-WEAVE", + "name": "編み上げ", + "description": "4ダメージを与える。\n[gold]占術[/gold]を行うたび、捨て札から手札に戻す。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]占術[/gold]を行うたび、捨て札から手札に戻す。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "6ダメージを与える。\n[gold]占術[/gold]を行うたび、捨て札から手札に戻す。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "聖別", + "description": "敵全体に5ダメージを与える。", + "description_raw": "敵全体に{Damage:diff()}ダメージを与える。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "敵全体に8ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "舞い飛ぶ袖", + "description": "4ダメージを2回与える。", + "description_raw": "{Damage:diff()}ダメージを2回与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "6ダメージを2回与える。", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "華炎輪", + "description": "次のアタックは5の追加ダメージを与える。", + "description_raw": "次のアタックは{VigorPower:diff()}の追加ダメージを与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "次のアタックは8の追加ダメージを与える。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-ANCIENT_CARD", + "name": "蓄積", + "description": "[gold]憤怒[/gold]状態中、ダメージが+50%増加する。", + "description_raw": "[gold]憤怒[/gold]状態中、ダメージが+50%増加する。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-EVALUATE", + "name": "評価", + "description": "6[gold]ブロック[/gold]を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10[gold]ブロック[/gold]を得る。\n[gold]洞察[/gold]を1枚山札に加える。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "警戒", + "description": "8[gold]ブロック[/gold]を得る。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "12[gold]ブロック[/gold]を得る。\n[gold]平静[/gold]の[gold]スタンス[/gold]に入る。", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-PROTECT", + "name": "護身", + "description": "12[gold]ブロック[/gold]を得る。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "16[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "走り書き", + "description": "手札が一杯になるまでカードを引く。", + "description_raw": "手札が一杯になるまでカードを引く。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "蹂躙", + "description": "20ダメージを与える。", + "description_raw": "{Damage:diff()}ダメージを与える。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "30ダメージを与える。", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "追撃", + "description": "7ダメージを与える。\n直前にプレイしたカードがアタックの場合、[energy:1]を得る。", + "description_raw": "{Damage:diff()}ダメージを与える。\n直前にプレイしたカードがアタックの場合、{energyPrefix:energyIcons(1)}を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "11ダメージを与える。\n直前にプレイしたカードがアタックの場合、[energy:1]を得る。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-SAFETY", + "name": "退避", + "description": "12[gold]ブロック[/gold]を得る。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "16[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "連打", + "description": "4ダメージを与える。\n[gold]スタンス[/gold]の変更時、捨札から手札に戻す。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]スタンス[/gold]の変更時、捨札から手札に戻す。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "6ダメージを与える。\n[gold]スタンス[/gold]の変更時、捨札から手札に戻す。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "運命の切り開き", + "description": "7ダメージを与える。\n[gold]占術[/gold]2。\nカードを[blue]1[/blue]枚引く。", + "description_raw": "{Damage:diff()}ダメージを与える。\n[gold]占術[/gold]{Cards:diff()}。\nカードを[blue]1[/blue]枚引く。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "9ダメージを与える。\n[gold]占術[/gold]3。\nカードを[blue]1[/blue]枚引く。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "関節破壊", + "description": "8ダメージを与える。\n直前にプレイしたカードがスキルの場合、[gold]弱体[/gold]1を与える。", + "description_raw": "{Damage:diff()}ダメージを与える。\n直前にプレイしたカードがスキルの場合、[gold]弱体[/gold]{VulnerablePower:diff()}を与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10ダメージを与える。\n直前にプレイしたカードがスキルの場合、[gold]弱体[/gold]2を与える。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "防御", + "description": "5[gold]ブロック[/gold]を得る。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "8[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "鞭打つ帯", + "description": "8ダメージを与える。\n直前にプレイしたカードがアタックの場合、[gold]脱力[/gold]1を与える。", + "description_raw": "{Damage:diff()}ダメージを与える。\n直前にプレイしたカードがアタックの場合、[gold]脱力[/gold]{WeakPower:diff()}を与える。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "10ダメージを与える。\n直前にプレイしたカードがアタックの場合、[gold]脱力[/gold]2を与える。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "頂礼", + "description": "[gold]マントラ[/gold]2を得る。\n4[gold]ブロック[/gold]を得る。", + "description_raw": "[gold]マントラ[/gold]{MantraPower:diff()}を得る。\n{Block:diff()}[gold]ブロック[/gold]を得る。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]マントラ[/gold]3を得る。\n4[gold]ブロック[/gold]を得る。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "願いごと", + "description": "願いごとを1つ選び、それを叶える。", + "description_raw": "願いごとを1つ選び、それを叶える。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-VAULT", + "name": "飛び越え", + "description": "このターンに続いて追加の1ターンを行う。\nターンを終了する。", + "description_raw": "このターンに続いて追加の1ターンを行う。\nターンを終了する。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-SANCTITY", + "name": "高潔", + "description": "6[gold]ブロック[/gold]を得る。\n直前にプレイしたカードがスキルの場合、カードを2枚引く。", + "description_raw": "{Block:diff()}[gold]ブロック[/gold]を得る。\n直前にプレイしたカードがスキルの場合、カードを2枚引く。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "9[gold]ブロック[/gold]を得る。\n直前にプレイしたカードがスキルの場合、カードを2枚引く。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + } +] \ No newline at end of file diff --git a/data-mod/watcher/jpn/potions.json b/data-mod/watcher/jpn/potions.json new file mode 100644 index 00000000..1fa4b12a --- /dev/null +++ b/data-mod/watcher/jpn/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-AMBROSIA", + "name": "アンブロシア", + "description": "[blue]神聖[/blue]に入る。", + "description_raw": "[blue]神聖[/blue]に入る。", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "憤怒のポーション", + "description": "[blue]憤怒[/blue]に入る。", + "description_raw": "[blue]憤怒[/blue]に入る。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "瓶詰めの奇跡", + "description": "X 枚の[blue]奇跡[/blue]を手札に加える。", + "description_raw": "{Cards:diff()} 枚の[blue]奇跡[/blue]を手札に加える。", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "瓶詰めの奇跡", + "description": "[blue]平静[/blue]の[blue]スタンス[/blue]に入る。", + "description_raw": "[blue]平静[/blue]の[blue]スタンス[/blue]に入る。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/jpn/relics.json b/data-mod/watcher/jpn/relics.json new file mode 100644 index 00000000..299d6742 --- /dev/null +++ b/data-mod/watcher/jpn/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-DAMARU", + "name": "ダマル", + "description": "ターン開始時、[gold]マントラ[/gold]1を得る。", + "description_raw": "ターン開始時、[gold]マントラ[/gold]1を得る。", + "flavor": "小さな太鼓の音が心を覚醒させ、前進への道を示す。", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 0 + }, + { + "id": "WATCHER-MELANGE", + "name": "メランジュ", + "description": "山札をシャッフルするたび、[gold]占術[/gold]3。", + "description_raw": "山札をシャッフルするたび、[gold]占術[/gold]3。", + "flavor": "未知の起源を持つ謎の砂。シナモンの香りがする。", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 1 + }, + { + "id": "WATCHER-DUALITY", + "name": "二元性", + "description": "アタックをプレイするたび、一時的に[gold]敏捷[/gold]1を得る。", + "description_raw": "アタックをプレイするたび、一時的に[gold]敏捷[/gold]1を得る。", + "flavor": "「そして太陽は永遠に消え去った、まるでその前にカーテンが落ちたかのように。」 - ゾロス", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 2 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "涙のロケット", + "description": "戦闘開始時、平静のスタンスに入る。", + "description_raw": "戦闘開始時、平静のスタンスに入る。", + "flavor": "持ち主は盲目で、中身は見えない。", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 3 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "清水", + "description": "戦闘開始時、[gold]奇跡[/gold]を1枚手札に加える。", + "description_raw": "戦闘開始時、[gold]奇跡[/gold]を1枚手札に加える。", + "flavor": "細かい砂で濾過され、不純物を含まない。", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 4 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "紫の蓮", + "description": "平静を解除したとき、追加で[energy:1]を得る。", + "description_raw": "平静を解除したとき、追加で{energyPrefix:energyIcons(1)}を得る。", + "flavor": "古代の文献によれば、「マナの池」の表面はこれらの花で覆われていたという。", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 5 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "聖水", + "description": "清水と置き換える。戦闘開始時、[gold]奇跡[/gold]を3枚手札に加える。", + "description_raw": "清水と置き換える。戦闘開始時、[gold]奇跡[/gold]を3枚手札に加える。", + "flavor": "塔が建つ前の時代から集められたもの。", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 6 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "黄金の眼", + "description": "占術をするたび、追加で[gold]占術[/gold]2。", + "description_raw": "占術をするたび、追加で[gold]占術[/gold]2。", + "flavor": "近くの者の心を見通し、彼らの未来の動きを予測する。", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/kor/cards.json b/data-mod/watcher/kor/cards.json new file mode 100644 index 00000000..0233253a --- /dev/null +++ b/data-mod/watcher/kor/cards.json @@ -0,0 +1,3858 @@ +[ + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "개인기", + "description": "이 카드가 손에 있는 유일한 공격 카드일 경우에만 사용 가능합니다.\n피해를 30 줍니다.", + "description_raw": "이 카드가 손에 있는 유일한 공격 카드일 경우에만 사용 가능합니다.\n피해를 {Damage:diff()} 줍니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "이 카드가 손에 있는 유일한 공격 카드일 경우에만 사용 가능합니다.\n피해를 40 줍니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-TANTRUM", + "name": "격분", + "description": "피해를 3 만큼 3 번 줍니다.\n[gold]진노[/gold]합니다.\n이 카드를 뽑을 카드 더미에 섞어 넣습니다.", + "description_raw": "피해를 {Damage:diff()} 만큼 {Repeat:diff()} 번 줍니다.\n[gold]진노[/gold]합니다.\n이 카드를 뽑을 카드 더미에 섞어 넣습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 3 만큼 4 번 줍니다.\n[gold]진노[/gold]합니다.\n이 카드를 뽑을 카드 더미에 섞어 넣습니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "결론", + "description": "모든 적에게 피해를 12 줍니다.\n턴을 종료합니다.", + "description_raw": "모든 적에게 피해를 {Damage:diff()} 줍니다.\n턴을 종료합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "모든 적에게 피해를 16 줍니다.\n턴을 종료합니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "경각", + "description": "[gold]방어도[/gold]를 8 얻습니다.\n[gold]명상[/gold]합니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n[gold]명상[/gold]합니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 12 얻습니다.\n[gold]명상[/gold]합니다.", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "고요함", + "description": "[gold]명상[/gold]합니다.", + "description_raw": "[gold]명상[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "공유된 지혜", + "description": "다른 플레이어가 [gold]강림[/gold]에 진입한다。", + "description_raw": "다른 플레이어가 [gold]강림[/gold]에 진입한다。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "관절 부수기", + "description": "피해를 8 줍니다.\n가장 최근에 사용한 카드가 [gold]스킬[/gold] 카드라면, [gold]취약[/gold]을 1 부여합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n가장 최근에 사용한 카드가 [gold]스킬[/gold] 카드라면, [gold]취약[/gold]을 {VulnerablePower:diff()} 부여합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 10 줍니다.\n가장 최근에 사용한 카드가 [gold]스킬[/gold] 카드라면, [gold]취약[/gold]을 2 부여합니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "광휘", + "description": "피해를 12 줍니다.\n이번 전투에서 얻었던 [gold]만트라[/gold]만큼 추가 피해를 줍니다.", + "description_raw": "피해를 {CalculatedDamage:diff()} 줍니다.\n이번 전투에서 얻었던 [gold]만트라[/gold]만큼 추가 피해를 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "교훈", + "description": "피해를 10 줍니다.\n[gold]치명타[/gold]라면, 덱에 있는 무작위 카드를 영구히 [gold]강화[/gold]합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]치명타[/gold]라면, 덱에 있는 무작위 카드를 영구히 [gold]강화[/gold]합니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 13 줍니다.\n[gold]치명타[/gold]라면, 덱에 있는 무작위 카드를 영구히 [gold]강화[/gold]합니다.", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "급소", + "description": "[gold]표식[/gold]을 8 부여합니다.\n모든 적의 체력을 대상에게 부여된 [gold]표식[/gold] 만큼 감소시킵니다.", + "description_raw": "[gold]표식[/gold]을 {MarkPower:diff()} 부여합니다.\n모든 적의 체력을 대상에게 부여된 [gold]표식[/gold] 만큼 감소시킵니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]표식[/gold]을 11 부여합니다.\n모든 적의 체력을 대상에게 부여된 [gold]표식[/gold] 만큼 감소시킵니다.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-PRAY", + "name": "기도", + "description": "[gold]만트라[/gold]를 3 얻습니다.\n뽑을 카드 더미에 [gold]통찰[/gold]을 섞어 넣습니다.", + "description_raw": "[gold]만트라[/gold]를 {MantraPower:diff()} 얻습니다.\n뽑을 카드 더미에 [gold]통찰[/gold]을 섞어 넣습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]만트라[/gold]를 4 얻습니다.\n뽑을 카드 더미에 [gold]통찰[/gold]을 섞어 넣습니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-MIRACLE", + "name": "기적", + "description": "[energy:1] 를 얻습니다.", + "description_raw": "{Energy:energyIcons()} 를 얻습니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[energy:2] 를 얻습니다.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "내면의 평화", + "description": "[gold]명상[/gold] 중이라면, 카드를 3 장 뽑습니다. 그렇지 않다면 [gold]명상[/gold]합니다.", + "description_raw": "[gold]명상[/gold] 중이라면, 카드를 {Cards:diff()} 장 뽑습니다. 그렇지 않다면 [gold]명상[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]명상[/gold] 중이라면, 카드를 4 장 뽑습니다. 그렇지 않다면 [gold]명상[/gold]합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-FASTING", + "name": "단식", + "description": "[gold]힘[/gold]을 3 얻습니다.\n[gold]민첩[/gold]을 3 얻습니다.\n매 턴 시작 시 [energy:1]를 1 적게 얻습니다.", + "description_raw": "[gold]힘[/gold]을 {StrengthPower:diff()} 얻습니다.\n[gold]민첩[/gold]을 {DexterityPower:diff()} 얻습니다.\n매 턴 시작 시 {energyPrefix:energyIcons(1)}를 1 적게 얻습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]힘[/gold]을 4 얻습니다.\n[gold]민첩[/gold]을 4 얻습니다.\n매 턴 시작 시 [energy:1]를 1 적게 얻습니다.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "데우스 엑스 마키나", + "description": "이 카드를 뽑으면 소멸하면서 [gold]기적[/gold]을 2 장 손으로 가져옵니다.", + "description_raw": "이 카드를 뽑으면 소멸하면서 [gold]기적[/gold]을 {Cards:diff()} 장 손으로 가져옵니다.", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "이 카드를 뽑으면 소멸하면서 [gold]기적[/gold]을 3 장 손으로 가져옵니다.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "돌려차기", + "description": "피해를 15 줍니다.\n카드를 2 장 뽑습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n카드를 {Cards:diff()} 장 뽑습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 20 줍니다.\n카드를 2 장 뽑습니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "뒤처리", + "description": "피해를 7 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, [energy:1] [blue]1[/blue] 를 얻습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, {energyPrefix:energyIcons(1)} [blue]1[/blue] 를 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 11 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, [energy:1] [blue]1[/blue] 를 얻습니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "들끓는 울화", + "description": "다음 턴 시작 시, [gold]진노[/gold]하고 카드를 2 장 뽑습니다.", + "description_raw": "다음 턴 시작 시, [gold]진노[/gold]하고 카드를 {DrawCardsNextTurnPower:diff()} 장 뽑습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "다음 턴 시작 시, [gold]진노[/gold]하고 카드를 3 장 뽑습니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "라그나로크", + "description": "무작위 적에게 피해를 5 줍니다 만큼 5 번 줍니다.", + "description_raw": "무작위 적에게 피해를 {Damage:diff()} 줍니다 만큼 {Repeat:diff()} 번 줍니다.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "무작위 적에게 피해를 6 줍니다 만큼 6 번 줍니다.", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "마술 칼날", + "description": "뽑을 카드 더미에 [gold]말살검[/gold]을 섞어 넣습니다.", + "description_raw": "뽑을 카드 더미에 [gold]말살검[/gold]을 섞어 넣습니다.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": null, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "마음의 요새", + "description": "[gold]경지[/gold]를 바꿀 때마다, [gold]방어도[/gold]를 4 얻습니다.", + "description_raw": "[gold]경지[/gold]를 바꿀 때마다, [gold]방어도[/gold]를 {MentalFortressPower:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]경지[/gold]를 바꿀 때마다, [gold]방어도[/gold]를 6 얻습니다.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "말살검", + "description": "피해를 9 만큼 X 번 줍니다.", + "description_raw": "피해를 {Damage:diff()} 만큼 {Repeat:cond:<0?X|{Repeat:diff()}} 번 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 15 만큼 X 번 줍니다.", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-WALLOP", + "name": "맹공", + "description": "피해를 9 줍니다.\n막히지 않은 피해만큼 [gold]방어도[/gold]를 얻습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n막히지 않은 피해만큼 [gold]방어도[/gold]를 얻습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 12 줍니다.\n막히지 않은 피해만큼 [gold]방어도[/gold]를 얻습니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "무력 돌파", + "description": "피해를 20 줍니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 30 줍니다.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "무외", + "description": "피해를 8 줍니다.\n적이 공격할 의도가 있다면, [gold]명상[/gold]합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n적이 공격할 의도가 있다면, [gold]명상[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 11 줍니다.\n적이 공격할 의도가 있다면, [gold]명상[/gold]합니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "백열", + "description": "[gold]진노[/gold]합니다.", + "description_raw": "[gold]진노[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-BETA", + "name": "베타", + "description": "뽑을 카드 더미에 [gold]오메가[/gold]를 섞어 넣습니다.", + "description_raw": "뽑을 카드 더미에 [gold]오메가[/gold]를 섞어 넣습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "벨트 휘두르기", + "description": "피해를 8 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, [gold]약화[/gold]를 1 부여합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, [gold]약화[/gold]를 {WeakPower:diff()} 부여합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 10 줍니다.\n가장 최근에 사용한 카드가 공격 카드라면, [gold]약화[/gold]를 2 부여합니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-PROTECT", + "name": "보호", + "description": "[gold]방어도[/gold]를 12 얻습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 16 얻습니다.", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "부복", + "description": "[gold]만트라[/gold]를 2 얻습니다.\n[gold]방어도[/gold]를 4 얻습니다.", + "description_raw": "[gold]만트라[/gold]를 {MantraPower:diff()} 얻습니다.\n[gold]방어도[/gold]를 {Block:diff()} 얻습니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]만트라[/gold]를 3 얻습니다.\n[gold]방어도[/gold]를 4 얻습니다.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "부와 명예", + "description": "[gold]골드[/gold]를 25 얻습니다.", + "description_raw": "[gold]골드[/gold]를 {Gold:diff()} 얻습니다.", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]골드[/gold]를 30 얻습니다.", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "분개", + "description": "[gold]진노[/gold] 중이라면, 모든 적에게 [gold]취약[/gold]을 3 부여합니다. 그렇지 않으면 [gold]진노[/gold]합니다.", + "description_raw": "[gold]진노[/gold] 중이라면, 모든 적에게 [gold]취약[/gold]을 {VulnerablePower:diff()} 부여합니다. 그렇지 않으면 [gold]진노[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]진노[/gold] 중이라면, 모든 적에게 [gold]취약[/gold]을 5 부여합니다. 그렇지 않으면 [gold]진노[/gold]합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-ERUPTION", + "name": "분화", + "description": "피해를 9 줍니다.\n[gold]진노[/gold]합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]진노[/gold]합니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "불의 고리", + "description": "다음에 사용하는 공격 카드의 피해량이 5 증가합니다.", + "description_raw": "다음에 사용하는 공격 카드의 피해량이 {VigorPower:diff()} 증가합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "다음에 사용하는 공격 카드의 피해량이 8 증가합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-MEDITATE", + "name": "사색", + "description": "버린 카드 더미에서 카드 1 장 을 손으로 들고 온 뒤 [gold]보존[/gold]합니다. .\n[gold]명상[/gold]합니다.\n턴을 종료합니다.", + "description_raw": "버린 카드 더미에서 카드 {Cards:diff()} {Cards:plural:장|장} 을 손으로 들고 온 뒤 [gold]보존[/gold]합니다. {Cards:plural:|}.\n[gold]명상[/gold]합니다.\n턴을 종료합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "버린 카드 더미에서 카드 2 장 을 손으로 들고 온 뒤 [gold]보존[/gold]합니다. .\n[gold]명상[/gold]합니다.\n턴을 종료합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "선견지명", + "description": "턴 시작 시, [gold]예지[/gold] 3", + "description_raw": "턴 시작 시, [gold]예지[/gold] {ForesightPower:diff()}", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "턴 시작 시, [gold]예지[/gold] 4", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "손절", + "description": "피해를 5 줍니다.\n이 적을 공격할 때마다, [gold]방어도[/gold]를 2 얻습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n이 적을 공격할 때마다, [gold]방어도[/gold]를 {BlockReturnPower:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 7 줍니다.\n이 적을 공격할 때마다, [gold]방어도[/gold]를 3 얻습니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "수비", + "description": "[gold]방어도[/gold]를 5 얻습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 8 얻습니다.", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-COLLECT", + "name": "수집", + "description": "다음 X 턴 동안 턴 시작 시 손으로 [gold]기적+[/gold]을 가져옵니다.", + "description_raw": "다음 {IfUpgraded:show:X+1|X} 턴 동안 턴 시작 시 손으로 [gold]기적+[/gold]을 가져옵니다.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "다음 X+1 턴 동안 턴 시작 시 손으로 [gold]기적+[/gold]을 가져옵니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "순간의 명료함", + "description": "모든 아군이 [gold]명상[/gold]합니다. \n다음 턴 시작 시 [gold]명상[/gold]에서 벗어납니다.", + "description_raw": "모든 아군이 [gold]명상[/gold]합니다. \n다음 턴 시작 시 [gold]명상[/gold]에서 벗어납니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-WORSHIP", + "name": "숭배", + "description": "[gold]만트라[/gold]를 [blue]5[/blue] 얻습니다.", + "description_raw": "[gold]만트라[/gold]를 [blue]5[/blue] 얻습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "시간의 모래", + "description": "피해를 20 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 비용이 1 줄어듭니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 비용이 1 줄어듭니다.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 26 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 비용이 1 줄어듭니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "신성 모독", + "description": "[gold]강림[/gold]합니다.\n다음 턴에 죽습니다.", + "description_raw": "[gold]강림[/gold]합니다.\n다음 턴에 죽습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "심판", + "description": "적의 체력이 30 이하일 경우, 체력을 0으로 만듭니다.", + "description_raw": "적의 체력이 {DamageThreshold:diff()} 이하일 경우, 체력을 0으로 만듭니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "적의 체력이 40 이하일 경우, 체력을 0으로 만듭니다.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-SAFETY", + "name": "안전", + "description": "[gold]방어도[/gold]를 12 얻습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 16 얻습니다.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-ALPHA", + "name": "알파", + "description": "뽑을 카드 더미에 [gold]베타[/gold]를 섞어 넣습니다.", + "description_raw": "뽑을 카드 더미에 [gold]베타[/gold]를 섞어 넣습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-SMITE", + "name": "엄벌", + "description": "피해를 12 줍니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 16 줍니다.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "여류", + "description": "턴 종료 시 [gold]명상[/gold] 중이라면, [gold]방어도[/gold]를 5 얻습니다.", + "description_raw": "턴 종료 시 [gold]명상[/gold] 중이라면, [gold]방어도[/gold]를 {LikeWaterPower:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "턴 종료 시 [gold]명상[/gold] 중이라면, [gold]방어도[/gold]를 7 얻습니다.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-NIRVANA", + "name": "열반", + "description": "[gold]예지[/gold]할 때마다, [gold]방어도[/gold]를 3 얻습니다.", + "description_raw": "[gold]예지[/gold]할 때마다, [gold]방어도[/gold]를 {NirvanaPower:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]예지[/gold]할 때마다, [gold]방어도[/gold]를 4 얻습니다.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "염원", + "description": "하나 선택:\n판금 갑옷을 6 얻거나,\n[gold]힘[/gold]을 3 얻거나, [gold]골드[/gold]를 25 얻습니다.", + "description_raw": "하나 선택:\n판금 갑옷을 {PlatedArmorPower:diff()} 얻거나,\n[gold]힘[/gold]을 {StrengthPower:diff()} 얻거나, [gold]골드[/gold]를 {Gold:diff()} 얻습니다.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "하나 선택:\n판금 갑옷을 8 얻거나,\n[gold]힘[/gold]을 4 얻거나, [gold]골드[/gold]를 30 얻습니다.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "영생", + "description": "[gold]판금 갑옷[/gold]을 X 얻습니다.", + "description_raw": "[gold]판금 갑옷[/gold]을 {PlatingPower:diff()} 얻습니다.", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "영혼 방패", + "description": "손에 있는 카드 한 장 당 [gold]방어도[/gold]를 3 얻습니다.", + "description_raw": "손에 있는 카드 한 장 당 [gold]방어도[/gold]를 {Block:diff()} 얻습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "손에 있는 카드 한 장 당 [gold]방어도[/gold]를 4 얻습니다.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-OMEGA", + "name": "오메가", + "description": "턴 종료 시, 모든 적에게 피해를 50 줍니다.", + "description_raw": "턴 종료 시, 모든 적에게 피해를 {OmegaPower:diff()} 줍니다.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "턴 종료 시, 모든 적에게 피해를 60 줍니다.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "외세", + "description": "모든 직업의 공격 카드 3장 중 1장을 선택해 손으로 가져옵니다.", + "description_raw": "모든 직업의 공격 카드 3장 중 1장을 선택해 손으로 가져옵니다. {IfUpgraded:show:\n이번 턴에 비용이 0이 됩니다.|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "모든 직업의 공격 카드 3장 중 1장을 선택해 손으로 가져옵니다. \n이번 턴에 비용이 0이 됩니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "요행", + "description": "[gold]예지[/gold] 1\n[gold]방어도[/gold]를 2 얻습니다\n피해를 3 줍니다.", + "description_raw": "[gold]예지[/gold] {Cards:diff()}\n[gold]방어도[/gold]를 {Block:diff()} 얻습니다\n피해를 {Damage:diff()} 줍니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]예지[/gold] 2\n[gold]방어도[/gold]를 3 얻습니다\n피해를 4 줍니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "운명 가르기", + "description": "피해를 7 줍니다.\n[gold]예지[/gold] 2\n카드를 [blue]1[/blue] 장 뽑습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]예지[/gold] {Cards:diff()}\n카드를 [blue]1[/blue] 장 뽑습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 9 줍니다.\n[gold]예지[/gold] 3\n카드를 [blue]1[/blue] 장 뽑습니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "육체 수양", + "description": "[gold]방어도[/gold]를 7 얻습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 10 얻습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "인내", + "description": "[gold]방어도[/gold]를 5 얻습니다.\n [gold]보존[/gold]될 떄마다, 이번 전투 동안 이 카드의 [gold]방어도[/gold]가 2 증가합니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n [gold]보존[/gold]될 떄마다, 이번 전투 동안 이 카드의 [gold]방어도[/gold]가 {Increase:diff()} 증가합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 7 얻습니다.\n [gold]보존[/gold]될 떄마다, 이번 전투 동안 이 카드의 [gold]방어도[/gold]가 3 증가합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "일진광풍", + "description": "피해를 4 줍니다.\n경지를 바꿀 때마다 버린 카드 더미에서 손으로 가져옵니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n경지를 바꿀 때마다 버린 카드 더미에서 손으로 가져옵니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 6 줍니다.\n경지를 바꿀 때마다 버린 카드 더미에서 손으로 가져옵니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "장법", + "description": "이번 턴에 [gold]방어도[/gold]를 얻을 때마다, 모든 적에게 [gold]약화[/gold]를 1 부여합니다.", + "description_raw": "이번 턴에 [gold]방어도[/gold]를 얻을 때마다, 모든 적에게 [gold]약화[/gold]를 {WaveOfTheHandPower:diff()} 부여합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "이번 턴에 [gold]방어도[/gold]를 얻을 때마다, 모든 적에게 [gold]약화[/gold]를 2 부여합니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "재계시 ", + "description": "12 피해를 입힌다.\n [gold]강림[/gold]에 진입한다.", + "description_raw": "{Damage:diff()} 피해를 입힌다.\n [gold]강림[/gold]에 진입한다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-HALT", + "name": "저지", + "description": "[gold]방어도[/gold]를 3 얻습니다.\n[gold]진노[/gold] 중일 경우,\n[gold]방어도[/gold]를 추가로 9 얻습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n[gold]진노[/gold] 중일 경우,\n[gold]방어도[/gold]를 추가로 {WrathBlock:diff()} 얻습니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 4 얻습니다.\n[gold]진노[/gold] 중일 경우,\n[gold]방어도[/gold]를 추가로 14 얻습니다.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "전능", + "description": "[gold]힘[/gold]을 3 얻습니다.", + "description_raw": "[gold]힘[/gold]을 {StrengthPower:diff()} 얻습니다.", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]힘[/gold]을 4 얻습니다.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "전지", + "description": "뽑을 카드 더미에서 카드를 선택합니다. 선택한 카드를 두 번 사용하고 [gold]소멸[/gold]시킵니다.", + "description_raw": "뽑을 카드 더미에서 카드를 선택합니다. 선택한 카드를 두 번 사용하고 [gold]소멸[/gold]시킵니다.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "전투 찬가", + "description": "매 턴 시작 시, [gold]엄벌[/gold]을 손으로 가져옵니다.", + "description_raw": "매 턴 시작 시, [gold]엄벌[/gold]을 손으로 가져옵니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "정권 수양", + "description": "피해를 9 줍니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 14 줍니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "정신 수양", + "description": "카드를 2 장 뽑습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "description_raw": "카드를 {Cards:diff()} 장 뽑습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "카드를 3 장 뽑습니다.\n현재 [gold]경지[/gold]에서 벗어납니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "제 3의 눈", + "description": "[gold]방어도[/gold]를 7 얻습니다.\n[gold]예지[/gold] 3.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n[gold]예지[/gold] {Cards:diff()}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 9 얻습니다.\n[gold]예지[/gold] 5.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-SANCTITY", + "name": "존엄", + "description": "[gold]방어도[/gold]를 6 얻습니다.\n가장 최근에 사용한 카드가 스킬 카드라면 카드를 2 장 뽑습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n가장 최근에 사용한 카드가 스킬 카드라면 카드를 2 장 뽑습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 9 얻습니다.\n가장 최근에 사용한 카드가 스킬 카드라면 카드를 2 장 뽑습니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "지배", + "description": "카드가 [gold]보존[/gold]될 때마다, 그 카드의 비용을 이번 전투 동안 1 낮춥니다.", + "description_raw": "카드가 [gold]보존[/gold]될 때마다, 그 카드의 비용을 이번 전투 동안 1 낮춥니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "천국의 계단", + "description": "피해를 10 줍니다.\n뽑을 카드 더미에 [gold]무력 돌파[/gold]를 섞어 넣습니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n뽑을 카드 더미에 [gold]무력 돌파[/gold]를 섞어 넣습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 15 줍니다.\n뽑을 카드 더미에 [gold]무력 돌파[/gold]를 섞어 넣습니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "천신의 형상", + "description": "턴 시작 시, [energy:1] 를 얻습니다. 얻는 에너지는 매 턴 1 만큼 증가합니다.", + "description_raw": "턴 시작 시, {energyPrefix:energyIcons(1)} 를 얻습니다. 얻는 에너지는 매 턴 1 만큼 증가합니다.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "추월", + "description": "[gold]진노[/gold]할 때마다, 카드를 [blue]2[/blue] 장 뽑습니다.", + "description_raw": "[gold]진노[/gold]할 때마다, 카드를 [blue]2[/blue] 장 뽑습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "축성", + "description": "모든 적에게 피해를 5 줍니다.", + "description_raw": "모든 적에게 피해를 {Damage:diff()} 줍니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "모든 적에게 피해를 8 줍니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-ANCIENT_CARD", + "name": "축적", + "description": "[gold]진노[/gold] 상태일 때, 피해가 +50% 증가한다.", + "description_raw": "[gold]진노[/gold] 상태일 때, 피해가 +50% 증가한다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "충돌 강타", + "description": "적 하나당 피해를 7 줍니다.", + "description_raw": "적 하나당 피해를 {Damage:diff()} 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "적 하나당 피해를 10 줍니다.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "타격", + "description": "피해를 6 줍니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 9 줍니다.", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-INSIGHT", + "name": "통찰", + "description": "카드를 2 장 뽑습니다.", + "description_raw": "카드를 {Cards:diff()} 장 뽑습니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "카드를 3 장 뽑습니다.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-EVALUATE", + "name": "평가", + "description": "[gold]방어도[/gold]를 6 얻습니다.\n[gold]통찰[/gold]을 뽑을 카드 더미에 섞어 넣습니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n[gold]통찰[/gold]을 뽑을 카드 더미에 섞어 넣습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 10 얻습니다.\n[gold]통찰[/gold]을 뽑을 카드 더미에 섞어 넣습니다.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-STUDY", + "name": "학습", + "description": "턴 종료 시, [gold]통찰[/gold]을 뽑을 카드 더미에 섞어 넣습니다.", + "description_raw": "턴 종료 시, [gold]통찰[/gold]을 뽑을 카드 더미에 섞어 넣습니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-DEVOTION", + "name": "헌신", + "description": "턴 시작 시, [gold]만트라[/gold]를 2 얻습니다.", + "description_raw": "턴 시작 시, [gold]만트라[/gold]를 {DevotionPower:diff()} 얻습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "턴 시작 시, [gold]만트라[/gold]를 3 얻습니다.", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "현실 개척", + "description": "피해를 6 줍니다.\n[gold]엄벌[/gold]을 손으로 가져옵니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]엄벌[/gold]을 손으로 가져옵니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 10 줍니다.\n[gold]엄벌[/gold]을 손으로 가져옵니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "현실 속이기", + "description": "[gold]방어도[/gold]를 4 얻습니다.\n[gold]안전[/gold]을 손으로 가져옵니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n[gold]안전[/gold]을 손으로 가져옵니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 7 얻습니다.\n[gold]안전[/gold]을 손으로 가져옵니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "현실 지배", + "description": "전투 중에 카드를 생성할 때마다 그 카드를 [gold]강화[/gold]합니다.", + "description_raw": "전투 중에 카드를 생성할 때마다 그 카드를 [gold]강화[/gold]합니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "회오리 타격", + "description": "피해를 7 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 피해량이 4 만큼 증가합니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 피해량이 {RetainIncrease:diff()} 만큼 증가합니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 10 줍니다.\n[gold]보존[/gold]될 때마다, 이번 전투 동안 이 카드의 피해량이 5 만큼 증가합니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-SWIVEL", + "name": "회전", + "description": "[gold]방어도[/gold]를 8 얻습니다.\n다음으로 사용하는 공격 카드의 비용이 0이 됩니다.", + "description_raw": "[gold]방어도[/gold]를 {Block:diff()} 얻습니다.\n다음으로 사용하는 공격 카드의 비용이 0이 됩니다.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]방어도[/gold]를 11 얻습니다.\n다음으로 사용하는 공격 카드의 비용이 0이 됩니다.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-VAULT", + "name": "회피 도약", + "description": "이번 턴 후에 내 턴을 추가로 진행합니다.\n턴을 종료합니다.", + "description_raw": "이번 턴 후에 내 턴을 추가로 진행합니다.\n턴을 종료합니다.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-WEAVE", + "name": "횡행", + "description": "피해를 4 줍니다. [gold]예지[/gold]할 때마다 이 카드를 버린 카드 더미에서 손으로 들고 옵니다.", + "description_raw": "피해를 {Damage:diff()} 줍니다. [gold]예지[/gold]할 때마다 이 카드를 버린 카드 더미에서 손으로 들고 옵니다.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 6 줍니다. [gold]예지[/gold]할 때마다 이 카드를 버린 카드 더미에서 손으로 들고 옵니다.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "휘갈김", + "description": "손이 가득 찰 때까지 카드를 뽑습니다.", + "description_raw": "손이 가득 찰 때까지 카드를 뽑습니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "흩날리는 소매", + "description": "피해를 4 만큼 두 번 줍니다.", + "description_raw": "피해를 {Damage:diff()} 만큼 두 번 줍니다.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "피해를 6 만큼 두 번 줍니다.", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + } +] \ No newline at end of file diff --git a/data-mod/watcher/kor/potions.json b/data-mod/watcher/kor/potions.json new file mode 100644 index 00000000..b43c2d73 --- /dev/null +++ b/data-mod/watcher/kor/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "병에 담긴 기적", + "description": "X장의 [blue]기적[/blue]을 손에 추가한다.", + "description_raw": "{Cards:diff()}장의 [blue]기적[/blue]을 손에 추가한다.", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "병에 담긴 기적 ", + "description": "[blue]명상[/blue]합니다。", + "description_raw": "[blue]명상[/blue]합니다。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-AMBROSIA", + "name": "암브로시아", + "description": "[blue]강림[/blue]에 진입한다。", + "description_raw": "[blue]강림[/blue]에 진입한다。", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "진노의 물약 ", + "description": "[blue]진노[/blue]에 진입한다。", + "description_raw": "[blue]진노[/blue]에 진입한다。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/kor/relics.json b/data-mod/watcher/kor/relics.json new file mode 100644 index 00000000..5e032376 --- /dev/null +++ b/data-mod/watcher/kor/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "눈물모양 목걸이", + "description": "모든 전투 시작 시 [gold]명상[/gold]합니다.", + "description_raw": "모든 전투 시작 시 [gold]명상[/gold]합니다.", + "flavor": "소유주의 눈이 멀었기 때문에, 내용물은 볼 수 없습니다.", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 0 + }, + { + "id": "WATCHER-DAMARU", + "name": "다마루", + "description": "턴 시작 시, [gold]만트라[/gold]를 1 얻습니다.", + "description_raw": "턴 시작 시, [gold]만트라[/gold]를 1 얻습니다.", + "flavor": "작은 북소리가 정신이 번쩍 들게 하고, 앞으로 가는 길을 드러냅니다.", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 1 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "보라색 연꽃", + "description": "[gold]명상[/gold]에서 벗어날 때마다, 추가로 [gold]에너지[/gold]를 얻습니다.", + "description_raw": "[gold]명상[/gold]에서 벗어날 때마다, 추가로 [gold]에너지[/gold]를 얻습니다.", + "flavor": "옛 문헌에 따르면, \"마나 호수\" 위에 이 꽃들이 흩어져 있었다고 합니다.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 2 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "성수", + "description": "[gold]순수한 물[/gold]과 교체됩니다. 매 전투 시작 시, [gold]기적[/gold]을 3장 손으로 가져옵니다.", + "description_raw": "[gold]순수한 물[/gold]과 교체됩니다. 매 전투 시작 시, [gold]기적[/gold]을 3장 손으로 가져옵니다.", + "flavor": "첨탑이 생겨나기 전에 퍼낸 것입니다.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 3 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "신선한 물", + "description": "매 전투 시작 시, [gold]기적[/gold]을 1장 손으로 가져옵니다.", + "description_raw": "매 전투 시작 시, [gold]기적[/gold]을 1장 손으로 가져옵니다.", + "flavor": "고운 모래를 통해 여과되어 불순물이 없습니다.", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 4 + }, + { + "id": "WATCHER-DUALITY", + "name": "음양성", + "description": "[gold]공격[/gold] 카드를 사용할 때마다, 임시 [gold]민첩[/gold]을 1 얻습니다.", + "description_raw": "[gold]공격[/gold] 카드를 사용할 때마다, 임시 [gold]민첩[/gold]을 1 얻습니다.", + "flavor": "\"그리고 태양은, 마치 제 앞에 커튼이 닫히듯이 영원히 빛을 잃었다.\" - 조로스", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 5 + }, + { + "id": "WATCHER-MELANGE", + "name": "혼합물", + "description": "뽑을 카드 더미를 섞을 때마다, [gold]예지[/gold] 3.", + "description_raw": "뽑을 카드 더미를 섞을 때마다, [gold]예지[/gold] 3.", + "flavor": "어디서 온 건지 알 수 없는 미지의 모래입니다. 시나몬 향이 납니다.", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 6 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "황금 눈", + "description": "[gold]예지[/gold]할 때마다, 추가로 2 만큼 [gold]예지[/gold]합니다.", + "description_raw": "[gold]예지[/gold]할 때마다, 추가로 2 만큼 [gold]예지[/gold]합니다.", + "flavor": "근처에 있는 이들의 움직임을 예지하면서, 그들의 마음을 들여다보세요.", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/rus/cards.json b/data-mod/watcher/rus/cards.json new file mode 100644 index 00000000..c5d491fb --- /dev/null +++ b/data-mod/watcher/rus/cards.json @@ -0,0 +1,3860 @@ +[ + { + "id": "WATCHER-ALPHA", + "name": "Альфа", + "description": "Замешивает [gold]«Бету»[/gold] в [gold]стопку добора[/gold].", + "description_raw": "Замешивает [gold]«Бету»[/gold] в [gold]стопку добора[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "Аминь", + "description": "Наносит 12 урона ВСЕМ врагам.\nВаш ход завершается.", + "description_raw": "Наносит {Damage:diff()} урона ВСЕМ врагам.\nВаш ход завершается.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 16 урона ВСЕМ врагам.\nВаш ход завершается.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "Бдительность", + "description": "Дает 8 [gold]защиты[/gold].\nВы переходите в [gold]Спокойствие[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nВы переходите в [gold]Спокойствие[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 12 [gold]защиты[/gold].\nВы переходите в [gold]Спокойствие[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-BETA", + "name": "Бета", + "description": "Замешивает [gold]«Омегу»[/gold] в [gold]стопку добора[/gold].", + "description_raw": "Замешивает [gold]«Омегу»[/gold] в [gold]стопку добора[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "Бог из машины", + "description": "Когда добирается,\nдобавляет в [gold]руку[/gold] 2 [gold]«Чуда»[/gold],\nзатем [gold]сжигается[/gold].", + "description_raw": "Когда добирается,\nдобавляет в [gold]руку[/gold] {Cards:diff()} [gold]«Чуда»[/gold],\nзатем [gold]сжигается[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Когда добирается,\nдобавляет в [gold]руку[/gold] 3 [gold]«Чуда»[/gold],\nзатем [gold]сжигается[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "Боевой псалом", + "description": "Добавляет в [gold]руку[/gold] [gold]«Кару»[/gold] в начале хода.", + "description_raw": "Добавляет в [gold]руку[/gold] [gold]«Кару»[/gold] в начале хода.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "Болевые точки", + "description": "Накладывает 8 [gold]Меток[/gold].\nВСЕ враги теряют ОЗ,\nравные количеству [gold]Меток[/gold] на них.", + "description_raw": "Накладывает {MarkPower:diff()} [gold]Меток[/gold].\nВСЕ враги теряют ОЗ,\nравные количеству [gold]Меток[/gold] на них.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Накладывает 11 [gold]Меток[/gold].\nВСЕ враги теряют ОЗ,\nравные количеству [gold]Меток[/gold] на них.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "Великолепие", + "description": "Наносит 12 урона.\nНаносит дополнительный урон, равный количеству [gold]Мантры[/gold], полученной в этом бою.", + "description_raw": "Наносит {CalculatedDamage:diff()} урона.\nНаносит дополнительный урон, равный количеству [gold]Мантры[/gold], полученной в этом бою.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "Венец пламени", + "description": "Следующая атака нанесет на 5 урона больше.", + "description_raw": "Следующая атака нанесет на {VigorPower:diff()} урона больше.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Следующая атака нанесет на 8 урона больше.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "Вечная жизнь", + "description": "Дает 6 [gold]Пластинчатой брони[/gold].", + "description_raw": "Дает {PlatedArmorPower:diff()} [gold]Пластинчатой брони[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 8 [gold]Пластинчатой брони[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "Внешние веяния", + "description": "Добавляет в [gold]руку[/gold] 1 из 3 случайных Атак другого персонажа на выбор.", + "description_raw": "Добавляет в [gold]руку[/gold] 1 из 3 случайных Атак другого персонажа на выбор.{IfUpgraded:show:\nВ этом ходу она бесплатная.|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Добавляет в [gold]руку[/gold] 1 из 3 случайных Атак другого персонажа на выбор.\nВ этом ходу она бесплатная.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "Внутренний покой", + "description": "Вы переходите в [gold]Спокойствие[/gold].\nЕсли уже в [gold]Спокойствии[/gold],\nвы добираете 3 карты.", + "description_raw": "Вы переходите в [gold]Спокойствие[/gold].\nЕсли уже в [gold]Спокойствии[/gold],\nвы добираете {Cards:diff()} карты.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы переходите в [gold]Спокойствие[/gold].\nЕсли уже в [gold]Спокойствии[/gold],\nвы добираете 4 карты.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-COLLECT", + "name": "Вобрать", + "description": "Добавляет в [gold]руку[/gold] [gold]«Чудо+»[/gold]\nв начале следующих X ходов.", + "description_raw": "Добавляет в [gold]руку[/gold] [gold]«Чудо+»[/gold]\nв начале следующих {IfUpgraded:show:X+1|X} ходов.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Добавляет в [gold]руку[/gold] [gold]«Чудо+»[/gold]\nв начале следующих X+1 ходов.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-SWIVEL", + "name": "Вполоборота", + "description": "Дает 8 [gold]защиты[/gold].\nСледующая Атака разыгрывается бесплатно.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nСледующая Атака разыгрывается бесплатно.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 11 [gold]защиты[/gold].\nСледующая Атака разыгрывается бесплатно.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-WALLOP", + "name": "Врезать", + "description": "Наносит 9 урона.\nДает [gold]защиту[/gold], равную незаблокированному урону по врагу.", + "description_raw": "Наносит {Damage:diff()} урона.\nДает [gold]защиту[/gold], равную незаблокированному урону по врагу.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 12 урона.\nДает [gold]защиту[/gold], равную незаблокированному урону по врагу.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "Всеведение", + "description": "Выберите карту из [gold]стопки добора[/gold]. Разыграйте ее дважды, затем [gold]сожгите[/gold] ее.", + "description_raw": "Выберите карту из [gold]стопки добора[/gold]. Разыграйте ее дважды, затем [gold]сожгите[/gold] ее.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "Всемогущество", + "description": "Дает 3 [gold]силы[/gold].", + "description_raw": "Дает {StrengthPower:diff()} [gold]силы[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]силы[/gold].", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-ERUPTION", + "name": "Вспышка", + "description": "Наносит 9 урона.\nВы переходите в [gold]Гнев[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nВы переходите в [gold]Гнев[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "Выйти из себя", + "description": "Вы переходите в [gold]Гнев[/gold].\nЕсли уже в [gold]Гневе[/gold], накладывает 3 [gold]уязвимости[/gold] на ВСЕХ врагов.", + "description_raw": "Вы переходите в [gold]Гнев[/gold].\nЕсли уже в [gold]Гневе[/gold], накладывает {VulnerablePower:diff()} [gold]уязвимости[/gold] на ВСЕХ врагов.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы переходите в [gold]Гнев[/gold].\nЕсли уже в [gold]Гневе[/gold], накладывает 5 [gold]уязвимости[/gold] на ВСЕХ врагов.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "Достичь небес", + "description": "Наносит 10 урона.\nЗамешивает [gold]«Путем насилия»[/gold] в [gold]стопку добора[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nЗамешивает [gold]«Путем насилия»[/gold] в [gold]стопку добора[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 15 урона.\nЗамешивает [gold]«Путем насилия»[/gold] в [gold]стопку добора[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "Духовный щит", + "description": "Дает 3 [gold]защиты[/gold] за каждую карту в руке.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold] за каждую карту в руке.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]защиты[/gold] за каждую карту в руке.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "Единство разума", + "description": "Другой игрок переходит в [gold]Божественность[/gold].", + "description_raw": "Другой игрок переходит в [gold]Божественность[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "Желание", + "description": "Выберите и получите одно:\n6 [gold]Пластинчатой брони[/gold],\n3 [gold]силы[/gold] или 25 [gold]золота[/gold].", + "description_raw": "Выберите и получите одно:\n{PlatedArmorPower:diff()} [gold]Пластинчатой брони[/gold],\n{StrengthPower:diff()} [gold]силы[/gold] или {Gold:diff()} [gold]золота[/gold].", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Выберите и получите одно:\n8 [gold]Пластинчатой брони[/gold],\n4 [gold]силы[/gold] или 30 [gold]золота[/gold].", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "Закипающий гнев", + "description": "Вы возьмете 2 карты и перейдете в [gold]Гнев[/gold] в начале следующего хода.", + "description_raw": "Вы возьмете {DrawCardsNextTurnPower:diff()} карты и перейдете в [gold]Гнев[/gold] в начале следующего хода.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы возьмете 3 карты и перейдете в [gold]Гнев[/gold] в начале следующего хода.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-PROTECT", + "name": "Защититься", + "description": "Дает 12 [gold]защиты[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 16 [gold]защиты[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "Изваять реальность", + "description": "Наносит 6 урона.\nДобавляет в [gold]руку[/gold] [gold]«Кару»[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nДобавляет в [gold]руку[/gold] [gold]«Кару»[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 10 урона.\nДобавляет в [gold]руку[/gold] [gold]«Кару»[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "Изничтожитель", + "description": "Наносит 9 урона X раза.", + "description_raw": "Наносит {Damage:diff()} урона {Repeat:cond:<0?X|{Repeat:diff()}} {Repeat:plural(ru):раз|раза|раз}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 15 урона X раза.", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-STUDY", + "name": "Изыскания", + "description": "Добавляет [gold]«Озарение»[/gold] в [gold]стопку добора[/gold] в конце хода.", + "description_raw": "Добавляет [gold]«Озарение»[/gold] в [gold]стопку добора[/gold] в конце хода.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "Испещрить", + "description": "Вы добираете карты, пока [gold]рука[/gold] не заполнится.", + "description_raw": "Вы добираете карты, пока [gold]рука[/gold] не заполнится.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-TANTRUM", + "name": "Истерика", + "description": "Наносит 3 урона 3 раза.\nВы переходите в [gold]Гнев[/gold].\nЗамешивается в [gold]стопку добора[/gold].", + "description_raw": "Наносит {Damage:diff()} урона {Repeat:diff()} раза.\nВы переходите в [gold]Гнев[/gold].\nЗамешивается в [gold]стопку добора[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 3 урона 4 раза.\nВы переходите в [gold]Гнев[/gold].\nЗамешивается в [gold]стопку добора[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-SMITE", + "name": "Кара", + "description": "Наносит 12 урона.", + "description_raw": "Наносит {Damage:diff()} урона.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 16 урона.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "Коронный прием", + "description": "Можно разыграть, только если в [gold]руке[/gold] нет Атак.\nНаносит 30 урона.", + "description_raw": "Можно разыграть, только если в [gold]руке[/gold] нет Атак.\nНаносит {Damage:diff()} урона.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Можно разыграть, только если в [gold]руке[/gold] нет Атак.\nНаносит 40 урона.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "Крещендо", + "description": "Вы переходите в [gold]Гнев[/gold].", + "description_raw": "Вы переходите в [gold]Гнев[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-MEDITATE", + "name": "Медитировать", + "description": "Вы кладете в [gold]руку[/gold] 1 карту из [gold]стопки сброса[/gold], она [gold]оставляется[/gold].\nВы переходите в [gold]Спокойствие[/gold].\nВаш ход завершается.", + "description_raw": "Вы кладете в [gold]руку[/gold] {Cards:diff()} {Cards:plural:карту|карты} из [gold]стопки сброса[/gold], {Cards:plural:она [gold]оставляется[/gold]|они [gold]оставляются[/gold]}.\nВы переходите в [gold]Спокойствие[/gold].\nВаш ход завершается.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы кладете в [gold]руку[/gold] 2 карты из [gold]стопки сброса[/gold], они [gold]оставляются[/gold].\nВы переходите в [gold]Спокойствие[/gold].\nВаш ход завершается.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "Мимолетная ясность", + "description": "Другие игроки переходят в [gold]Спокойствие[/gold].\nОни выходят из [gold]Стойки[/gold] в начале следующего хода.", + "description_raw": "Другие игроки переходят в [gold]Спокойствие[/gold].\nОни выходят из [gold]Стойки[/gold] в начале следующего хода.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-PRAY", + "name": "Молиться", + "description": "Дает 3 [gold]Мантры[/gold].\nДобавляет [gold]«Озарение»[/gold] в [gold]стопку добора[/gold].", + "description_raw": "Дает {MantraPower:diff()} [gold]Мантры[/gold].\nДобавляет [gold]«Озарение»[/gold] в [gold]стопку добора[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]Мантры[/gold].\nДобавляет [gold]«Озарение»[/gold] в [gold]стопку добора[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "Молотящий удар", + "description": "Наносит 7 урона.\nКогда [gold]оставляется[/gold], повышает свой урон на 4 до конца боя.", + "description_raw": "Наносит {Damage:diff()} урона.\nКогда [gold]оставляется[/gold], повышает свой урон на {RetainIncrease:diff()} до конца боя.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 10 урона.\nКогда [gold]оставляется[/gold], повышает свой урон на 5 до конца боя.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "Наброситься", + "description": "Вы добираете 2 карты,\nкогда переходите в [gold]Гнев[/gold].", + "description_raw": "Вы добираете 2 карты,\nкогда переходите в [gold]Гнев[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-ANCIENT_CARD", + "name": "Накопление", + "description": "Наносимый урон повышается на 50%, если вы в [gold]Гневе[/gold].", + "description_raw": "Наносимый урон повышается на 50%, если вы в [gold]Гневе[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "Натиск", + "description": "Наносит 4 урона.\nВозвращается в руку из [gold]стопки сброса[/gold] при смене [gold]Стойки[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nВозвращается в руку из [gold]стопки сброса[/gold] при смене [gold]Стойки[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 6 урона.\nВозвращается в руку из [gold]стопки сброса[/gold] при смене [gold]Стойки[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "Не убоись зла", + "description": "Наносит 8 урона.\nВы переходите в [gold]Спокойствие[/gold], если враг планирует атаковать.", + "description_raw": "Наносит {Damage:diff()} урона.\nВы переходите в [gold]Спокойствие[/gold], если враг планирует атаковать.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 11 урона.\nВы переходите в [gold]Спокойствие[/gold], если враг планирует атаковать.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "Непоколебимость", + "description": "Дает 4 [gold]защиты[/gold] при смене [gold]Стойки[/gold].", + "description_raw": "Дает {MentalFortressPower:diff()} [gold]защиты[/gold] при смене [gold]Стойки[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 6 [gold]защиты[/gold] при смене [gold]Стойки[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-NIRVANA", + "name": "Нирвана", + "description": "Дает 3 [gold]защиты[/gold], когда вы [gold]Предсказываете[/gold].", + "description_raw": "Дает {NirvanaPower:diff()} [gold]защиты[/gold], когда вы [gold]Предсказываете[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]защиты[/gold], когда вы [gold]Предсказываете[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "Ногой с разворота", + "description": "Наносит 15 урона.\nВы добираете 2 карты.", + "description_raw": "Наносит {Damage:diff()} урона.\nВы добираете {Cards:diff()} карты.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 20 урона.\nВы добираете 2 карты.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "Облик дэвы", + "description": "Дает [energy:1] в начале хода и повышает даваемое количество [gold]энергии[/gold] на 1.", + "description_raw": "Дает {energyPrefix:energyIcons(1)} в начале хода и повышает даваемое количество [gold]энергии[/gold] на 1.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "Обмануть реальность", + "description": "Дает 4 [gold]защиты[/gold].\nДобавляет в [gold]руку[/gold] [gold]«Пристанище»[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nДобавляет в [gold]руку[/gold] [gold]«Пристанище»[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 7 [gold]защиты[/gold].\nДобавляет в [gold]руку[/gold] [gold]«Пристанище»[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "Оборона", + "description": "Дает 5 [gold]защиты[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 8 [gold]защиты[/gold].", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-INSIGHT", + "name": "Озарение", + "description": "Вы добираете 2 карты.", + "description_raw": "Вы добираете {Cards:diff()} карты.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы добираете 3 карты.", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-OMEGA", + "name": "Омега", + "description": "Наносит 50 урона ВСЕМ врагам в конце вашего хода.", + "description_raw": "Наносит {OmegaPower:diff()} урона ВСЕМ врагам в конце вашего хода.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 60 урона ВСЕМ врагам в конце вашего хода.", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "Освятить", + "description": "Наносит 5 урона ВСЕМ врагам.", + "description_raw": "Наносит {Damage:diff()} урона ВСЕМ врагам.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 8 урона ВСЕМ врагам.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "Откровение", + "description": "Наносит 12 урона.\nВы переходите в [gold]Божественность[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nВы переходите в [gold]Божественность[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-EVALUATE", + "name": "Оценить", + "description": "Дает 6 [gold]защиты[/gold].\nДобавляет [gold]«Озарение»[/gold] в стопку добора.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nДобавляет [gold]«Озарение»[/gold] в стопку добора.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 10 [gold]защиты[/gold].\nДобавляет [gold]«Озарение»[/gold] в стопку добора.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "Парящие рукава", + "description": "Наносит 4 урона дважды.", + "description_raw": "Наносит {Damage:diff()} урона дважды.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 6 урона дважды.", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "Пески времени", + "description": "Наносит 20 урона.\nКогда [gold]оставляется[/gold], стоимость снижается на 1 в этом бою.", + "description_raw": "Наносит {Damage:diff()} урона.\nКогда [gold]оставляется[/gold], стоимость снижается на 1 в этом бою.", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 26 урона.\nКогда [gold]оставляется[/gold], стоимость снижается на 1 в этом бою.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "Пинок вдогонку", + "description": "Наносит 7 урона.\nЕсли последняя разыгранная в бою карта — Атака, дает [energy:1].", + "description_raw": "Наносит {Damage:diff()} урона.\nЕсли последняя разыгранная в бою карта — Атака, дает {energyPrefix:energyIcons(1)}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 11 урона.\nЕсли последняя разыгранная в бою карта — Атака, дает [energy:1].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-VAULT", + "name": "Пируэт", + "description": "Вы получаете дополнительный ход.\nВаш ход завершается.", + "description_raw": "Вы получаете дополнительный ход.\nВаш ход завершается.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "По мановению руки", + "description": "Когда вы получаете [gold]защиту[/gold] в этот ход, накладывает 1 [gold]слабости[/gold] на ВСЕХ врагов.", + "description_raw": "Когда вы получаете [gold]защиту[/gold] в этот ход, накладывает {WaveOfTheHandPower:diff()} [gold]слабости[/gold] на ВСЕХ врагов.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Когда вы получаете [gold]защиту[/gold] в этот ход, накладывает 2 [gold]слабости[/gold] на ВСЕХ врагов.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "Поговори с рукой", + "description": "Наносит 5 урона.\nДает 2 [gold]защиты[/gold], когда вы атакуете этого врага.", + "description_raw": "Наносит {Damage:diff()} урона.\nДает {BlockReturnPower:diff()} [gold]защиты[/gold], когда вы атакуете этого врага.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 7 урона.\nДает 3 [gold]защиты[/gold], когда вы атакуете этого врага.", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "Подчинить реальность", + "description": "Карты, созданные в этом бою, [gold]улучшаются[/gold].", + "description_raw": "Карты, созданные в этом бою, [gold]улучшаются[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-WORSHIP", + "name": "Поклонение", + "description": "Дает 5 [gold]Мантры[/gold].", + "description_raw": "Дает 5 [gold]Мантры[/gold].", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-DEVOTION", + "name": "Покорность", + "description": "Дает 2 [gold]Мантры[/gold] в начале хода.", + "description_raw": "Дает {DevotionPower:diff()} [gold]Мантры[/gold] в начале хода.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 3 [gold]Мантры[/gold] в начале хода.", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-FASTING", + "name": "Пост", + "description": "Дает 3 [gold]силы[/gold].\nДает 3 [gold]ловкости[/gold].\nВы теряете [energy:1] в начале хода.", + "description_raw": "Дает {StrengthPower:diff()} [gold]силы[/gold].\nДает {DexterityPower:diff()} [gold]ловкости[/gold].\nВы теряете {energyPrefix:energyIcons(1)} в начале хода.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]силы[/gold].\nДает 4 [gold]ловкости[/gold].\nВы теряете [energy:1] в начале хода.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-HALT", + "name": "Прервать", + "description": "Дает 3 [gold]защиты[/gold].\nДает еще 9 [gold]защиты[/gold],\nесли вы в [gold]Гневе[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nДает еще {WrathBlock:diff()} [gold]защиты[/gold],\nесли вы в [gold]Гневе[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 4 [gold]защиты[/gold].\nДает еще 14 [gold]защиты[/gold],\nесли вы в [gold]Гневе[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "Приговор", + "description": "Если ОЗ врага меньше или равны 30, снижает их до 0.", + "description_raw": "Если ОЗ врага меньше или равны {DamageThreshold:diff()}, снижает их до 0.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Если ОЗ врага меньше или равны 40, снижает их до 0.", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "Призвать меч", + "description": "Добавляет [gold]«Изничтожитель»[/gold] в стопку добора.", + "description_raw": "Добавляет [gold]«Изничтожитель»[/gold]{IfUpgraded:show: с X+1|} в стопку добора.", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Добавляет [gold]«Изничтожитель»[/gold] с X+1 в стопку добора.", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-SAFETY", + "name": "Пристанище", + "description": "Дает 12 [gold]защиты[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 16 [gold]защиты[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "Прозрение", + "description": "Вы [gold]Предсказываете[/gold] 3 карты в начале хода.", + "description_raw": "Вы [gold]Предсказываете[/gold] {ForesightPower:diff()} карты в начале хода.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы [gold]Предсказываете[/gold] 4 карты в начале хода.", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "Пустое тело", + "description": "Дает 7 [gold]защиты[/gold].\nВы выходите из [gold]Стойки[/gold].", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nВы выходите из [gold]Стойки[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 10 [gold]защиты[/gold].\nВы выходите из [gold]Стойки[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "Пустой кулак", + "description": "Наносит 9 урона.\nВы выходите из [gold]Стойки[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nВы выходите из [gold]Стойки[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 14 урона.\nВы выходите из [gold]Стойки[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "Пустой разум", + "description": "Вы добираете 2 карты.\nВы выходите из [gold]Стойки[/gold].", + "description_raw": "Вы добираете {Cards:diff()} карты.\nВы выходите из [gold]Стойки[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы добираете 3 карты.\nВы выходите из [gold]Стойки[/gold].", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "Путем насилия", + "description": "Наносит 20 урона.", + "description_raw": "Наносит {Damage:diff()} урона.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 30 урона.", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "Рагнарек", + "description": "Наносит 5 урона случайному врагу 5 раз.", + "description_raw": "Наносит {Damage:diff()} урона случайному врагу {Repeat:diff()} раз.", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 6 урона случайному врагу 6 раз.", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "Разрезать судьбу", + "description": "Наносит 7 урона.\nВы [gold]Предсказываете[/gold] 2 карты.\nВы добираете 1 карту.", + "description_raw": "Наносит {Damage:diff()} урона.\nВы [gold]Предсказываете[/gold] {Cards:diff()} карты.\nВы добираете 1 карту.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 9 урона.\nВы [gold]Предсказываете[/gold] 3 карты.\nВы добираете 1 карту.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "Раскатать", + "description": "Наносит 7 урона за каждого врага в бою.", + "description_raw": "Наносит {Damage:diff()} урона за каждого врага в бою.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 10 урона за каждого врага в бою.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "Самообладание", + "description": "Когда карта [gold]оставляется[/gold], ее стоимость снижается на 1 в этом бою.", + "description_raw": "Когда карта [gold]оставляется[/gold], ее стоимость снижается на 1 в этом бою.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-SANCTITY", + "name": "Святость", + "description": "Дает 6 [gold]защиты[/gold].\nЕсли последняя разыгранная в бою карта — Навык, вы добираете 2 карты.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nЕсли последняя разыгранная в бою карта — Навык, вы добираете 2 карты.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 9 [gold]защиты[/gold].\nЕсли последняя разыгранная в бою карта — Навык, вы добираете 2 карты.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "Святотатство", + "description": "Вы переходите в [gold]Божественность[/gold].\nВы умрете в начале следующего хода.", + "description_raw": "Вы переходите в [gold]Божественность[/gold].\nВы умрете в начале следующего хода.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "Склониться", + "description": "Дает 2 [gold]Мантры[/gold].\nДает 4 [gold]защиты[/gold].", + "description_raw": "Дает {MantraPower:diff()} [gold]Мантры[/gold].\nДает {Block:diff()} [gold]защиты[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 3 [gold]Мантры[/gold].\nДает 4 [gold]защиты[/gold].", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "Слава и богатство", + "description": "Дает 25 [gold]золота[/gold].", + "description_raw": "Дает {Gold:diff()} [gold]золота[/gold].", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 30 [gold]золота[/gold].", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "Слепая удача", + "description": "Вы [gold]Предсказываете[/gold] 1 plural(ru):карту.\nДает 2 [gold]защиты[/gold].\nНаносит 3 урона.", + "description_raw": "Вы [gold]Предсказываете[/gold] {Cards:diff()} {Cards:plural(ru):карту|карты|карт}.\nДает {Block:diff()} [gold]защиты[/gold].\nНаносит {Damage:diff()} урона.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Вы [gold]Предсказываете[/gold] 2 plural(ru):карту.\nДает 3 [gold]защиты[/gold].\nНаносит 4 урона.", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "Словно вода", + "description": "Если в конце хода вы в [gold]Спокойствии[/gold], дает 5 [gold]защиты[/gold].", + "description_raw": "Если в конце хода вы в [gold]Спокойствии[/gold], дает {LikeWaterPower:diff()} [gold]защиты[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Если в конце хода вы в [gold]Спокойствии[/gold], дает 7 [gold]защиты[/gold].", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "Сокрушить суставы", + "description": "Наносит 8 урона.\nЕсли последняя разыгранная в бою карта — [gold]Навык[/gold], накладывает 1 [gold]уязвимости[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nЕсли последняя разыгранная в бою карта — [gold]Навык[/gold], накладывает {VulnerablePower:diff()} [gold]уязвимости[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 10 урона.\nЕсли последняя разыгранная в бою карта — [gold]Навык[/gold], накладывает 2 [gold]уязвимости[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-WEAVE", + "name": "Сплести", + "description": "Наносит 4 урона. Возвращается в [gold]руку[/gold] из [gold]стопки сброса[/gold], когда вы [gold]Предсказываете[/gold].", + "description_raw": "Наносит {Damage:diff()} урона. Возвращается в [gold]руку[/gold] из [gold]стопки сброса[/gold], когда вы [gold]Предсказываете[/gold].", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 6 урона. Возвращается в [gold]руку[/gold] из [gold]стопки сброса[/gold], когда вы [gold]Предсказываете[/gold].", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "Стойкость", + "description": "Дает 5 [gold]защиты[/gold].\nКогда [gold]оставляется[/gold], даваемая [gold]защита[/gold] повышается на 2\nдо конца боя.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nКогда [gold]оставляется[/gold], даваемая [gold]защита[/gold] повышается на {Increase:diff()}\nдо конца боя.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 7 [gold]защиты[/gold].\nКогда [gold]оставляется[/gold], даваемая [gold]защита[/gold] повышается на 3\nдо конца боя.", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "Третий глаз", + "description": "Дает 7 [gold]защиты[/gold].\nВы [gold]Предсказываете[/gold] 3 plural(ru):карту.", + "description_raw": "Дает {Block:diff()} [gold]защиты[/gold].\nВы [gold]Предсказываете[/gold] {Cards:diff()} {Cards:plural(ru):карту|карты|карт}.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает 9 [gold]защиты[/gold].\nВы [gold]Предсказываете[/gold] 5 plural(ru):карту.", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "Удар", + "description": "Наносит 6 урона.", + "description_raw": "Наносит {Damage:diff()} урона.", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 9 урона.", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "Умиротворенность", + "description": "Вы переходите в [gold]Спокойствие[/gold].", + "description_raw": "Вы переходите в [gold]Спокойствие[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "Усвоенный урок", + "description": "Наносит 10 урона.\nЕсли [gold]казнит[/gold] врага, [gold]улучшает[/gold] случайную карту в колоде.", + "description_raw": "Наносит {Damage:diff()} урона.\nЕсли [gold]казнит[/gold] врага, [gold]улучшает[/gold] случайную карту в колоде.", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 13 урона.\nЕсли [gold]казнит[/gold] врага, [gold]улучшает[/gold] случайную карту в колоде.", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "Хлестнуть поясом", + "description": "Наносит 8 урона.\nЕсли последняя разыгранная в бою карта — Атака, накладывает 1 [gold]слабости[/gold].", + "description_raw": "Наносит {Damage:diff()} урона.\nЕсли последняя разыгранная в бою карта — Атака, накладывает {WeakPower:diff()} [gold]слабости[/gold].", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Наносит 10 урона.\nЕсли последняя разыгранная в бою карта — Атака, накладывает 2 [gold]слабости[/gold].", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-MIRACLE", + "name": "Чудо", + "description": "Дает [energy:1].", + "description_raw": "Дает {Energy:energyIcons()}.", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "Дает [energy:2].", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + } +] \ No newline at end of file diff --git a/data-mod/watcher/rus/potions.json b/data-mod/watcher/rus/potions.json new file mode 100644 index 00000000..5806e2d9 --- /dev/null +++ b/data-mod/watcher/rus/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-AMBROSIA", + "name": "Амброзия", + "description": "Вы переходите в [gold]Божественность[/gold].", + "description_raw": "Вы переходите в [gold]Божественность[/gold].", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "Закупоренное чудо", + "description": "Добавляет в [gold]руку[/gold] [blue]X[/blue] [gold]«Чуда»[/gold].", + "description_raw": "Добавляет в [gold]руку[/gold] [blue]{Cards:diff()}[/blue] [gold]«Чуда»[/gold].", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "Зелье гнева", + "description": "Вы переходите в [gold]Гнев[/gold].", + "description_raw": "Вы переходите в [gold]Гнев[/gold].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "Зелье спокойствия", + "description": "Вы переходите в [gold]Спокойствие[/gold].", + "description_raw": "Вы переходите в [gold]Спокойствие[/gold].", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/rus/relics.json b/data-mod/watcher/rus/relics.json new file mode 100644 index 00000000..ec48c8b2 --- /dev/null +++ b/data-mod/watcher/rus/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-DAMARU", + "name": "Дамару", + "description": "Дает [blue]1[/blue] [gold]Мантры[/gold] в начале вашего хода.", + "description_raw": "Дает [blue]1[/blue] [gold]Мантры[/gold] в начале вашего хода.", + "flavor": "Звуки этого маленького барабанчика дают вам силы продолжать восхождение.", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 0 + }, + { + "id": "WATCHER-DUALITY", + "name": "Дуальность", + "description": "Дает [blue]1[/blue] [gold]ловкости[/gold] до конца хода, когда вы разыгрываете [gold]Атаку[/gold].", + "description_raw": "Дает [blue]1[/blue] [gold]ловкости[/gold] до конца хода, когда вы разыгрываете [gold]Атаку[/gold].", + "flavor": "\"И солнце навеки потухло, как если б пред ним опустился занавес.\" - Зорот", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 1 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "Золотое око", + "description": "Когда вы [gold]Предсказываете[/gold], вы [gold]Предсказываете[/gold] на [blue]2[/blue] карты больше.", + "description_raw": "Когда вы [gold]Предсказываете[/gold], вы [gold]Предсказываете[/gold] на [blue]2[/blue] карты больше.", + "flavor": "Пронзает разумы окружающих, дарует знание об их намерениях.", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 2 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "Кулон-слеза", + "description": "Вы начинаете каждый бой в [gold]Спокойствии[/gold].", + "description_raw": "Вы начинаете каждый бой в [gold]Спокойствии[/gold].", + "flavor": "Незрячий владелец, незримое содержимое.", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 3 + }, + { + "id": "WATCHER-MELANGE", + "name": "Меланж", + "description": "Вы [gold]Предсказываете[/gold] [blue]3[/blue] карты, когда перемешивается [gold]стопка добора[/gold].", + "description_raw": "Вы [gold]Предсказываете[/gold] [blue]3[/blue] карты, когда перемешивается [gold]стопка добора[/gold].", + "flavor": "Загадочный песок с неясным происхождением. Пахнет корицей.", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 4 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "Пурпурный лотос", + "description": "Дает [energy:1] при выходе из [gold]Спокойствия[/gold].", + "description_raw": "Дает {energyPrefix:energyIcons(1)} при выходе из [gold]Спокойствия[/gold].", + "flavor": "В старых писаниях рассказывается, как \"Истоки маны\" были усеяны этими цветами.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 5 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "Святая вода", + "description": "Заменяет [gold]«Чистую воду»[/gold]. Добавляет в [gold]руку[/gold] [blue]3[/blue] [gold]«Чуда»[/gold] в начале каждого боя.", + "description_raw": "Заменяет [gold]«Чистую воду»[/gold]. Добавляет в [gold]руку[/gold] [blue]3[/blue] [gold]«Чуда»[/gold] в начале каждого боя.", + "flavor": "Набрана в давние времена, до появления Шпиля.", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 6 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "Чистая вода", + "description": "Добавляет в [gold]руку[/gold] [gold]«Чудо»[/gold] в начале каждого боя.", + "description_raw": "Добавляет в [gold]руку[/gold] [gold]«Чудо»[/gold] в начале каждого боя.", + "flavor": "Отфильтрована мельчайшим песком, не содержит ни единой примеси.", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data-mod/watcher/zhs/cards.json b/data-mod/watcher/zhs/cards.json new file mode 100644 index 00000000..4a4223db --- /dev/null +++ b/data-mod/watcher/zhs/cards.json @@ -0,0 +1,3860 @@ +[ + { + "id": "WATCHER-FEAR_NO_EVIL", + "name": "不惧妖邪", + "description": "造成8点伤害。\n如果目标敌人的意图是攻击,则进入[gold]平静[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n如果目标敌人的意图是攻击,则进入[gold]平静[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/fear_no_evil.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成11点伤害。\n如果目标敌人的意图是攻击,则进入[gold]平静[/gold]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 30 + }, + { + "id": "WATCHER-INDIGNATION", + "name": "义愤填膺", + "description": "如果你处于[gold]愤怒[/gold],给予所有敌人3层[gold]易伤[/gold],否则进入[gold]愤怒[/gold]。", + "description_raw": "如果你处于[gold]愤怒[/gold],给予所有敌人{VulnerablePower:diff()}层[gold]易伤[/gold],否则进入[gold]愤怒[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 3, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VulnerablePower": 3, + "Vulnerable": 3 + }, + "upgrade": { + "vulnerable": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/indignation.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "如果你处于[gold]愤怒[/gold],给予所有敌人5层[gold]易伤[/gold],否则进入[gold]愤怒[/gold]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 33 + }, + { + "id": "WATCHER-PROSTRATE", + "name": "五体投地", + "description": "获得2层[gold]真言[/gold]。\n获得4点[gold]格挡[/gold]。", + "description_raw": "获得{MantraPower:diff()}层[gold]真言[/gold]。\n获得{Block:diff()}点[gold]格挡[/gold]。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 2, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4, + "MantraPower": 2, + "Mantra": 2 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/prostrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得3层[gold]真言[/gold]。\n获得4点[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 18 + }, + { + "id": "WATCHER-FOREIGN_INFLUENCE", + "name": "他山之石", + "description": "从3张任意颜色的攻击牌中选择1张加入你的手牌。", + "description_raw": "从3张任意颜色的攻击牌中选择1张加入你的手牌。{IfUpgraded:show:\n这张牌在本回合耗能变为0{energyPrefix:energyIcons(1)}。|}", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/foreign_influence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "从3张任意颜色的攻击牌中选择1张加入你的手牌。\n这张牌在本回合耗能变为0[energy:1]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 31 + }, + { + "id": "WATCHER-TALK_TO_THE_HAND", + "name": "以手拒之", + "description": "造成5点伤害。\n每当目标敌人受到攻击时,你获得2点[gold]格挡[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n每当目标敌人受到攻击时,你获得{BlockReturnPower:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BlockReturn", + "amount": 2, + "power_key": "BlockReturn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5, + "BlockReturnPower": 2, + "BlockReturn": 2 + }, + "upgrade": { + "damage": "+2", + "blockreturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/talk_to_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成7点伤害。\n每当目标敌人受到攻击时,你获得3点[gold]格挡[/gold]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 50 + }, + { + "id": "WATCHER-THROUGH_VIOLENCE", + "name": "以暴易暴", + "description": "造成20点伤害。", + "description_raw": "造成{Damage:diff()}点伤害。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/through_violence.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成30点伤害。", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 89 + }, + { + "id": "WATCHER-CONSECRATE", + "name": "供奉", + "description": "对所有敌人造成5点伤害。", + "description_raw": "对所有敌人造成{Damage:diff()}点伤害。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AllEnemies", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 5 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/consecrate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "对所有敌人造成8点伤害。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 5 + }, + { + "id": "WATCHER-HALT", + "name": "停顿", + "description": "获得3点[gold]格挡[/gold]。\n如果你处于[gold]愤怒[/gold],\n获得9点额外[gold]格挡[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n如果你处于[gold]愤怒[/gold],\n获得{WrathBlock:diff()}点额外[gold]格挡[/gold]。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WrathBlock": 9, + "Block": 3 + }, + "upgrade": { + "block": "+1", + "wrathblock": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/halt.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得4点[gold]格挡[/gold]。\n如果你处于[gold]愤怒[/gold],\n获得14点额外[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 15 + }, + { + "id": "WATCHER-FORESIGHT", + "name": "先见之明", + "description": "在你的回合开始时,[gold]预见[/gold]3。", + "description_raw": "在你的回合开始时,[gold]预见[/gold]{ForesightPower:diff()}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Foresight", + "amount": 3, + "power_key": "Foresight" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "ForesightPower": 3, + "Foresight": 3 + }, + "upgrade": { + "foresight": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/foresight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的回合开始时,[gold]预见[/gold]4。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 32 + }, + { + "id": "WATCHER-BRILLIANCE", + "name": "光辉", + "description": "造成12点伤害。\n额外造成本场战斗中获得的[gold]真言[/gold]总层数的伤害。", + "description_raw": "造成{CalculatedDamage:diff()}点伤害。\n额外造成本场战斗中获得的[gold]真言[/gold]总层数的伤害。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12, + "CalculatedDamage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/brilliance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 61 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_RARE", + "name": "共享智慧", + "description": "另一名玩家进入[gold]神格[/gold]。", + "description_raw": "另一名玩家进入[gold]神格[/gold]。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyAlly", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_rare.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal", + "Exhaust" + ], + "compendium_order": 70 + }, + { + "id": "WATCHER-INNER_PEACE", + "name": "内心宁静", + "description": "如果你处于[gold]平静[/gold],抽3张牌,否则进入[gold]平静[/gold]。", + "description_raw": "如果你处于[gold]平静[/gold],抽{Cards:diff()}张牌,否则进入[gold]平静[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 3 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/inner_peace.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "如果你处于[gold]平静[/gold],抽4张牌,否则进入[gold]平静[/gold]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 34 + }, + { + "id": "WATCHER-MEDITATE", + "name": "冥想", + "description": "将[gold]弃牌堆[/gold]中的1张牌放入你的手牌,并将其[gold]保留[/gold]。\n进入[gold]平静[/gold]。\n结束你的回合。", + "description_raw": "将[gold]弃牌堆[/gold]中的{Cards:diff()}张牌放入你的手牌,并将其[gold]保留[/gold]。\n进入[gold]平静[/gold]。\n结束你的回合。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 1 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/meditate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "将[gold]弃牌堆[/gold]中的2张牌放入你的手牌,并将其[gold]保留[/gold]。\n进入[gold]平静[/gold]。\n结束你的回合。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 36 + }, + { + "id": "WATCHER-LESSON_LEARNED", + "name": "勤学精进", + "description": "造成10点伤害。\n[gold]斩杀[/gold]时,[gold]升级[/gold]你牌组中的一张随机牌。", + "description_raw": "造成{Damage:diff()}点伤害。\n[gold]斩杀[/gold]时,[gold]升级[/gold]你牌组中的一张随机牌。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/lesson_learned.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成13点伤害。\n[gold]斩杀[/gold]时,[gold]升级[/gold]你牌组中的一张随机牌。", + "type_key": "Attack", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 68 + }, + { + "id": "WATCHER-EMPTY_BODY", + "name": "化体为空", + "description": "获得7点[gold]格挡[/gold]。\n退出当前[gold]姿态[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n退出当前[gold]姿态[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/empty_body.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得10点[gold]格挡[/gold]。\n退出当前[gold]姿态[/gold]。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 9 + }, + { + "id": "WATCHER-EMPTY_FIST", + "name": "化拳为空", + "description": "造成9点伤害。\n退出当前[gold]姿态[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n退出当前[gold]姿态[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/empty_fist.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成14点伤害。\n退出当前[gold]姿态[/gold]。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 10 + }, + { + "id": "WATCHER-EMPTY_MIND", + "name": "化智为空", + "description": "抽2张牌。\n退出当前[gold]姿态[/gold]。", + "description_raw": "抽{Cards:diff()}张牌。\n退出当前[gold]姿态[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/empty_mind.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "抽3张牌。\n退出当前[gold]姿态[/gold]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 28 + }, + { + "id": "WATCHER-TANTRUM", + "name": "发泄", + "description": "造成3点伤害3次。\n进入[gold]愤怒[/gold]。\n将这张牌放入你的[gold]抽牌堆[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害{Repeat:diff()}次。\n进入[gold]愤怒[/gold]。\n将这张牌放入你的[gold]抽牌堆[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 3, + "Damage": 3 + }, + "upgrade": { + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/tantrum.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成3点伤害4次。\n进入[gold]愤怒[/gold]。\n将这张牌放入你的[gold]抽牌堆[/gold]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 51 + }, + { + "id": "WATCHER-FAME_AND_FORTUNE", + "name": "名利双收", + "description": "获得25[gold]金币[/gold]。", + "description_raw": "获得{Gold:diff()}[gold]金币[/gold]。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25 + }, + "upgrade": { + "gold": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/fame_and_fortune.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得30[gold]金币[/gold]。", + "type_key": "Skill", + "rarity_key": "Token", + "compendium_order": 82 + }, + { + "id": "WATCHER-ANCIENT_CARD2", + "name": "启示", + "description": "造成12点伤害。\n进入[gold]神格[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n进入[gold]神格[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Ancient", + "target": "AnyEnemy", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card2.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Ancient", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 78 + }, + { + "id": "WATCHER-WHEEL_KICK", + "name": "回环踢", + "description": "造成15点伤害。\n抽2张牌。", + "description_raw": "造成{Damage:diff()}点伤害。\n抽{Cards:diff()}张牌。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 15, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 15, + "Cards": 2 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/wheel_kick.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成20点伤害。\n抽2张牌。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 55 + }, + { + "id": "WATCHER-SANCTITY", + "name": "圣洁", + "description": "获得6点[gold]格挡[/gold]。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],抽2张牌。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],抽2张牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6, + "Cards": 2 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/sanctity.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得9点[gold]格挡[/gold]。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],抽2张牌。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 44 + }, + { + "id": "WATCHER-PERSEVERANCE", + "name": "坚韧", + "description": "获得5点[gold]格挡[/gold]。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的[gold]格挡[/gold]增加2点。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的[gold]格挡[/gold]增加{Increase:diff()}点。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 5, + "Increase": 2 + }, + "upgrade": { + "block": "+2", + "increase": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/perseverance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得7点[gold]格挡[/gold]。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的[gold]格挡[/gold]增加3点。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 40 + }, + { + "id": "WATCHER-DEVA_FORM", + "name": "天人形态", + "description": "在你的回合开始时获得{energyPrefix:energyIcons(1),每回合增加1。", + "description_raw": "在你的回合开始时获得{energyPrefix:energyIcons(1),每回合增加1。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Deva", + "amount": 1, + "power_key": "Deva" + } + ], + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1, + "DevaPower": 1, + "Deva": 1 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/deva_form.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 64 + }, + { + "id": "WATCHER-THIRD_EYE", + "name": "天眼", + "description": "获得7点[gold]格挡[/gold]。\n[gold]预见[/gold]3。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n[gold]预见[/gold]{Cards:diff()}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 7, + "hit_count": null, + "powers_applied": null, + "cards_draw": 3, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 7, + "Cards": 3 + }, + "upgrade": { + "block": "+2", + "cards": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/third_eye.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得9点[gold]格挡[/gold]。\n[gold]预见[/gold]5。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 21 + }, + { + "id": "WATCHER-MIRACLE", + "name": "奇迹", + "description": "获得[energy:1]。", + "description_raw": "获得{Energy:energyIcons()}。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Energy": 1 + }, + "upgrade": { + "energy": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/miracle.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得[energy:2]。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 85 + }, + { + "id": "WATCHER-LIKE_WATER", + "name": "如水", + "description": "在你的回合结束时,如果你处于[gold]平静[/gold],获得5点[gold]格挡[/gold]。", + "description_raw": "在你的回合结束时,如果你处于[gold]平静[/gold],获得{LikeWaterPower:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "LikeWater", + "amount": 5, + "power_key": "LikeWater" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "LikeWaterPower": 5, + "LikeWater": 5 + }, + "upgrade": { + "likewater": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/like_water.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的回合结束时,如果你处于[gold]平静[/gold],获得7点[gold]格挡[/gold]。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 35 + }, + { + "id": "WATCHER-TRANQUILITY", + "name": "安宁", + "description": "进入[gold]平静[/gold]。", + "description_raw": "进入[gold]平静[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/tranquility.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 22 + }, + { + "id": "WATCHER-JUDGMENT", + "name": "审判", + "description": "如果目标敌人的生命值小于等于30点,设置其生命值为0。", + "description_raw": "如果目标敌人的生命值小于等于{DamageThreshold:diff()}点,设置其生命值为0。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DamageThreshold": 30 + }, + "upgrade": { + "damagethreshold": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/judgment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "如果目标敌人的生命值小于等于40点,设置其生命值为0。", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 67 + }, + { + "id": "WATCHER-SAFETY", + "name": "平安", + "description": "获得12点[gold]格挡[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/safety.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得16点[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 87 + }, + { + "id": "WATCHER-JUST_LUCKY", + "name": "幸运一击", + "description": "[gold]预见[/gold]1。\n获得2点[gold]格挡[/gold]。\n造成3点伤害。", + "description_raw": "[gold]预见[/gold]{Cards:diff()}。\n获得{Block:diff()}点[gold]格挡[/gold]。\n造成{Damage:diff()}点伤害。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 3, + "block": 2, + "hit_count": null, + "powers_applied": null, + "cards_draw": 1, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 3, + "Block": 2, + "Cards": 1 + }, + "upgrade": { + "damage": "+1", + "block": "+1", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/just_lucky.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "[gold]预见[/gold]2。\n获得3点[gold]格挡[/gold]。\n造成4点伤害。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 16 + }, + { + "id": "WATCHER-WALLOP", + "name": "当头棒喝", + "description": "造成9点伤害。\n获得与所造成的未被格挡的伤害相等的[gold]格挡[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n获得与所造成的未被格挡的伤害相等的[gold]格挡[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wallop.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成12点伤害。\n获得与所造成的未被格挡的伤害相等的[gold]格挡[/gold]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 52 + }, + { + "id": "WATCHER-MENTAL_FORTRESS", + "name": "心灵堡垒", + "description": "每当你转换[gold]姿态[/gold]时,获得4点[gold]格挡[/gold]。", + "description_raw": "每当你转换[gold]姿态[/gold]时,获得{MentalFortressPower:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MentalFortress", + "amount": 4, + "power_key": "MentalFortress" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MentalFortressPower": 4, + "MentalFortress": 4 + }, + "upgrade": { + "mentalfortress": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/mental_fortress.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "每当你转换[gold]姿态[/gold]时,获得6点[gold]格挡[/gold]。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 37 + }, + { + "id": "WATCHER-SIMMERING_FURY", + "name": "怒火中烧", + "description": "在你的下个回合开始时,进入[gold]愤怒[/gold]并抽2张牌。", + "description_raw": "在你的下个回合开始时,进入[gold]愤怒[/gold]并抽{DrawCardsNextTurnPower:diff()}张牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "DrawCardsNextTurn", + "amount": 2, + "power_key": "DrawCardsNextTurn" + }, + { + "power": "SimmeringRage", + "amount": 1, + "power_key": "SimmeringRage" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DrawCardsNextTurnPower": 2, + "DrawCardsNextTurn": 2, + "SimmeringRagePower": 1, + "SimmeringRage": 1 + }, + "upgrade": { + "drawcardsnextturn": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/simmering_fury.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的下个回合开始时,进入[gold]愤怒[/gold]并抽3张牌。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 47 + }, + { + "id": "WATCHER-SMITE", + "name": "惩恶", + "description": "造成12点伤害。", + "description_raw": "造成{Damage:diff()}点伤害。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/smite.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成16点伤害。", + "type_key": "Attack", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 88 + }, + { + "id": "WATCHER-BATTLE_HYMN", + "name": "战歌", + "description": "在每回合开始时,将一张[gold]惩恶[/gold]加入你的手牌。", + "description_raw": "在每回合开始时,将一张[gold]惩恶[/gold]加入你的手牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "BattleHymn", + "amount": 1, + "power_key": "BattleHymn" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "BattleHymnPower": 1, + "BattleHymn": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/battle_hymn.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 23 + }, + { + "id": "WATCHER-STRIKE_WATCHER", + "name": "打击", + "description": "造成6点伤害。", + "description_raw": "造成{Damage:diff()}点伤害。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/strike_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成9点伤害。", + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 2 + }, + { + "id": "WATCHER-PROTECT", + "name": "护身", + "description": "获得12点[gold]格挡[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 12, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 12 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/protect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得16点[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 19 + }, + { + "id": "WATCHER-SIGNATURE_MOVE", + "name": "招牌技", + "description": "只有当这张牌是你手中唯一的一张攻击牌时才可以被打出。\n造成30点伤害。", + "description_raw": "只有当这张牌是你手中唯一的一张攻击牌时才可以被打出。\n造成{Damage:diff()}点伤害。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 30, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 30 + }, + "upgrade": { + "damage": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/signature_move.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "只有当这张牌是你手中唯一的一张攻击牌时才可以被打出。\n造成40点伤害。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 46 + }, + { + "id": "WATCHER-WAVE_OF_THE_HAND", + "name": "摆手", + "description": "在本回合,你每次获得[gold]格挡[/gold]时,给予所有敌人1层[gold]虚弱[/gold]。", + "description_raw": "在本回合,你每次获得[gold]格挡[/gold]时,给予所有敌人{WaveOfTheHandPower:diff()}层[gold]虚弱[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "WaveOfTheHand", + "amount": 1, + "power_key": "WaveOfTheHand" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "WaveOfTheHandPower": 1, + "WaveOfTheHand": 1 + }, + "upgrade": { + "waveofthehand": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/wave_of_the_hand.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在本回合,你每次获得[gold]格挡[/gold]时,给予所有敌人2层[gold]虚弱[/gold]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 53 + }, + { + "id": "WATCHER-MASTER_REALITY", + "name": "操控现实", + "description": "所有在战斗中临时增加的牌将被[gold]升级[/gold]。", + "description_raw": "所有在战斗中临时增加的牌将被[gold]升级[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MasterReality", + "amount": 1, + "power_key": "MasterReality" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MasterRealityPower": 1, + "MasterReality": 1 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/master_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 69 + }, + { + "id": "WATCHER-COLLECT", + "name": "收集", + "description": "在你的下X个回合开始时,\n增加一张[gold]奇迹+[/gold]到你的手牌。", + "description_raw": "在你的下{IfUpgraded:show:X+1|X}个回合开始时,\n增加一张[gold]奇迹+[/gold]到你的手牌。", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/collect.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的下X+1个回合开始时,\n增加一张[gold]奇迹+[/gold]到你的手牌。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 25 + }, + { + "id": "WATCHER-CARVE_REALITY", + "name": "改造现实", + "description": "造成6点伤害。\n将一张[gold]惩恶[/gold]加入你的手牌。", + "description_raw": "造成{Damage:diff()}点伤害。\n将一张[gold]惩恶[/gold]加入你的手牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 6, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 6 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/carve_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成10点伤害。\n将一张[gold]惩恶[/gold]加入你的手牌。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 24 + }, + { + "id": "WATCHER-WORSHIP", + "name": "敬拜", + "description": "获得5层[gold]真言[/gold]。", + "description_raw": "获得5层[gold]真言[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 5, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 5, + "Mantra": 5 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/worship.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 57 + }, + { + "id": "WATCHER-FASTING", + "name": "斋戒", + "description": "获得3点[gold]力量[/gold],\n获得3点[gold]敏捷[/gold],\n每回合开始时少获得[energy:1]。", + "description_raw": "获得{StrengthPower:diff()}点[gold]力量[/gold],\n获得{DexterityPower:diff()}点[gold]敏捷[/gold],\n每回合开始时少获得{energyPrefix:energyIcons(1)}。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "Dexterity", + "amount": 3, + "power_key": "Dexterity" + }, + { + "power": "Fasting", + "amount": 1, + "power_key": "Fasting" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3, + "DexterityPower": 3, + "Dexterity": 3, + "FastingPower": 1, + "Fasting": 1 + }, + "upgrade": { + "strength": "+1", + "dexterity": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/fasting.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得4点[gold]力量[/gold],\n获得4点[gold]敏捷[/gold],\n每回合开始时少获得[energy:1]。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 29 + }, + { + "id": "WATCHER-CUT_THROUGH_FATE", + "name": "斩破命运", + "description": "造成7点伤害。\n[gold]预见[/gold]2。\n抽1张牌。", + "description_raw": "造成{Damage:diff()}点伤害。\n[gold]预见[/gold]{Cards:diff()}。\n抽1张牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Cards": 2 + }, + "upgrade": { + "damage": "+2", + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/cut_through_fate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成9点伤害。\n[gold]预见[/gold]3。\n抽1张牌。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 8 + }, + { + "id": "WATCHER-SWIVEL", + "name": "旋身", + "description": "获得8点[gold]格挡[/gold]。\n你打出的下一张攻击牌耗能变为0[energy:1]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n你打出的下一张攻击牌耗能变为0{energyPrefix:energyIcons(1)}。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": [ + { + "power": "FreeAttack", + "amount": 1, + "power_key": "FreeAttack" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8, + "FreeAttackPower": 1, + "FreeAttack": 1 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/swivel.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得11点[gold]格挡[/gold]。\n你打出的下一张攻击牌耗能变为0[energy:1]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 49 + }, + { + "id": "WATCHER-WINDMILL_STRIKE", + "name": "旋转打击", + "description": "造成7点伤害。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的伤害增加4点。", + "description_raw": "造成{Damage:diff()}点伤害。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的伤害增加{RetainIncrease:diff()}点。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": [ + "Strike" + ], + "spawns_cards": null, + "vars": { + "Damage": 7, + "RetainIncrease": 4 + }, + "upgrade": { + "damage": "+3", + "retainincrease": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/windmill_strike.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成10点伤害。\n每当这张牌被[gold]保留[/gold]时,将其在本场战斗的伤害增加5点。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 56 + }, + { + "id": "WATCHER-BECOME_ALMIGHTY", + "name": "无所不能", + "description": "获得3点[gold]力量[/gold]。", + "description_raw": "获得{StrengthPower:diff()}点[gold]力量[/gold]。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StrengthPower": 3, + "Strength": 3 + }, + "upgrade": { + "strength": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/become_almighty.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得4点[gold]力量[/gold]。", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 79 + }, + { + "id": "WATCHER-SANDS_OF_TIME", + "name": "时之沙", + "description": "造成20点伤害。\n当这张牌被[gold]保留[/gold]时,将其在本场战斗的耗能减少1[energy:1]。", + "description_raw": "造成{Damage:diff()}点伤害。\n当这张牌被[gold]保留[/gold]时,将其在本场战斗的耗能减少1{energyPrefix:energyIcons(1)}。", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 20, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 20 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/sands_of_time.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成26点伤害。\n当这张牌被[gold]保留[/gold]时,将其在本场战斗的耗能减少1[energy:1]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "keywords_key": [ + "Retain" + ], + "compendium_order": 45 + }, + { + "id": "WATCHER-MULTIPLAYER_CARD_UNCOMMON", + "name": "昙花一悟", + "description": "所有盟友进入[gold]平静[/gold]。\n他们在下一回合开始时退出[gold]平静[/gold]。", + "description_raw": "所有盟友进入[gold]平静[/gold]。\n他们在下一回合开始时退出[gold]平静[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "AllAllies", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "MultiplayerCardUncommon", + "amount": 1, + "power_key": "MultiplayerCardUncommon" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "MultiplayerCardUncommonPower": 1, + "MultiplayerCardUncommon": 1 + }, + "upgrade": { + "remove_exhaust": true + }, + "image_url": "/static/images/mods/watcher/cards/multiplayer_card_uncommon.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Uncommon", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 38 + }, + { + "id": "WATCHER-ERUPTION", + "name": "暴怒", + "description": "造成9点伤害。\n进入[gold]愤怒[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n进入[gold]愤怒[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Basic", + "target": "AnyEnemy", + "color": "colorless", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/eruption.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Attack", + "rarity_key": "Basic", + "compendium_order": 1 + }, + { + "id": "WATCHER-DEUS_EX_MACHINA", + "name": "机械降神", + "description": "当你抽到这张牌时,在你的手牌中加入2张[gold]奇迹[/gold]并[gold]消耗[/gold]。", + "description_raw": "当你抽到这张牌时,在你的手牌中加入{Cards:diff()}张[gold]奇迹[/gold]并[gold]消耗[/gold]。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Unplayable" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/deus_ex_machina.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "当你抽到这张牌时,在你的手牌中加入3张[gold]奇迹[/gold]并[gold]消耗[/gold]。", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Unplayable" + ], + "compendium_order": 63 + }, + { + "id": "WATCHER-OMEGA", + "name": "欧米伽", + "description": "在你的回合结束时,对所有敌人造成50点伤害。", + "description_raw": "在你的回合结束时,对所有敌人造成{OmegaPower:diff()}点伤害。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Omega", + "amount": 50, + "power_key": "Omega" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "OmegaPower": 50, + "Omega": 50 + }, + "upgrade": { + "omega": "+10" + }, + "image_url": "/static/images/mods/watcher/cards/omega.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的回合结束时,对所有敌人造成60点伤害。", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 86 + }, + { + "id": "WATCHER-DECEIVE_REALITY", + "name": "欺瞒现实", + "description": "获得4点[gold]格挡[/gold]。\n将一张[gold]平安[/gold]加入你的手牌。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n将一张[gold]平安[/gold]加入你的手牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 4, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 4 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/deceive_reality.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得7点[gold]格挡[/gold]。\n将一张[gold]平安[/gold]加入你的手牌。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 27 + }, + { + "id": "WATCHER-INSIGHT", + "name": "洞见", + "description": "抽2张牌。", + "description_raw": "抽{Cards:diff()}张牌。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": 2, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Cards": 2 + }, + "upgrade": { + "cards": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/insight.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "抽3张牌。", + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 83 + }, + { + "id": "WATCHER-FLYING_SLEEVES", + "name": "流云飞袖", + "description": "造成4点伤害两次。", + "description_raw": "造成{Damage:diff()}点伤害两次。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": 2, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flying_sleeves.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成6点伤害两次。", + "type_key": "Attack", + "rarity_key": "Common", + "keywords_key": [ + "Retain" + ], + "compendium_order": 13 + }, + { + "id": "WATCHER-NIRVANA", + "name": "涅槃", + "description": "你每次[gold]预见[/gold]时,获得3点[gold]格挡[/gold]。", + "description_raw": "你每次[gold]预见[/gold]时,获得{NirvanaPower:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Nirvana", + "amount": 3, + "power_key": "Nirvana" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "NirvanaPower": 3, + "Nirvana": 3 + }, + "upgrade": { + "nirvana": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/nirvana.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "你每次[gold]预见[/gold]时,获得4点[gold]格挡[/gold]。", + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 39 + }, + { + "id": "WATCHER-BLASPHEMY", + "name": "渎神", + "description": "进入[gold]神格[/gold]。\n在下回合死亡。", + "description_raw": "进入[gold]神格[/gold]。\n在下回合死亡。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Blasphemer", + "amount": 1, + "power_key": "Blasphemer" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "BlasphemerPower": 1, + "Blasphemer": 1 + }, + "upgrade": { + "add_retain": true + }, + "image_url": "/static/images/mods/watcher/cards/blasphemy.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 60 + }, + { + "id": "WATCHER-CRESCENDO", + "name": "渐强", + "description": "进入[gold]愤怒[/gold]。", + "description_raw": "进入[gold]愤怒[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Retain", + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/crescendo.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Common", + "keywords_key": [ + "Retain", + "Exhaust" + ], + "compendium_order": 6 + }, + { + "id": "WATCHER-SCRAWL_WATCHER", + "name": "潦草急就", + "description": "抽牌直到将手牌抽满。", + "description_raw": "抽牌直到将手牌抽满。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/scrawl_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 73 + }, + { + "id": "WATCHER-WREATH_OF_FLAME", + "name": "火焰纹", + "description": "你的下一张攻击牌额外造成5点伤害。", + "description_raw": "你的下一张攻击牌额外造成{VigorPower:diff()}点伤害。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vigor", + "amount": 5, + "power_key": "Vigor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "VigorPower": 5, + "Vigor": 5 + }, + "upgrade": { + "vigor": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/wreath_of_flame.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "你的下一张攻击牌额外造成8点伤害。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 58 + }, + { + "id": "WATCHER-EXPUNGER", + "name": "灭除之刃", + "description": "造成9点伤害X次。", + "description_raw": "造成{Damage:diff()}点伤害{Repeat:cond:<0?X|{Repeat:diff()}}次。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Token", + "target": "AnyEnemy", + "color": "token", + "damage": 9, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 9 + }, + "upgrade": { + "damage": "+6" + }, + "image_url": "/static/images/mods/watcher/cards/expunger.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成15点伤害X次。", + "type_key": "Attack", + "rarity_key": "Token", + "compendium_order": 81 + }, + { + "id": "WATCHER-PRESSURE_POINTS", + "name": "点穴", + "description": "给予8层[gold]印记[/gold]。\n所有敌人失去与[gold]印记[/gold]\n层数相等的生命。", + "description_raw": "给予{MarkPower:diff()}层[gold]印记[/gold]。\n所有敌人失去与[gold]印记[/gold]\n层数相等的生命。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mark", + "amount": 8, + "power_key": "Mark" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MarkPower": 8, + "Mark": 8 + }, + "upgrade": { + "mark": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/pressure_points.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "给予11层[gold]印记[/gold]。\n所有敌人失去与[gold]印记[/gold]\n层数相等的生命。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 17 + }, + { + "id": "WATCHER-RUSHDOWN", + "name": "猛虎下山", + "description": "每当你进入[gold]愤怒[/gold]时,抽2张牌。", + "description_raw": "每当你进入[gold]愤怒[/gold]时,抽2张牌。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Rushdown", + "amount": 2, + "power_key": "Rushdown" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "RushdownPower": 2, + "Rushdown": 2 + }, + "upgrade": { + "cost": 0 + }, + "image_url": "/static/images/mods/watcher/cards/rushdown.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 43 + }, + { + "id": "WATCHER-FLURRY_OF_BLOWS", + "name": "疾风连击", + "description": "造成4点伤害。\n你每次转换[gold]姿态[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的[gold]手牌[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n你每次转换[gold]姿态[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的[gold]手牌[/gold]。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/flurry_of_blows.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成6点伤害。\n你每次转换[gold]姿态[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的[gold]手牌[/gold]。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 12 + }, + { + "id": "WATCHER-STUDY", + "name": "研习", + "description": "在你的回合结束时,在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "description_raw": "在你的回合结束时,在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Uncommon", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Study", + "amount": 1, + "power_key": "Study" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "StudyPower": 1, + "Study": 1 + }, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/study.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Uncommon", + "compendium_order": 48 + }, + { + "id": "WATCHER-ESTABLISHMENT", + "name": "确立基础", + "description": "每当有卡牌被[gold]保留[/gold]时,将其在本场战斗的耗能减少1[energy:1]。", + "description_raw": "每当有卡牌被[gold]保留[/gold]时,将其在本场战斗的耗能减少1{energyPrefix:energyIcons(1)}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Establishment", + "amount": 1, + "power_key": "Establishment" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "EstablishmentPower": 1, + "Establishment": 1 + }, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/establishment.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 66 + }, + { + "id": "WATCHER-BOWLING_BASH", + "name": "碰撞连击", + "description": "当前每有一名敌人,造成7点伤害。", + "description_raw": "当前每有一名敌人,造成{Damage:diff()}点伤害。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7 + }, + "upgrade": { + "damage": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/bowling_bash.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "当前每有一名敌人,造成10点伤害。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 4 + }, + { + "id": "WATCHER-PRAY", + "name": "祈祷", + "description": "获得3层[gold]真言[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "description_raw": "获得{MantraPower:diff()}层[gold]真言[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Uncommon", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Mantra", + "amount": 3, + "power_key": "Mantra" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "MantraPower": 3, + "Mantra": 3 + }, + "upgrade": { + "mantra": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/pray.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得4层[gold]真言[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "type_key": "Skill", + "rarity_key": "Uncommon", + "compendium_order": 41 + }, + { + "id": "WATCHER-ANCIENT_CARD", + "name": "积累", + "description": "处于[gold]愤怒[/gold]时,伤害额外提高50%。", + "description_raw": "处于[gold]愤怒[/gold]时,伤害额外提高50%。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Ancient", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "AncientCard", + "amount": 50, + "power_key": "AncientCard" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Ethereal" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "AncientCardPower": 50, + "AncientCard": 50 + }, + "upgrade": { + "remove_ethereal": true + }, + "image_url": "/static/images/mods/watcher/cards/ancient_card.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Power", + "rarity_key": "Ancient", + "keywords_key": [ + "Ethereal" + ], + "compendium_order": 77 + }, + { + "id": "WATCHER-REACH_HEAVEN", + "name": "立地升天", + "description": "造成10点伤害。\n在你的[gold]抽牌堆[/gold]中加入1张[gold]以暴易暴[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n在你的[gold]抽牌堆[/gold]中加入1张[gold]以暴易暴[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 10, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 10 + }, + "upgrade": { + "damage": "+5" + }, + "image_url": "/static/images/mods/watcher/cards/reach_heaven.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成15点伤害。\n在你的[gold]抽牌堆[/gold]中加入1张[gold]以暴易暴[/gold]。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 42 + }, + { + "id": "WATCHER-CRUSH_JOINTS", + "name": "粉碎关节", + "description": "造成8点伤害。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],给予1层[gold]易伤[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],给予{VulnerablePower:diff()}层[gold]易伤[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vulnerable", + "amount": 1, + "power_key": "Vulnerable" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "VulnerablePower": 1, + "Vulnerable": 1 + }, + "upgrade": { + "damage": "+2", + "vulnerable": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/crush_joints.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成10点伤害。\n如果本场战斗中打出的上一张牌是[gold]技能牌[/gold],给予2层[gold]易伤[/gold]。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 7 + }, + { + "id": "WATCHER-SPIRIT_SHIELD", + "name": "精神护盾", + "description": "你每有一张手牌,获得3点[gold]格挡[/gold]。", + "description_raw": "你每有一张手牌,获得{Block:diff()}点[gold]格挡[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 3, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 3 + }, + "upgrade": { + "block": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/spirit_shield.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "你每有一张手牌,获得4点[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Rare", + "compendium_order": 74 + }, + { + "id": "WATCHER-CONCLUDE", + "name": "结末", + "description": "对所有敌人造成12点伤害。\n结束你的回合。", + "description_raw": "对所有敌人造成{Damage:diff()}点伤害。\n结束你的回合。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AllEnemies", + "color": "colorless", + "damage": 12, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 12 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/conclude.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "对所有敌人造成16点伤害。\n结束你的回合。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 26 + }, + { + "id": "WATCHER-CONJURE_BLADE", + "name": "聚能成刃", + "description": "将一张[gold]灭除之刃[/gold]放入你的抽牌堆中。", + "description_raw": "将一张{IfUpgraded:show:X数值+1的|}[gold]灭除之刃[/gold]放入你的抽牌堆中。", + "cost": 0, + "is_x_cost": true, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "description_changed": true + }, + "image_url": "/static/images/mods/watcher/cards/conjure_blade.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "将一张X数值+1的[gold]灭除之刃[/gold]放入你的抽牌堆中。", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 62 + }, + { + "id": "WATCHER-SASH_WHIP", + "name": "腰带抽打", + "description": "造成8点伤害。\n如果本场战斗中打出的\n上一张牌是攻击牌,\n给予1层[gold]虚弱[/gold]。", + "description_raw": "造成{Damage:diff()}点伤害。\n如果本场战斗中打出的\n上一张牌是攻击牌,\n给予{WeakPower:diff()}层[gold]虚弱[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 8, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Weak", + "amount": 1, + "power_key": "Weak" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 8, + "WeakPower": 1, + "Weak": 1 + }, + "upgrade": { + "damage": "+2", + "weak": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/sash_whip.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成10点伤害。\n如果本场战斗中打出的\n上一张牌是攻击牌,\n给予2层[gold]虚弱[/gold]。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 20 + }, + { + "id": "WATCHER-VAULT", + "name": "腾跃", + "description": "在本回合结束后,额外获得一回合。\n结束你的回合。", + "description_raw": "在本回合结束后,额外获得一回合。\n结束你的回合。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Vault", + "amount": 1, + "power_key": "Vault" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "VaultPower": 1, + "Vault": 1 + }, + "upgrade": { + "cost": 2 + }, + "image_url": "/static/images/mods/watcher/cards/vault.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 75 + }, + { + "id": "WATCHER-DEVOTION", + "name": "虔信", + "description": "在你的回合开始时,获得2层[gold]真言[/gold]。", + "description_raw": "在你的回合开始时,获得{DevotionPower:diff()}层[gold]真言[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Devotion", + "amount": 2, + "power_key": "Devotion" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "DevotionPower": 2, + "Devotion": 2 + }, + "upgrade": { + "devotion": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/devotion.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "在你的回合开始时,获得3层[gold]真言[/gold]。", + "type_key": "Power", + "rarity_key": "Rare", + "compendium_order": 65 + }, + { + "id": "WATCHER-VIGILANCE", + "name": "警惕", + "description": "获得8点[gold]格挡[/gold]。\n进入[gold]平静[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n进入[gold]平静[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 8, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 8 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/vigilance.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得12点[gold]格挡[/gold]。\n进入[gold]平静[/gold]。", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 3 + }, + { + "id": "WATCHER-WISH_WATCHER", + "name": "许愿", + "description": "选择:\n获得6层[gold]覆甲[/gold],\n3点[gold]力量[/gold]或25[gold]金币[/gold]。", + "description_raw": "选择:\n获得{PlatedArmorPower:diff()}层[gold]覆甲[/gold],\n{StrengthPower:diff()}点[gold]力量[/gold]或{Gold:diff()}[gold]金币[/gold]。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "None", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "Strength", + "amount": 3, + "power_key": "Strength" + }, + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": { + "Gold": 25, + "StrengthPower": 3, + "Strength": 3, + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "gold": "+5", + "strength": "+1", + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/wish_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "选择:\n获得8层[gold]覆甲[/gold],\n4点[gold]力量[/gold]或30[gold]金币[/gold]。", + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 76 + }, + { + "id": "WATCHER-EVALUATE", + "name": "评估", + "description": "获得6点[gold]格挡[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Common", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 6, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Block": 6 + }, + "upgrade": { + "block": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/evaluate.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得10点[gold]格挡[/gold]。\n在你的抽牌堆中加入一张[gold]洞见[/gold]。", + "type_key": "Skill", + "rarity_key": "Common", + "compendium_order": 11 + }, + { + "id": "WATCHER-RAGNAROK", + "name": "诸神之黄昏", + "description": "随机对敌人造成5点伤害5次。", + "description_raw": "随机对敌人造成{Damage:diff()}点伤害{Repeat:diff()}次。", + "cost": 3, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Rare", + "target": "RandomEnemy", + "color": "colorless", + "damage": 5, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Repeat": 5, + "Damage": 5 + }, + "upgrade": { + "damage": "+1", + "repeat": "+1" + }, + "image_url": "/static/images/mods/watcher/cards/ragnarok.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "随机对敌人造成6点伤害6次。", + "type_key": "Attack", + "rarity_key": "Rare", + "compendium_order": 72 + }, + { + "id": "WATCHER-BETA", + "name": "贝塔", + "description": "在你的抽牌堆中加入一张[gold]欧米伽[/gold]。", + "description_raw": "在你的抽牌堆中加入一张[gold]欧米伽[/gold]。", + "cost": 2, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Token", + "target": "Self", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 1 + }, + "image_url": "/static/images/mods/watcher/cards/beta.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Token", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 80 + }, + { + "id": "WATCHER-WEAVE", + "name": "迂回", + "description": "造成4点伤害。\n每当你[gold]预见[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的手牌。", + "description_raw": "造成{Damage:diff()}点伤害。\n每当你[gold]预见[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的手牌。", + "cost": 0, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Uncommon", + "target": "AnyEnemy", + "color": "colorless", + "damage": 4, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 4 + }, + "upgrade": { + "damage": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/weave.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成6点伤害。\n每当你[gold]预见[/gold]时,将这张牌从[gold]弃牌堆[/gold]放回你的手牌。", + "type_key": "Attack", + "rarity_key": "Uncommon", + "compendium_order": 54 + }, + { + "id": "WATCHER-FOLLOW_UP", + "name": "追击", + "description": "造成7点伤害。\n如果打出的上一张牌是攻击牌,获得[energy:1]。", + "description_raw": "造成{Damage:diff()}点伤害。\n如果打出的上一张牌是攻击牌,获得{energyPrefix:energyIcons(1)}。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Attack", + "rarity": "Common", + "target": "AnyEnemy", + "color": "colorless", + "damage": 7, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": 1, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "Damage": 7, + "Energy": 1 + }, + "upgrade": { + "damage": "+4" + }, + "image_url": "/static/images/mods/watcher/cards/follow_up.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "造成11点伤害。\n如果打出的上一张牌是攻击牌,获得[energy:1]。", + "type_key": "Attack", + "rarity_key": "Common", + "compendium_order": 14 + }, + { + "id": "WATCHER-OMNISCIENCE", + "name": "通晓万物", + "description": "选择你抽牌堆中的一张牌。将这张牌打出两次然后将其[gold]消耗[/gold]。", + "description_raw": "选择你抽牌堆中的一张牌。将这张牌打出两次然后将其[gold]消耗[/gold]。", + "cost": 4, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "cost": 3 + }, + "image_url": "/static/images/mods/watcher/cards/omniscience.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 71 + }, + { + "id": "WATCHER-LIVE_FOREVER", + "name": "长生不老", + "description": "获得6层[gold]覆甲[/gold]。", + "description_raw": "获得{PlatedArmorPower:diff()}层[gold]覆甲[/gold]。", + "cost": -1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Power", + "rarity": "Token", + "target": "None", + "color": "token", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": [ + { + "power": "PlatedArmor", + "amount": 6, + "power_key": "PlatedArmor" + } + ], + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": null, + "spawns_cards": null, + "vars": { + "PlatedArmorPower": 6, + "PlatedArmor": 6 + }, + "upgrade": { + "platedarmor": "+2" + }, + "image_url": "/static/images/mods/watcher/cards/live_forever.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得8层[gold]覆甲[/gold]。", + "type_key": "Power", + "rarity_key": "Token", + "compendium_order": 84 + }, + { + "id": "WATCHER-DEFEND_WATCHER", + "name": "防御", + "description": "获得5点[gold]格挡[/gold]。", + "description_raw": "获得{Block:diff()}点[gold]格挡[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Basic", + "target": "Self", + "color": "colorless", + "damage": null, + "block": 5, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": null, + "tags": [ + "Defend" + ], + "spawns_cards": null, + "vars": { + "Block": 5 + }, + "upgrade": { + "block": "+3" + }, + "image_url": "/static/images/mods/watcher/cards/defend_watcher.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": "获得8点[gold]格挡[/gold]。", + "type_key": "Skill", + "rarity_key": "Basic", + "compendium_order": 0 + }, + { + "id": "WATCHER-ALPHA", + "name": "阿尔法", + "description": "在你的抽牌堆中加入一张[gold]贝塔[/gold]。", + "description_raw": "在你的抽牌堆中加入一张[gold]贝塔[/gold]。", + "cost": 1, + "is_x_cost": null, + "is_x_star_cost": null, + "star_cost": null, + "type": "Skill", + "rarity": "Rare", + "target": "Self", + "color": "colorless", + "damage": null, + "block": null, + "hit_count": null, + "powers_applied": null, + "cards_draw": null, + "energy_gain": null, + "hp_loss": null, + "keywords": [ + "Exhaust" + ], + "tags": null, + "spawns_cards": null, + "vars": null, + "upgrade": { + "add_innate": true + }, + "image_url": "/static/images/mods/watcher/cards/alpha.webp", + "beta_image_url": null, + "type_variants": null, + "can_be_generated_in_combat": null, + "upgrade_description": null, + "type_key": "Skill", + "rarity_key": "Rare", + "keywords_key": [ + "Exhaust" + ], + "compendium_order": 59 + } +] \ No newline at end of file diff --git a/data-mod/watcher/zhs/potions.json b/data-mod/watcher/zhs/potions.json new file mode 100644 index 00000000..d757b8c3 --- /dev/null +++ b/data-mod/watcher/zhs/potions.json @@ -0,0 +1,46 @@ +[ + { + "id": "WATCHER-AMBROSIA", + "name": "仙馔密酒", + "description": "进入[gold]神格[/gold]姿态。", + "description_raw": "进入[gold]神格[/gold]姿态。", + "rarity": "Rare", + "image_url": "/static/images/mods/watcher/potions/ambrosia.webp", + "rarity_key": "Rare", + "pool": "colorless", + "compendium_order": 0 + }, + { + "id": "WATCHER-CALM_POTION", + "name": "平静药水", + "description": "进入[gold]平静[/gold]姿态。", + "description_raw": "进入[gold]平静[/gold]姿态。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/calm_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 1 + }, + { + "id": "WATCHER-WRATH_POTION", + "name": "愤怒药水", + "description": "进入[gold]愤怒[/gold]姿态。", + "description_raw": "进入[gold]愤怒[/gold]姿态。", + "rarity": "Uncommon", + "image_url": "/static/images/mods/watcher/potions/wrath_potion.webp", + "rarity_key": "Uncommon", + "pool": "colorless", + "compendium_order": 2 + }, + { + "id": "WATCHER-BOTTLED_MIRACLE", + "name": "瓶装奇迹", + "description": "将[blue]X[/blue]张[gold]奇迹[/gold]加入手牌。", + "description_raw": "将[blue]{Cards:diff()}[/blue]张[gold]奇迹[/gold]加入手牌。", + "rarity": "Common", + "image_url": "/static/images/mods/watcher/potions/bottled_miracle.webp", + "rarity_key": "Common", + "pool": "colorless", + "compendium_order": 3 + } +] \ No newline at end of file diff --git a/data-mod/watcher/zhs/relics.json b/data-mod/watcher/zhs/relics.json new file mode 100644 index 00000000..7e799b38 --- /dev/null +++ b/data-mod/watcher/zhs/relics.json @@ -0,0 +1,130 @@ +[ + { + "id": "WATCHER-DUALITY", + "name": "两仪", + "description": "每回合中,你每次打出一张[gold]攻击牌[/gold],获得[blue]1[/blue]点临时[gold]敏捷[/gold]。", + "description_raw": "每回合中,你每次打出一张[gold]攻击牌[/gold],获得[blue]1[/blue]点临时[gold]敏捷[/gold]。", + "flavor": "“于是太阳永远熄灭了,如同天幕在其之前坠下。”——佐罗斯", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/duality.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 0 + }, + { + "id": "WATCHER-HOLY_WATER", + "name": "圣水", + "description": "替换[gold]至纯之水[/gold]。在每场战斗开始时,将[blue]3[/blue]张[gold]奇迹[/gold]放入你的手牌。", + "description_raw": "替换[gold]至纯之水[/gold]。在每场战斗开始时,将[blue]3[/blue]张[gold]奇迹[/gold]放入你的手牌。", + "flavor": "从高塔出现的时代前收集来的水。", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/holy_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 1 + }, + { + "id": "WATCHER-DAMARU", + "name": "手摇鼓", + "description": "在你的回合开始时,获得[blue]1[/blue]层[gold]真言[/gold]。", + "description_raw": "在你的回合开始时,获得[blue]1[/blue]层[gold]真言[/gold]。", + "flavor": "这面小鼓的声音让你时刻保持神志清醒,仿佛能看见前方何处才有道路。", + "rarity": "Common", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/damaru.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Common", + "compendium_order": 2 + }, + { + "id": "WATCHER-TEARDROP_LOCKET", + "name": "泪滴吊坠盒", + "description": "每场战斗开始时处于[gold]平静[/gold]姿态。", + "description_raw": "每场战斗开始时处于[gold]平静[/gold]姿态。", + "flavor": "盒子的主人双目失明,其中的东西无人知晓。", + "rarity": "Uncommon", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/teardrop_locket.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Uncommon", + "compendium_order": 3 + }, + { + "id": "WATCHER-VIOLET_LOTUS", + "name": "紫色莲花", + "description": "每次你离开[gold]平静[/gold]时,额外获得[blue]1[/blue][gold]能量[/gold] 。", + "description_raw": "每次你离开[gold]平静[/gold]时,额外获得[blue]1[/blue][gold]能量[/gold] 。", + "flavor": "远古的经书上记载着,“法力池”的水面上总是有许多这些花朵。", + "rarity": "Ancient", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/violet_lotus.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Ancient", + "compendium_order": 4 + }, + { + "id": "WATCHER-MELANGE", + "name": "美琅脂", + "description": "你每次将抽牌堆洗牌时,[gold]预见[/gold][blue]3[/blue]。", + "description_raw": "你每次将抽牌堆洗牌时,[gold]预见[/gold][blue]3[/blue]。", + "flavor": "来源不明的神秘沙子,气味有点像肉桂。", + "rarity": "Shop", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/melange.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Shop", + "compendium_order": 5 + }, + { + "id": "WATCHER-PURE_WATER", + "name": "至纯之水", + "description": "在每场战斗开始时,将[blue]1[/blue]张[gold]奇迹[/gold]放入你的手牌。", + "description_raw": "在每场战斗开始时,将[blue]1[/blue]张[gold]奇迹[/gold]放入你的手牌。", + "flavor": "用极细的沙粒过滤的水,去除了一切杂质。", + "rarity": "Starter", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/pure_water.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Starter", + "compendium_order": 6 + }, + { + "id": "WATCHER-GOLDEN_EYE", + "name": "黄金眼", + "description": "你每次[gold]预见[/gold]时,额外[gold]预见[/gold][blue]2[/blue]。", + "description_raw": "你每次[gold]预见[/gold]时,额外[gold]预见[/gold][blue]2[/blue]。", + "flavor": "能够看见近处生灵的心智,让你可以预判他们将来的动作。", + "rarity": "Rare", + "pool": "colorless", + "merchant_price": null, + "image_url": "/static/images/mods/watcher/relics/golden_eye.webp", + "image_variants": null, + "name_variants": null, + "notes": null, + "rarity_key": "Rare", + "compendium_order": 7 + } +] \ No newline at end of file diff --git a/data/mods.json b/data/mods.json index d3041036..4598e60f 100644 --- a/data/mods.json +++ b/data/mods.json @@ -1,5 +1,5 @@ { - "_comment": "Curated directory of community mods whose asset repos supply entity art as the third fallback after main and beta. Each entry's images must be named by the in-game entity id, lowercased (e.g. relic DAMARU -> relics/damaru.png), matching the official convention. Only add vetted repos. The frontend builds //..", + "_comment": "Curated directory of community mods whose asset repos supply entity art and metadata as the third fallback after main and beta. Each entry's images must be named by the in-game entity id with the mod prefix stripped, lowercased (e.g. relic WATCHER-DAMARU -> relics/damaru.png), matching the official convention. The frontend builds //.. The 'parse' block drives tools/parse_mod.py, which turns the mod's C# entity classes + localization into a data-mod// catalog the site renders. Only add vetted repos.", "mods": [ { "key": "watcher", @@ -8,10 +8,17 @@ "url": "https://github.com/lamali292/WatcherMod", "raw_base": "https://raw.githubusercontent.com/lamali292/WatcherMod/main/Watcher/images", "ext": "png", + "id_prefix": "WATCHER", + "color": "colorless", + "langs": ["eng", "deu", "ita", "jpn", "kor", "rus", "zhs"], "paths": { "cards": "card_portraits", "relics": "relics", "potions": "potions" + }, + "parse": { + "cards_dir": "Code/Cards", + "loc_dir": "Watcher/localization" } } ] diff --git a/tools/parse_mod.py b/tools/parse_mod.py new file mode 100644 index 00000000..1dfb462d --- /dev/null +++ b/tools/parse_mod.py @@ -0,0 +1,497 @@ +#!/usr/bin/env python3 +""" +Parse a community mod's entity classes into the Spire Codex catalog shape. + +The run and live pages render a card from its catalog entry (cost, type, +rarity, baked description, art) after falling back main -> beta -> mod. This +turns a mod's C# card classes + localization JSON into the same 33-field +objects the site already renders for base cards, written to +`data-mod///cards.json`. + +It reuses the base-game parser machinery: `description_resolver` bakes the +SmartFormat tokens ({Damage:diff()}, {IfUpgraded:show:...}, [gold] tags) into +final text exactly as for base cards, and the card-schema fields/enums come +from `card_parser`. The only mod-specific part is reading mechanics from the +mod's fluent builder calls (WithDamage/WithBlock/WithVar/WithKeyword/...) +instead of the decompiled game's DynamicVar declarations. + +The mod's repo layout and id namespace come from its data/mods.json entry: + - id_prefix: the runtime id namespace (e.g. WATCHER -> WATCHER-ERUPTION) + - color: the character color used for card framing + - langs: which localization languages to emit + - parse.cards_dir / parse.loc_dir: where the C# and loc live in the repo + +Usage: + python3 tools/parse_mod.py --key watcher --source /tmp/WatcherMod + python3 tools/parse_mod.py --key watcher --source /tmp/WatcherMod --lang eng + +Requirements: Python 3.10+. A local checkout of the mod repo (--source). +""" +import argparse +import json +import os +import re +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parent.parent +PARSERS_DIR = ROOT / "backend" / "app" / "parsers" +sys.path.insert(0, str(PARSERS_DIR)) + +from description_resolver import ( # noqa: E402 + resolve_description, + extract_vars_from_source, +) +from card_parser import ( # noqa: E402 + class_name_to_id, + CARD_TYPE_NAME, + CARD_RARITY_NAME, + TARGET_TYPE_NAME, + CARD_TYPE_MAP, + CARD_RARITY_MAP, + TARGET_TYPE_MAP, + POOL_INDEX, + RARITY_INDEX, + localize_card, + build_type_map, + build_rarity_map, +) + +MODS_JSON = ROOT / "data" / "mods.json" +DEFAULT_OUT = ROOT / "data-mod" + + +def _load_loc(path: Path) -> dict: + """Read a localization JSON, tolerating the UTF-8 BOM mod tooling emits.""" + if not path.exists(): + return {} + return json.loads(path.read_text(encoding="utf-8-sig")) + + +def _localized_names(loc: dict, strip_suffix: str = "") -> dict[str, str]: + """Map an entity's English id stem to its localized title from a flat + {.title: ...} loc map, keyed for case-insensitive matching.""" + names: dict[str, str] = {} + seen: set[str] = set() + for key in loc: + ent = key.split(".")[0] + if ent in seen: + continue + seen.add(ent) + title = loc.get(f"{ent}.title", "") + if not title: + continue + names[ent] = title + names[ent.upper()] = title + if strip_suffix and ent.upper().endswith(strip_suffix): + base = ent.upper()[: -len(strip_suffix)] + names[base.replace("_", " ").title().replace(" ", "")] = title + return names + + +# ── mod config ────────────────────────────────────────────────────────────── + +def load_mod(key: str) -> dict: + """The data/mods.json entry for ``key``, or exit with a clear message.""" + if not MODS_JSON.exists(): + sys.exit(f"ERROR: {MODS_JSON} not found.") + mods = json.loads(MODS_JSON.read_text(encoding="utf-8")).get("mods", []) + for mod in mods: + if mod.get("key") == key: + return mod + known = ", ".join(m.get("key", "?") for m in mods) or "(none)" + sys.exit(f"ERROR: no mod '{key}' in {MODS_JSON}. Known: {known}") + + +def color_for_pool(pool_attr: str | None, default_color: str) -> str: + """Map a [Pool(typeof(XCardPool))] attribute to a Spire Codex color. + + Shared buckets (token/status/curse/event) keep their own color so framing + and compendium order match base cards; everything else is the mod's + configured character color. + """ + if pool_attr: + low = pool_attr.lower() + for shared in ("token", "status", "curse", "event"): + if shared in low: + return shared + return default_color + + +# ── mod card mechanics (fluent builder calls) ─────────────────────────────── + +def _const_string_aliases(content: str) -> dict[str, str]: + """Map `const string FooKey = "Foo"` identifiers to their literal value, so + `WithVar(FooKey, ...)` resolves the same as `WithVar("Foo", ...)`.""" + return { + m.group(1): m.group(2) + for m in re.finditer(r'const\s+string\s+(\w+)\s*=\s*"(\w+)"', content) + } + + +def _set_upgrade(upgrade: dict, key: str, delta: int) -> None: + if delta: + upgrade.setdefault(key.lower(), f"{delta:+d}") + + +def extract_mechanics(content: str, base_cost: int) -> tuple[dict, dict, list, list, list]: + """Read vars, upgrade deltas, keywords, tags and powers from a mod card's + fluent builder calls. Returns (vars, upgrade, keywords, tags, powers).""" + aliases = _const_string_aliases(content) + # new XVar("Name", N, ...) / new XVar(N) forms inside WithVar/WithVars are + # already understood by the shared extractor; builder calls are added on top. + vars_: dict[str, int] = dict(extract_vars_from_source(content)) + upgrade: dict = {} + + # WithDamage(b[, up]) / WithBlock(b[, up]) / WithCards(b[, up]) / WithEnergy(b[, up]) + simple = {"Damage": "damage", "Block": "block", "Cards": "cards", "Energy": "energy"} + for var_name, up_key in simple.items(): + m = re.search(rf"\bWith{var_name}\(\s*(\d+)\s*(?:,\s*(\d+)\s*)?\)", content) + if m: + vars_[var_name] = int(m.group(1)) + if m.group(2): + _set_upgrade(upgrade, up_key, int(m.group(2))) + + # WithCalculatedDamage(base, fn, ValueProp.X[, up]) -> base shown as Damage. + # Descriptions reference it as either {Damage:diff()} or {CalculatedDamage:diff()}; + # the in-game label is the base value (the runtime multiplier is dynamic). + m = re.search(r"\bWithCalculatedDamage\(\s*(\d+)\s*,[^,]+,[^,]+(?:,\s*(\d+))?", content) + if m: + base_dmg = int(m.group(1)) + vars_.setdefault("Damage", base_dmg) + vars_.setdefault("CalculatedDamage", base_dmg) + if m.group(2): + _set_upgrade(upgrade, "damage", int(m.group(2))) + + # WithVar("Key"|Ident, b[, up]) - literal-number named var + for m in re.finditer( + r'\bWithVar\(\s*(?:"(\w+)"|(\w+))\s*,\s*(\d+)\s*(?:,\s*(\d+)\s*)?\)', content + ): + key = m.group(1) or aliases.get(m.group(2), m.group(2)) + vars_[key] = int(m.group(3)) + if m.group(4): + _set_upgrade(upgrade, key, int(m.group(4))) + + # new XVar("Name"|N, ...).WithUpgrade(up) - upgrade delta on a var object + for m in re.finditer( + r'new\s+(\w+)Var\(\s*(?:"(\w+)"|\d+)[^)]*\)\.WithUpgrade\((\d+)\)', content + ): + key = m.group(2) or m.group(1) + _set_upgrade(upgrade, key, int(m.group(3))) + + # WithPower(b[, up][, bool]) -> base.WithVar(new DynamicVar(T.Name, b)) + powers: list[dict] = [] + for m in re.finditer( + r"\bWithPower<(\w+)>\(\s*(\d+)\s*(?:,\s*(\d+)\s*)?(?:,\s*(?:true|false)\s*)?\)", + content, + ): + t, base_v, up_v = m.group(1), int(m.group(2)), m.group(3) + bare = t[:-5] if t.endswith("Power") else t + vars_[t] = base_v + vars_.setdefault(bare, base_v) + if up_v: + _set_upgrade(upgrade, bare, int(up_v)) + powers.append({"power": bare, "amount": base_v}) + + # WithCostUpgradeBy(-n) -> absolute upgraded cost (matches card_parser) + m = re.search(r"\bWithCostUpgradeBy\(\s*(-?\d+)\s*\)", content) + if m: + upgrade["cost"] = base_cost + int(m.group(1)) + + # Keywords. WithKeywords(...) are base; WithKeyword(x, UpgradeType.Add/Remove) + # gate a keyword on upgrade. + keywords: list[str] = [] + for m in re.finditer(r"\bWithKeywords\(([^)]*)\)", content): + for km in re.finditer(r"CardKeyword\.(\w+)", m.group(1)): + if km.group(1) not in keywords: + keywords.append(km.group(1)) + for m in re.finditer( + r"\bWithKeyword\(\s*CardKeyword\.(\w+)\s*(?:,\s*UpgradeType\.(\w+))?\s*\)", content + ): + kw, up = m.group(1), m.group(2) + if up == "Add": + upgrade[f"add_{kw.lower()}"] = True + elif up == "Remove": + if kw not in keywords: + keywords.append(kw) + upgrade[f"remove_{kw.lower()}"] = True + elif kw not in keywords: + keywords.append(kw) + + # Tags + tags: list[str] = [] + for m in re.finditer(r"\bWithTags?\(([^)]*)\)", content): + for tm in re.finditer(r"CardTag\.(\w+)", m.group(1)): + if tm.group(1) not in tags: + tags.append(tm.group(1)) + + return vars_, upgrade, keywords, tags, powers + + +# ── card parsing ──────────────────────────────────────────────────────────── + +def parse_base_ctor(content: str) -> tuple[int, str, str, str] | None: + """(cost, type, rarity, target) from `: base(cost, CardType.X, ...)`.""" + m = re.search( + r":\s*base\(\s*(-?\d+)\s*,\s*CardType\.(\w+)\s*,\s*CardRarity\.(\w+)\s*,\s*TargetType\.(\w+)", + content, + ) + if m: + return ( + int(m.group(1)), + CARD_TYPE_NAME.get(m.group(2), m.group(2)), + CARD_RARITY_NAME.get(m.group(3), m.group(3)), + TARGET_TYPE_NAME.get(m.group(4), m.group(4)), + ) + m = re.search(r":\s*base\(\s*(-?\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)", content) + if m: + return ( + int(m.group(1)), + CARD_TYPE_MAP.get(int(m.group(2)), "Unknown"), + CARD_RARITY_MAP.get(int(m.group(3)), "Unknown"), + TARGET_TYPE_MAP.get(int(m.group(4)), "Unknown"), + ) + return None + + +def parse_card(filepath: Path, mod: dict, localization: dict) -> dict | None: + content = filepath.read_text(encoding="utf-8") + class_name = filepath.stem + ctor = parse_base_ctor(content) + if not ctor: + return None + cost, card_type, rarity, target = ctor + + prefix = mod.get("id_prefix", "").strip() + entry = class_name_to_id(class_name) + card_id = f"{prefix}-{entry}" if prefix else entry + + vars_, upgrade, keywords, tags, powers = extract_mechanics(content, cost) + + pool_attr = None + pm = re.search(r"\[Pool\(typeof\((\w+)\)\)\]", content) + if pm: + pool_attr = pm.group(1) + color = color_for_pool(pool_attr, mod.get("color", "colorless")) + + is_x_cost = bool(re.search(r"HasEnergyCostX\s*=>\s*true", content)) + is_x_star_cost = bool(re.search(r"HasStarCostX\s*=>\s*true", content)) + + hit_count = None + hm = re.search(r"WithHitCount\((\d+)\)", content) + if hm: + hit_count = int(hm.group(1)) + + can_gen = None + if re.search(r"override\s+bool\s+CanBeGeneratedInCombat\s*=>\s*false\b", content): + can_gen = False + + title = localization.get(f"{card_id}.title", class_name) + description = localization.get(f"{card_id}.description", "") + + resolve_vars = {**vars_, "CardType": card_type, "TargetType": target} + desc_rendered = resolve_description(description, resolve_vars) + + # Upgraded description: bump each numeric var whose name matches an upgrade key. + upgraded_vars = dict(resolve_vars) + for key, val in upgrade.items(): + if isinstance(val, str) and val[:1] in "+-": + try: + diff = int(val) + except ValueError: + continue + key_l = key.lower() + for vk in list(upgraded_vars): + if isinstance(upgraded_vars[vk], (int, float)) and ( + vk.lower() == key_l or vk.lower() == key_l + "power" + ): + upgraded_vars[vk] += diff + up_desc = resolve_description(description, upgraded_vars, is_upgraded=True) + upgrade_description = up_desc if up_desc != desc_rendered else None + if not upgrade and upgrade_description: + upgrade = {"description_changed": True} + + img_base = f"/static/images/mods/{mod['key']}/cards/{entry.lower()}.webp" + + return { + "id": card_id, + "name": title, + "description": desc_rendered, + "description_raw": description, + "cost": cost, + "is_x_cost": is_x_cost or None, + "is_x_star_cost": is_x_star_cost or None, + "star_cost": vars_.get("StarCost"), + "type": card_type, + "rarity": rarity, + "target": target, + "color": color, + "damage": vars_.get("Damage"), + "block": vars_.get("Block"), + "hit_count": hit_count, + "powers_applied": powers or None, + "cards_draw": vars_.get("Cards"), + "energy_gain": vars_.get("Energy"), + "hp_loss": vars_.get("HpLoss"), + "keywords": keywords or None, + "tags": tags or None, + "spawns_cards": None, + "vars": vars_ or None, + "upgrade": upgrade or None, + "image_url": img_base, + "beta_image_url": None, + "type_variants": None, + "can_be_generated_in_combat": can_gen, + "upgrade_description": upgrade_description, + } + + +def parse_cards(mod: dict, source: Path, lang: str) -> list[dict]: + cards_dir = source / mod.get("parse", {}).get("cards_dir", "Code/Cards") + loc_root = source / mod.get("parse", {}).get("loc_dir", "localization") + loc_dir = loc_root / lang + localization = _load_loc(loc_dir / "cards.json") + + # Localized display names. The mod ships keyword/power titles per language; + # it has no gameplay_ui.json, so card type/rarity keep their canonical + # English label (type == type_key) - the visual frame is keyed off the + # canonical value regardless. + type_map = build_type_map({}) + rarity_map = build_rarity_map({}) + kw_names = _localized_names(_load_loc(loc_dir / "card_keywords.json")) + power_names = _localized_names(_load_loc(loc_dir / "powers.json"), strip_suffix="_POWER") + + cards = [] + for filepath in sorted(cards_dir.rglob("*.cs")): + if filepath.stem.startswith("Mock"): + continue + card = parse_card(filepath, mod, localization) + if card: + localize_card(card, type_map, rarity_map, kw_names, power_names) + cards.append(card) + + cards.sort( + key=lambda c: ( + POOL_INDEX.get(c.get("color", ""), 99), + RARITY_INDEX.get(c.get("rarity_key", ""), 99), + c["id"], + ) + ) + for i, card in enumerate(cards): + card["compendium_order"] = i + cards.sort(key=lambda c: c["name"]) + return cards + + +def _entity_id_name(filepath: Path, mod: dict, loc: dict) -> tuple[str, str, str]: + """(id, entry, class_name) for a relic/potion .cs given the mod id prefix.""" + class_name = filepath.stem + prefix = mod.get("id_prefix", "").strip() + entry = class_name_to_id(class_name) + ent_id = f"{prefix}-{entry}" if prefix else entry + return ent_id, entry, class_name + + +def parse_relics(mod: dict, source: Path, lang: str) -> list[dict]: + relics_dir = source / mod.get("parse", {}).get("relics_dir", "Code/Relics") + loc_dir = source / mod.get("parse", {}).get("loc_dir", "localization") / lang + loc = _load_loc(loc_dir / "relics.json") + if not relics_dir.is_dir(): + return [] + relics = [] + for filepath in sorted(relics_dir.rglob("*.cs")): + content = filepath.read_text(encoding="utf-8-sig") + ent_id, entry, class_name = _entity_id_name(filepath, mod, loc) + rm = re.search(r"Rarity\s*=>\s*\w*Rarity\.(\w+)", content) + rarity_key = rm.group(1) if rm else "Common" + raw = loc.get(f"{ent_id}.description", "") + relics.append({ + "id": ent_id, + "name": loc.get(f"{ent_id}.title", class_name), + "description": resolve_description(raw, extract_vars_from_source(content)), + "description_raw": raw, + "flavor": loc.get(f"{ent_id}.flavor", ""), + "rarity": rarity_key, + "pool": mod.get("color", "shared"), + "merchant_price": None, + "image_url": f"/static/images/mods/{mod['key']}/relics/{entry.lower()}.webp", + "image_variants": None, + "name_variants": None, + "notes": None, + "rarity_key": rarity_key, + }) + relics.sort(key=lambda r: r["name"]) + for i, r in enumerate(relics): + r["compendium_order"] = i + return relics + + +def parse_potions(mod: dict, source: Path, lang: str) -> list[dict]: + potions_dir = source / mod.get("parse", {}).get("potions_dir", "Code/Potions") + loc_dir = source / mod.get("parse", {}).get("loc_dir", "localization") / lang + loc = _load_loc(loc_dir / "potions.json") + if not potions_dir.is_dir(): + return [] + potions = [] + for filepath in sorted(potions_dir.rglob("*.cs")): + content = filepath.read_text(encoding="utf-8-sig") + ent_id, entry, class_name = _entity_id_name(filepath, mod, loc) + rm = re.search(r"Rarity\s*=>\s*\w*Rarity\.(\w+)", content) + rarity_key = rm.group(1) if rm else "Common" + raw = loc.get(f"{ent_id}.description", "") + potions.append({ + "id": ent_id, + "name": loc.get(f"{ent_id}.title", class_name), + "description": resolve_description(raw, extract_vars_from_source(content)), + "description_raw": raw, + "rarity": rarity_key, + "image_url": f"/static/images/mods/{mod['key']}/potions/{entry.lower()}.webp", + "rarity_key": rarity_key, + "pool": mod.get("color", "shared"), + }) + potions.sort(key=lambda p: p["name"]) + for i, p in enumerate(potions): + p["compendium_order"] = i + return potions + + +def main() -> None: + parser = argparse.ArgumentParser( + description="Parse a mod's entity classes into the Spire Codex catalog shape." + ) + parser.add_argument("--key", required=True, help="mod key in data/mods.json") + parser.add_argument("--source", required=True, help="local checkout of the mod repo") + parser.add_argument( + "--lang", help="only this language (default: every lang in the mod entry)" + ) + parser.add_argument("--out", default=str(DEFAULT_OUT), help=f"output root (default: {DEFAULT_OUT})") + args = parser.parse_args() + + mod = load_mod(args.key) + source = Path(args.source).expanduser() + if not source.exists(): + sys.exit(f"ERROR: source not found: {source}") + + langs = [args.lang] if args.lang else mod.get("langs", ["eng"]) + out_root = Path(args.out).expanduser() / args.key + + for lang in langs: + out_dir = out_root / lang + out_dir.mkdir(parents=True, exist_ok=True) + entities = { + "cards": parse_cards(mod, source, lang), + "relics": parse_relics(mod, source, lang), + "potions": parse_potions(mod, source, lang), + } + for name, items in entities.items(): + (out_dir / f"{name}.json").write_text( + json.dumps(items, indent=2, ensure_ascii=False), encoding="utf-8" + ) + counts = ", ".join(f"{len(v)} {k}" for k, v in entities.items()) + print(f" {lang}: {counts} -> {out_dir}") + + print(f"\nDone. Parsed '{mod.get('name', args.key)}' into {out_root}") + + +if __name__ == "__main__": + main()