1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

86 lines
1.2 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 '../Undaunted'
const card: Card = {
name: {
en: "Scyther",
fr: "Insecateur",
de: "Sichlor"
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
123,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Cut",
fr: "Coupe",
de: "Zerschneider"
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup déchirant",
de: "Schlitzender Schlag"
},
effect: {
en: "During your next turn, Scyther cant use Slashing Strike.",
fr: "Insécateur ne peut pas utiliser son Coup déchirant pendant votre prochain tour.",
de: "Sichlor kann Schlitzender Schlag in deinem nächsten Zug nicht einsetzen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
description: {
en: "It slashes through grass with its sharp scythes, moving too fast for the human eye to track."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card