mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
91 lines
2.6 KiB
TypeScript
91 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Scyther",
|
||
fr: "Insécateur",
|
||
es: "Scyther",
|
||
it: "Scyther",
|
||
pt: "Scyther",
|
||
de: "Sichlor"
|
||
},
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
123,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Twin Play",
|
||
fr: "Duo",
|
||
es: "Juego Gemelo",
|
||
it: "Doppio Gioco",
|
||
pt: "Buscar o Par",
|
||
de: "Doppeltes Spiel"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 Scyther and put them onto your Bench. Then, shuffle your deck.",
|
||
fr: "Cherchez jusqu’à 2 Insécateur dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 2 Scyther y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo fino a due Scyther e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por até 2 Scyther no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Sichlor und lege sie auf deine Bank. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Agility",
|
||
fr: "Hâte",
|
||
es: "Agilidad",
|
||
it: "Agilità",
|
||
pt: "Agilidade",
|
||
de: "Agilität"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent’s next turn.",
|
||
fr: "Lancez une pièce. Si c’est face, évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
|
||
es: "Lanza 1 moneda. Si sale cara, evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon durante el próximo turno de tu rival.",
|
||
it: "Lancia una moneta. Se esce testa, previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
|
||
pt: "Jogue 1 moeda. Se sair cara, prevenirá todos os efeitos de ataques, incluindo dano, causados a este Pokémon durante a próxima vez de jogar do seu oponente.",
|
||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners alle Effekte von Attacken, einschließlich Schaden, die diesem Pokémon zugefügt werden."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|