mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
60 lines
913 B
TypeScript
60 lines
913 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [829],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Tournicoton",
|
||
en: "Gossifleur",
|
||
es: "Gossifleur",
|
||
it: "Gossifleur",
|
||
pt: "Gossifleur",
|
||
de: "Cottini"
|
||
},
|
||
|
||
illustrator: "Yukiko Baba",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Feuillage",
|
||
en: "Leafage",
|
||
es: "Follaje",
|
||
it: "Fogliame",
|
||
pt: "Folhagem",
|
||
de: "Blattwerk"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It whirls around in the wind while singing a joyous song. This delightful display has charmed many into raising this Pokémon."
|
||
}
|
||
}
|
||
|
||
export default card
|