mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 23:22:11 +00:00
60 lines
863 B
TypeScript
60 lines
863 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Pokémon GO"
|
|
|
|
const card: Card = {
|
|
dexId: [1],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bulbasaur",
|
|
fr: "Bulbizarre",
|
|
es: "Bulbasaur",
|
|
it: "Bulbasaur",
|
|
pt: "Bulbasaur",
|
|
de: "Bisasam"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Vine Whip",
|
|
fr: "Fouet Lianes",
|
|
es: "Látigo Cepa",
|
|
it: "Frustata",
|
|
pt: "Chicote de Vinha",
|
|
de: "Rankenhieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Razor Leaf",
|
|
fr: "Tranch'Herbe",
|
|
es: "Hoja Afilada",
|
|
it: "Foglielama",
|
|
pt: "Folha Navalha",
|
|
de: "Rasierblatt"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |