mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
651 B
TypeScript
48 lines
651 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [420],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cherubi",
|
|
fr: "Ceribou",
|
|
es: "Cherubi",
|
|
it: "Cherubi",
|
|
pt: "Cherubi",
|
|
de: "Kikugi"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Leafage",
|
|
fr: "Feuillage",
|
|
es: "Follaje",
|
|
it: "Fogliame",
|
|
pt: "Folhagem",
|
|
de: "Blattwerk"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |