mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
* fix: Add for some sets Signed-off-by: Avior <github@avior.me> * Added Sets titles Signed-off-by: Avior <github@avior.me> * fix: Finished last EX sets Signed-off-by: Avior <github@avior.me> * Change Discord Link text
73 lines
1.2 KiB
TypeScript
73 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Delta Species'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Flareon δ",
|
||
fr: "Pyroli δ ESPÈCES DELTA"
|
||
},
|
||
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",
|
||
fr: "Recherche Delta"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a Holon Energy card and attach it to Flareon. Shuffle your deck afterward.",
|
||
fr: "Cherchez dans votre deck une carte Énergie Holon et attachez-la à Pyroli. Ensuite, mélangez votre deck."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
name: {
|
||
en: "Return Burn",
|
||
fr: "Retour de brûlure"
|
||
},
|
||
|
||
effect: {
|
||
en: "You may return an Energy card attached to Flareon to your hand. If you do, the Defending Pokémon is now Burned.",
|
||
fr: "Vous pouvez reprendre dans votre main une carte Énergie attachée à Pyroli. Dans ce cas, le Pokémon Défenseur est maintenant Brûlé."
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Fire", "Metal", "Colorless"]
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|