mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
51 lines
926 B
TypeScript
51 lines
926 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Celebrations'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Venusaur"
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Ultra Rare",
|
|
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,
|
|
|
|
description: {
|
|
en: "This plant blooms when it is absorbing solar energy. It stays on the move to seek sunlight."
|
|
},
|
|
|
|
abilities: [{
|
|
type: "Pokemon Power",
|
|
|
|
name: {
|
|
en: "Energy Trans"
|
|
},
|
|
|
|
effect: {
|
|
en: "As often as you like during your turn (before your attack), you may take 1 Grass Energy card attached to 1 of your Pokémon and attach it to a different one. This power can't be used if Venusaur is Asleep, Confused, or Paralyzed."
|
|
}
|
|
}]
|
|
}
|
|
|
|
export default card |