mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
59 lines
808 B
TypeScript
59 lines
808 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [70],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Boustiflor",
|
|
en: "Weepinbell",
|
|
es: "Weepinbell",
|
|
it: "Weepinbell",
|
|
pt: "Weepinbell",
|
|
de: "Ultrigaria"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Grass"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
fr: "Coupe",
|
|
en: "Cut",
|
|
es: "Corte",
|
|
it: "Taglio",
|
|
pt: "Cortar",
|
|
de: "Zerschneider"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Fluide Éclaboussant",
|
|
en: "Spray Fluid",
|
|
es: "Fluido Rociado",
|
|
it: "Fluidospray",
|
|
pt: "Fluido Spray",
|
|
de: "Sprühwasser"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |