1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00

78 lines
1.0 KiB
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 '../Platinum'
const card: Card = {
name: {
en: "Scyther",
fr: "Insécateur",
de: "Sichlor"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
123,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Swords Dance",
fr: "Danse-lames",
de: "Swords Dance"
},
effect: {
en: "During your next turn, Scyther's Slash attack's base damage is 60.",
fr: "Lors de votre prochain tour, les dégâts de base de l'attaque Tranche d'Insécateur sont de 60.",
de: "During your next turn, Scyther's Slash attack's base damage is 60."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
de: "Slash"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card