1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/72.ts

71 lines
924 B
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",
},
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",
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunderous Bolt",
fr: "Éclair du Tonnerre",
},
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
},
damage: 200,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card