1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 23:09:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/68.ts
2021-05-26 14:51:02 +02:00

66 lines
868 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Chinchou",
fr: "Loupio",
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Luring Glow",
fr: "Lueur Attrayante",
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire contre son Pokémon Actif.",
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Lightning Ball",
fr: "Boule Éclair",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card