1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29: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

67
data/XY/Evolutions/16.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Ninetales BREAK",
fr: "Feunard TURBO",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
38,
],
hp: 140,
types: [
"Fire",
],
evolveFrom: {
en: "Ninetales",
fr: "Feunard",
},
stage: "BREAK",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Explosive Fireball",
fr: "Règle des Évolutions TURBO",
},
effect: {
en: "Discard all Fire Energy attached to this Pokémon. This attack does 60 more damage for each Energy card discarded in this way.",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
fr: "Boule de Feu Explosive",
},
effect: {
fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon. Cette attaque inflige 60 dégâts supplémentaires pour chaque carte Énergie défaussée de cette façon.",
},
damage: "10+",
},
],
}
export default card