1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

73 lines
906 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Neo Discovery'
const card: Card = {
name: {
en: "Scizor",
},
illustrator: "Kimiya Masago",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
212,
],
hp: 80,
types: [
"Metal",
],
evolveFrom: {
en: "Scyther",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "False Swipe",
},
effect: {
en: "Does damage equal to half the Defending Pokémon's remaining HP (rounded down to the nearest 10).",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Double Claw",
},
effect: {
en: "Flip 2 coins. This attack does 20 times the number of heads.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card