1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Platinum/Supreme Victors/86.ts
2021-05-26 14:51:02 +02:00

74 lines
894 B
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 '../Supreme Victors'
const card: Card = {
name: {
en: "Togekiss C",
fr: "Togekiss ",
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
468,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
name: {
en: "Collect",
fr: "Collectionner",
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Reckless Charge",
fr: "Attaque imprudente",
},
effect: {
en: "Togekiss C does 10 damage to itself.",
fr: "Togekiss s'inflige 10 dégâts.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card