1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

94 lines
1.5 KiB
TypeScript
Raw Permalink 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 '../Furious Fists'
const card: Card = {
name: {
en: "Weepinbell",
fr: "Boustiflor",
es: "Weepinbell",
it: "Weepinbell",
pt: "Weepinbell",
de: "Ultrigaria"
},
illustrator: "Mizue",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
70,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Bellsprout",
fr: "Chétiflor",
es: "Bellsprout",
it: "Bellsprout",
pt: "Bellsprout",
de: "Knofensa"
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Vine Whip",
fr: "Fouet Lianes",
es: "Látigo Cepa",
it: "Frustata",
pt: "Chicote de Vinha",
de: "Rankenhieb"
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Spit Poison",
fr: "Crache-Venin",
es: "Escupir Veneno",
it: "Sputaveleno",
pt: "Cuspe Venenoso",
de: "Giftspucke"
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card