mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
119 lines
3.8 KiB
TypeScript
119 lines
3.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Primal Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Kingdra",
|
||
fr: "Hyporoi",
|
||
es: "Kingdra",
|
||
it: "Kingdra",
|
||
pt: "Kingdra",
|
||
de: "Seedraking"
|
||
},
|
||
illustrator: "hatachu",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
230,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
evolveFrom: {
|
||
en: "Seadra",
|
||
fr: "Hypocéan",
|
||
es: "Seadra",
|
||
it: "Seadra",
|
||
pt: "Seadra",
|
||
de: "Seemon"
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ancient Trait",
|
||
name: {
|
||
fr: "Croissance α",
|
||
en: "α Growth",
|
||
es: "{title}:",
|
||
it: "{title}:",
|
||
pt: "{title}:",
|
||
de: "{title}:"
|
||
},
|
||
effect: {
|
||
fr: "Lorsque vous attachez une carte Énergie de votre main à ce Pokémon (excepté à la suite d'une attaque, d'un talent ou d'une carte Dresseur), vous pouvez attacher 2 cartes Énergie au lieu d'une.",
|
||
en: "When you attach an Energy card from your hand to this Pokémon (except with an attack, Ability, or Trainer card), you may attach 2 Energy cards.",
|
||
es: "{title}: Cuando unas 1 carta de Energía de tu mano a este Pokémon (excepto con un ataque, habilidad o carta de Entrenador), puedes unir 2 cartas de Energía en vez de 1.",
|
||
it: "{title}: Quando assegni una carta Energia a questo Pokémon dalla tua mano (a meno che non sia in conseguenza di un attacco, un'abilità o una carta Allenatore), puoi assegnare due carte Energia.",
|
||
pt: "{title}: Quando você liga um card de Energia de sua mão neste Pokémon (exceto com um ataque, Habilidade ou card de Treinador), você pode ligar 2 cards de Energia.",
|
||
de: "{title}: Wenn du 1 Energiekarte von deiner Hand an dieses Pokémon anlegst (außer auf Anweisung einer Attacke, Fähigkeit oder Trainerkarte), kannst du bis zu 2 Energiekarten anlegen."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gather Strength",
|
||
fr: "Pouvoir Collecté",
|
||
es: "Reunir Fuerzas",
|
||
it: "Radunaforze",
|
||
pt: "Reunir Força",
|
||
de: "Kraftsammler"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 4 basic Energy cards, reveal them, and put them into your hand. Shuffle your deck afterward.",
|
||
fr: "Cherchez jusqu'à 4 cartes Énergie de base dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 4 cartas de Energía Básica, enséñalas y ponlas en tu mano. Baraja las cartas de tu baraja después.",
|
||
it: "Cerca nel tuo mazzo fino a quattro carte Energia base, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure no seu baralho até 4 cards de Energia básica, revele-os e coloque-os na mão. Em seguida, embaralhe seus cards.",
|
||
de: "Durchsuche dein Deck nach bis zu 4 Basis-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Dragon Blast",
|
||
fr: "Explo-Draco",
|
||
es: "Sacudida Dragón",
|
||
it: "Dragobotto",
|
||
pt: "Explosão do Dragão",
|
||
de: "Drachenbeben"
|
||
},
|
||
effect: {
|
||
en: "Discard a Water Energy and a Lightning Energy attached to this Pokémon.",
|
||
fr: "Défaussez une Énergie Water et une Énergie Lightning attachées à ce Pokémon.",
|
||
es: "Descarta 1 Energía Water y 1 Energía Lightning unidas a este Pokémon.",
|
||
it: "Scarta un'Energia Water e un'Energia Lightning assegnate a questo Pokémon.",
|
||
pt: "Descarte uma Energia Water e uma Energia Lightning ligadas a este Pokémon.",
|
||
de: "Lege 1 an dieses Pokémon angelegte Water-Energie sowie 1 an dieses Pokémon angelegte Lightning-Energie auf deinen Ablagestapel."
|
||
},
|
||
damage: 150,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|