1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

73 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tapu Koko V",
fr: "Tokorico V",
es: "Tapu Koko V",
it: "Tapu Koko V",
pt: "Tapu Koko V",
de: "Kapu-Riki V"
},
illustrator: "AKIRA EGAWA",
rarity: "Rare",
category: "Pokemon",
hp: 210,
types: ["Lightning"],
attacks: [{
name: {
en: "Electro Ball",
fr: "Boule Élek",
es: "Bola Voltio",
it: "Energisfera",
pt: "Bola Elétrica",
de: "Elektroball"
},
damage: 40,
cost: ["Lightning"]
}, {
name: {
en: "Spiral Thunder",
fr: "Tonnerre en Spirale",
es: "Trueno en Espiral",
it: "Tuonospirale",
pt: "Relâmpago Espiral",
de: "Spiraldonner"
},
effect: {
en: "This attack does 40 more damage for each Energy attached to all of your opponents Pokémon.",
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
es: "Este ataque hace 40 puntos de daño más por cada Energía unida a todos los Pokémon de tu rival.",
it: "Questo attacco infligge 40 danni in più per ogni Energia assegnata ai Pokémon del tuo avversario.",
pt: "Este ataque causa 40 pontos de dano a mais para cada Energia ligada a todos os Pokémon do seu oponente.",
de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 40 Schadenspunkte mehr zu."
},
damage: "20+",
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card