1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

69
data/XY/Evolutions/60.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Machamp BREAK",
fr: "Mackogneur TURBO",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 190,
types: [
"Fightning",
],
evolveFrom: {
en: "Machamp",
fr: "Mackogneur",
},
stage: "BREAK",
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Boomerang Lariat",
fr: "Règle des Évolutions TURBO",
},
effect: {
en: "During your next turn, this Pokémon's attacks do 100 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
},
damage: 100,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
fr: "Lasso Boomerang",
},
effect: {
fr: "Pendant votre prochain tour, les attaques de ce Pokémon infligent 100 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
},
damage: 100,
},
],
}
export default card