1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

93 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Darkness Ablaze'
const card: Card = {
dexId: [785],
name: {
en: "Tapu Koko",
fr: "Tokorico",
es: "Tapu Koko",
it: "Tapu Koko",
pt: "Tapu Koko",
de: "Kapu-Riki"
},
illustrator: "Hasuno",
rarity: "Holo Rare",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Lightning",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Allure",
fr: "Allure",
es: "Atractivo",
it: "Affascinante",
pt: "Fascinar",
de: "Verlockung"
},
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."
},
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Electric Ball",
fr: "Boule de Foudre",
es: "Bola Eléctrica",
it: "Lamposfera",
pt: "Bola de Eletricidade",
de: "Stromball"
},
damage: 110,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
regulationMark: "D",
retreat: 0,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Basic",
description: {
en: "The lightning-wielding guardian deity of Melemele, Tapu Koko is brimming with curiosity and appears before people from time to time."
}
}
export default card