mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
50
data/Sword & Shield/Crown Zenith/006.ts
Normal file
50
data/Sword & Shield/Crown Zenith/006.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scyther",
|
||||
fr: "Insécateur",
|
||||
es: "Scyther",
|
||||
it: "Scyther",
|
||||
pt: "Scyther",
|
||||
de: "Sichlor"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mach Cut",
|
||||
fr: "Coupe Vive",
|
||||
es: "Corte Mach",
|
||||
it: "Taglio Mach",
|
||||
pt: "Corte Supersônico",
|
||||
de: "Schallschnitt"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard a Special Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
|
||||
es: "Descarta 1 Energía Especial del Pokémon Activo de tu rival.",
|
||||
it: "Scarta un'Energia speciale dal Pokémon attivo del tuo avversario.",
|
||||
pt: "Descarte 1 Energia Especial do Pokémon Ativo do seu oponente.",
|
||||
de: "Lege 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user