mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
42 lines
539 B
TypeScript
42 lines
539 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Celebrations'
|
|
|
|
const card: Card = {
|
|
dexId: [3],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Venusaur"
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Classic Collection",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Grass"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Solarbeam"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Grass", "Grass", "Grass", "Grass"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: ""
|
|
}],
|
|
|
|
retreat: 2,
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|