mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
69 lines
1.0 KiB
TypeScript
69 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bellsprout",
|
||
fr: "Chétiflor",
|
||
es: "Bellsprout",
|
||
it: "Bellsprout",
|
||
pt: "Bellsprout",
|
||
de: "Knofensa"
|
||
},
|
||
illustrator: "Masako Yamashita",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
69,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Blot",
|
||
fr: "Pâté",
|
||
es: "Absorción",
|
||
it: "Macchia",
|
||
pt: "Borrão",
|
||
de: "Klecks"
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from this Pokémon.",
|
||
fr: "Soignez 10 dégâts à ce Pokémon.",
|
||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 10 danni.",
|
||
pt: "Cure 10 pontos de dano deste Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|