mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
724 B
TypeScript
48 lines
724 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [511],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pansage",
|
|
fr: "Feuillajou",
|
|
es: "Pansage",
|
|
it: "Pansage",
|
|
pt: "Pansage",
|
|
de: "Vegimak"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "Nagomi Nijo",
|
|
|
|
description: {
|
|
en: "It's good at finding berries and gathers them from all over. It's kind enough to share them with friends."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Scratch"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |