mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
1.2 KiB
TypeScript
73 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ancient Origins'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Cottonee",
|
||
fr: "Doudouvet",
|
||
es: "Cottonee",
|
||
it: "Cottonee",
|
||
pt: "Cottonee",
|
||
de: "Waumboll"
|
||
},
|
||
illustrator: "Kanako Eo",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
546,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Cotton Bed",
|
||
fr: "Lit de Plumes",
|
||
es: "Cama de Algodón",
|
||
it: "Cotonsonno",
|
||
pt: "Cama de Algodão",
|
||
de: "Baumwollbett"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|