mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
43 lines
647 B
TypeScript
43 lines
647 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Wisdom of Sea and Sky"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Eevee"
|
|
},
|
|
|
|
illustrator: "MAHOU",
|
|
rarity: "One Shiny",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "Its ability to evolve into many forms allows it to\nadapt smoothly and perfectly to any environment."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Find a Friend"
|
|
},
|
|
|
|
cost: ["Colorless"],
|
|
|
|
effect: {
|
|
en: "Put a random Pokémon from your deck into your hand."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |