1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Shining Legends'
const card: Card = {
name: {
en: "Incineroar",
fr: "Félinferno",
},
illustrator: "Emi Ando",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
727,
],
hp: 170,
types: [
"Fire",
],
evolveFrom: {
en: "Torracat",
fr: "Matoufeu",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Profane Punch",
fr: "Poing Vulgaire",
},
effect: {
en: "If your Benched Pokémon have any damage counters on them, this attack does 80 more damage.",
fr: "Si des marqueurs de dégâts sont placés sur vos Pokémon de Banc, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 50,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flare Blitz",
fr: "Boutefeu",
},
effect: {
en: "Discard all Fire Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie Fire de ce Pokémon.",
},
damage: 180,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card