1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

77 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Scizor",
fr: "Cizayox",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
212,
],
hp: 120,
types: [
"Metal",
],
evolveFrom: {
en: "Scyther",
fr: "Insécateur",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Exoskeleton",
fr: "Exosquelette",
},
effect: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Special Blow",
fr: "Coup Spécial",
},
effect: {
en: "If your opponent's Active Pokémon has any Special Energy attached to it, this attack does 70 more damage.",
fr: "Si de lÉnergie spéciale est attachée au Pokémon Actif de votre adversaire, cette attaque inflige 70 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card