1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

48 lines
729 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Leafeon"
},
illustrator: "Kouki Saitou",
rarity: "Three Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Eevee"
},
description: {
en: "When you see Leafeon asleep in a patch of<br />sunshine, you'll know it is using photosynthesis<br />to produce clean air."
},
stage: "Stage1",
attacks: [{
name: {
en: "Leafy Cyclone"
},
damage: 90,
cost: ["Grass", "Colorless"],
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card