1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

73 lines
985 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Cottonee",
fr: "Doudouvet",
es: "Cottonee",
it: "Cottonee",
pt: "Cottonee",
de: "Waumboll"
},
illustrator: "ryoma uratsuka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
546,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Attach",
fr: "Accrochage",
es: "Pegarse",
it: "Appiccicoso",
pt: "Conectar",
de: "Festkleben"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It shoots cotton from its body to protect itself. If it gets caught up in hurricane-strength winds, it can get sent to the other side of the Earth."
}
}
export default card