1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

67 lines
874 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Delta Species'
const card: Card = {
name: {
en: "Flareon δ",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 70,
types: [
"Fire",
"Metal",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Delta Search",
},
effect: {
en: "Search your deck for a Holon Energy card and attach it to Flareon. Shuffle your deck afterward.",
},
damage: 10,
},
{
name: {
en: "Return Burn",
},
effect: {
en: "You may return an Energy card attached to Flareon to your hand. If you do, the Defending Pokémon is now Burned.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card