mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
82 lines
1.7 KiB
TypeScript
82 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sigilyph",
|
||
fr: "Cryptéro",
|
||
es: "Sigilyph",
|
||
it: "Sigilyph",
|
||
pt: "Sigilyph",
|
||
de: "Symvolara"
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
561,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Safeguard",
|
||
fr: "Rune Protect",
|
||
es: "Velo Sagrado",
|
||
it: "Salvaguardia",
|
||
pt: "Salvaguarda",
|
||
de: "Bodyguard"
|
||
},
|
||
effect: {
|
||
en: "Prevent all effects of attacks, including damage, done to this Pokémon by Pokémon-EX.",
|
||
fr: "Évitez tous les effets d’attaques (y compris les dégâts) infligés à ce Pokémon par des Pokémon-EX.",
|
||
es: "Evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon por Pokémon-EX.",
|
||
it: "Previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon da Pokémon-EX.",
|
||
pt: "Impede todos os efeitos de ataques, inclusive danos, causados a este Pokémon por Pokémon-EX.",
|
||
de: "Verhindere alle Effekte von Angriffen, einschließlich Schaden, die diesem Pokémon durch Pokémon-EX zugefügt werden."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Psychic",
|
||
fr: "Psyko",
|
||
},
|
||
effect: {
|
||
en: "Does 10 more damage for each Energy attached to the Defending Pokémon.",
|
||
fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|