1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

88 lines
2.1 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 '../Rebel Clash'
const card: Card = {
dexId: [123],
name: {
en: "Scyther",
fr: "Insécateur",
es: "Scyther",
it: "Scyther",
pt: "Scyther",
de: "Sichlor"
},
illustrator: "KEIICHIRO ITO",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Swords Dance",
fr: "Danse Lames",
es: "Danza Espada",
it: "Danzaspada",
pt: "Dança das Espadas",
de: "Schwerttanz"
},
effect: {
en: "During your next turn, this Pokémon's Blinding Scythe attack does 70 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, l'attaque Pulvérisation Aveuglante de ce Pokémon inflige 70 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
es: "Durante tu próximo turno, el ataque Guadaña Cegadora de este Pokémon hace 70 puntos de daño más (antes de aplicar Debilidad y Resistencia).",
it: "Durante il tuo prossimo turno, l'attacco Falceaccecante di questo Pokémon infligge 70 danni in più, prima di aver applicato debolezza e resistenza.",
pt: "Durante o seu próximo turno, o ataque Foice Ofuscante deste Pokémon causará 70 pontos de dano a mais (antes de aplicar Fraqueza e Resistência).",
de: "Während deines nächsten Zuges fügt die Attacke Blendende Sense dieses Pokémon 70 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Blinding Scythe",
fr: "Pulvérisation Aveuglante",
es: "Guadaña Cegadora",
it: "Falceaccecante",
pt: "Foice Ofuscante",
de: "Blendende Sense"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
hp: 80,
types: ["Grass"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Its two sharp scythes are more than just weapons. It uses them with dexterity to dress its prey before eating."
}
}
export default card