1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

76 lines
1.0 KiB
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 '../Ancient Origins'
const card: Card = {
name: {
en: "Whimsicott",
fr: "Farfaduvet",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
547,
],
hp: 70,
types: [
"Fairy",
],
evolveFrom: {
en: "Cottonee",
fr: "Doudouvet",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Windy Mischief",
fr: "Espièglerie Venteuse",
},
effect: {
en: "Move all damage counters from 1 of your Benched Pokémon to your opponent's Active Pokémon.",
fr: "Déplacez tous les marqueurs de dégâts de l'un de vos Pokémon de Banc vers le Pokémon Actif de votre adversaire.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
},
damage: 30,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card