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

64
data/XY/BREAKpoint/77.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "M Scizor-EX",
fr: "M-Cizayox-EX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
212,
],
hp: 220,
types: [
"Metal",
],
evolveFrom: {
en: "Scizor-EX",
fr: "Cizayox-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Metal",
"Metal",
],
name: {
en: "Iron Crusher",
fr: "Écrase Fer",
},
effect: {
en: "You may discard a Special Energy attached to your opponent's Active Pokémon or a Stadium card in play.",
fr: "Vous pouvez défausser une carte Énergie spéciale attachée au Pokémon Actif de votre adversaire ou une carte Stade en jeu.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card