1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

73 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [602],
set: Set,
name: {
en: "Tynamo",
fr: "Anchwatt",
es: "Tynamo",
it: "Tynamo",
pt: "Tynamo",
de: "Zapplardin"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Lightning"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Yuka Morii",
description: {
en: "One alone can emit only a trickle of electricity, so a group of them gathers to unleash a powerful electric shock."
},
attacks: [{
cost: ["Lightning"],
name: {
en: "Thunder Wave",
fr: "Cage Éclair",
de: "Donnerwelle",
es: "Onda Trueno",
pt: "Onda de Trovão",
it: "Tuononda"
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
de: "Tackle",
es: "Placaje",
pt: "Investida",
it: "Azione"
},
damage: 20
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card