mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 10:59:54 +00:00
63 lines
854 B
TypeScript
63 lines
854 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Floragato",
|
|
fr: "Matourgeon",
|
|
es: "Floragato",
|
|
it: "Floragato",
|
|
pt: "Floragato",
|
|
de: "Feliospa"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Sprigatito"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Slash",
|
|
fr: "Tranche",
|
|
es: "Cuchillada",
|
|
it: "Lacerazione",
|
|
pt: "Talho",
|
|
de: "Schlitzer"
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Leaf Step",
|
|
fr: "Enjambée de Feuillage",
|
|
es: "Paso Hoja",
|
|
it: "Passofoglia",
|
|
pt: "Passo de Folha",
|
|
de: "Blattschritt"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |