1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

92 lines
1.3 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Tapu Koko",
fr: "Tokorico",
es: "Tapu Koko",
it: "Tapu Koko",
pt: "Tapu Koko",
de: "Kapu-Riki"
},
illustrator: "Hasuno",
rarity: "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