mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
92 lines
1.3 KiB
TypeScript
92 lines
1.3 KiB
TypeScript
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
|