1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* 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>
2021-09-02 12:01:58 +02:00

80 lines
1.4 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Sigilyph",
fr: "Cryptéro",
es: "Sigilyph",
it: "Sigilyph",
pt: "Sigilyph",
de: "Symvolara"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
561,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Reflect",
fr: "Protection",
},
effect: {
en: "During your opponent's next turn, any damage done to this Pokémon by attacks is reduced by 40 (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 40 (après application de la Faiblesse et de la Résistance).",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Telekinesis",
fr: "Lévikinésie",
},
effect: {
en: "Does 50 damage to 1 of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance.",
fr: "Inflige 50 dégâts à 1 des Pokémon de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card