mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/Diamond & Pearl/Majestic Dawn/19.ts
Normal file
75
data/Diamond & Pearl/Majestic Dawn/19.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Majestic Dawn'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Flareon",
|
||||
fr: "Pyroli",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
136,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
fr: "Evoli",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Fire Fang",
|
||||
fr: "Crocs Feu",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Burned.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Kindle",
|
||||
fr: "Enflammer",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard an Energy card attached to Flareon and then discard an Energy card attached to the Defending Pokémon.",
|
||||
fr: "Défaussez une carte Énergie attachée à Pyroli et défaussez une carte Énergie attachée au Pokémon Défenseur.",
|
||||
},
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user