1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

87 lines
1.4 KiB
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Weepinbell",
fr: "Boustiflor",
es: "Weepinbell",
it: "Weepinbell",
pt: "Weepinbell",
de: "Ultrigaria"
},
illustrator: "otumami",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
70,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Bellsprout",
fr: "Chétiflor",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Burning Venom",
fr: "Venin Brûlant",
es: "Veneno Abrasador",
it: "Tossina Ardente",
pt: "Veneno Abrasador",
de: "Brennendes Gift"
},
effect: {
en: "Your opponents Active Pokémon is now Burned and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé et Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado y Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato e avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado e Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt und vergiftet."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card