1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Flareon 4",
fr: "Pyroli Niv. 55",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Fire Tail Slap",
fr: "Coup de queue enflammé",
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to Flareon .",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie Fire attachée à Pyroli .",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card