1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

63 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Sigilyph",
fr: "Cryptéro",
es: "Sigilyph",
it: "Sigilyph",
pt: "Sigilyph",
de: "Symvolara"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Yukiko Baba",
description: {
en: "A discovery was made in the desert where Sigilyph fly. The ruins of what may have been an ancient city were found beneath the sands."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Joust"
},
damage: 20,
effect: {
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon."
}
}, {
cost: ["Psychic", "Colorless"],
name: {
en: "Reflect Energy"
},
damage: 60,
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card