1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

80 lines
1.3 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 '../Fates Collide'
const card: Card = {
name: {
en: "Whimsicott",
fr: "Farfaduvet",
es: "Whimsicott",
it: "Whimsicott",
pt: "Whimsicott",
de: "Elfun"
},
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",
es: "Pasos Ligeros",
it: "Passetto",
pt: "Passos Quietos",
de: "Auf leisen Sohlen"
},
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 lun de vos Pokémon de Banc.",
es: "Mueve 1 Energía de este Pokémon a 1 de tus Pokémon en Banca.",
it: "Sposta unEnergia da questo Pokémon a uno di quelli nella tua panchina.",
pt: "Mova uma Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
de: "Verschiebe 1 an dieses Pokémon angelegte Energie auf 1 Pokémon auf deiner Bank."
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 0
}
export default card