1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

89 lines
1.6 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 '../Sword & Shield'
const card: Card = {
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: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 200,
types: [
"Lightning",
],
suffix: "V",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Spike Draw",
fr: "Pique-Pioche",
es: "Robo Pico",
it: "Battipesca",
pt: "Comprada Espinhosa",
de: "Stachelzug"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunderous Bolt",
fr: "Éclair du Tonnerre",
es: "Rayo Atronador",
it: "Fulmine Tonante",
pt: "Raio Estrondoso",
de: "Donnernder Einschlag"
},
effect: {
en: "During your next turn, this Pokémon cant attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 200,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
regulationMark: "D",
retreat: 0
}
export default card