1
0
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:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

74
data/XY/BREAKpoint/14.ts Normal file
View File

@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Emboar-EX",
fr: "Roitiflam-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
500,
],
hp: 180,
types: [
"Fire",
],
suffix: "EX",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Spiral Punch",
fr: "Coup d'Poing Spirale",
},
effect: {
en: "Flip a coin until you get tails. This attack does 20 more damage for each heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 20,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Strong Flare",
fr: "Flamboiement Intense",
},
effect: {
en: "Discard 2 Energy attached to this Pokémon.",
fr: "Défaussez 2 Énergies attachées à ce Pokémon.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card