mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
67 lines
711 B
TypeScript
67 lines
711 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tapu Koko",
|
||
fr: "Tokorico"
|
||
},
|
||
illustrator: "Hasuno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
|
||
hp: 110,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Allure",
|
||
fr: "Allure"
|
||
},
|
||
effect: {
|
||
en: "Draw 2 cards.",
|
||
fr: "Piochez 2 cartes."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Electric Ball",
|
||
fr: "Boule de Foudre"
|
||
},
|
||
|
||
damage: 110,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|