1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

64 lines
828 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 '../Fates Collide'
const card: Card = {
name: {
en: "Whimsicott",
fr: "Farfaduvet",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
547,
],
hp: 90,
types: [
"Fairy",
],
evolveFrom: {
en: "Cottonee",
fr: "Doudouvet",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Light Steps",
fr: "Pas Légers",
},
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
}
export default card