1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

87 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 = {
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émons Blinding Scythe attack does 70 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, lattaque 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, lattacco 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