mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
96 lines
1.8 KiB
TypeScript
96 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ancient Origins'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Whimsicott",
|
||
fr: "Farfaduvet",
|
||
es: "Whimsicott",
|
||
it: "Whimsicott",
|
||
pt: "Whimsicott",
|
||
de: "Elfun"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
547,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
evolveFrom: {
|
||
en: "Cottonee",
|
||
fr: "Doudouvet",
|
||
es: "Cottonee",
|
||
it: "Cottonee",
|
||
pt: "Cottonee",
|
||
de: "Waumboll"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Windy Mischief",
|
||
fr: "Espièglerie Venteuse",
|
||
es: "Jugarreta Torbellino",
|
||
it: "Vento Birichino",
|
||
pt: "Travessura Ventosa",
|
||
de: "Windiges Unheil"
|
||
},
|
||
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.",
|
||
es: "Mueve todos los contadores de daño de 1 de tus Pokémon en Banca al Pokémon Activo de tu rival.",
|
||
it: "Sposta tutti i segnalini danno da uno dei tuoi Pokémon in panchina al Pokémon attivo del tuo avversario.",
|
||
pt: "Mova todos os marcadores de danos acima de 1 dos seus Pokémon no Banco para o Pokémon Ativo do seu oponente.",
|
||
de: "Verschiebe alle Schadensmarken von 1 Pokémon auf deiner Bank auf das Aktive Pokémon deines Gegners."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rolling Tackle",
|
||
fr: "Roulé-Boulé",
|
||
es: "Placaje Giro",
|
||
it: "Rollazione",
|
||
pt: "Golpe de Colisão Rolante",
|
||
de: "Rolltackle"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|