1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

77 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Aegislash ex",
fr: "Exagide-ex",
es: "Aegislash ex",
it: "Aegislash-ex",
pt: "Aegislash ex",
de: "Durengard-ex"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 330,
types: ["Metal"],
stage: "Stage2",
attacks: [{
cost: ["Metal"],
name: {
en: "Peerless Edge",
fr: "Lame Incomparable",
es: "Filo sin Igual",
it: "Lama Ineguagliabile",
pt: "Gume Inigualável",
de: "Unvergleichliche Klinge"
},
effect: {
en: "This attack does 70 damage for each Prize card you have taken.",
fr: "Cette attaque inflige 70 dégâts pour chaque carte Récompense que vous avez récupérée.",
es: "Este ataque hace 70 puntos de daño por cada carta de Premio que hayas cogido.",
it: "Questo attacco infligge 70 danni per ogni carta Premio che hai preso.",
pt: "Este ataque causa 70 pontos de dano para cada carta de Prêmio que você pegou.",
de: "Diese Attacke fügt für jede von dir genommene Preiskarte 70 Schadenspunkte zu."
},
damage: "70×"
}, {
cost: ["Metal", "Metal"],
name: {
en: "Double-Edged Slash",
fr: "Double Tranchant",
es: "Cuchillada Doble Filo",
it: "Doppio Taglio",
pt: "Talho de Dois Gumes",
de: "Zweischneidiger Schlitzer"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 220
}],
retreat: 3,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card