mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
72
data/XY/Ancient Origins/13.ts
Normal file
72
data/XY/Ancient Origins/13.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Ancient Origins'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Flareon",
|
||||
fr: "Pyroli",
|
||||
},
|
||||
illustrator: "sui",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
136,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
fr: "Évoli",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Flare Effect",
|
||||
fr: "Effet Flamboyant",
|
||||
},
|
||||
effect: {
|
||||
en: "Each of your Stage 1 Pokémon in play is now a Fire Pokémon in addition to its existing types.",
|
||||
fr: "Chacun de vos Pokémon de Niveau 1 en jeu est maintenant un Pokémon Fire en plus de ses types existants.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Heat Breath",
|
||||
fr: "Souffle Ardent",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user