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

76 lines
1.6 KiB
TypeScript
Raw Permalink 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 '../Unseen Forces'
const card: Card = {
name: {
en: "Scyther",
fr: "Insécateur",
de: "Sichlor"
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
123,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Twin Play",
fr: "Duo",
de: "Twin Play"
},
effect: {
en: "Search your deck for up to 2 in any combination of Scyther and Scyther ex and put them onto your Bench. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck jusqu'à 2 Insécateur et Insécateur ex, dans n'importe quelle combinaison, et placez-les sur votre Banc. Ensuite, mélangez votre deck.",
de: "Search your deck for up to 2 in any combination of Scyther and Scyther ex and put them onto your Bench. Shuffle your deck afterward."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Agility",
fr: "Hâte",
de: "Agility"
},
effect: {
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Scyther during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Insécateur lors du prochain tour de votre adversaire.",
de: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Scyther during your opponent's next turn."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card