1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Blast'
const card: Card = {
name: {
en: "Sigilyph",
fr: "Cryptéro",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
561,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Toolbox",
fr: "Boîte à Outils",
},
effect: {
en: "This Pokémon may have up to 4 Pokémon Tool cards attached to it. (If this Pokémon loses this Ability, discard Pokémon Tool cards attached to this Pokémon until only 1 Pokémon Tool card remains.)",
fr: "Jusqu'à 4 cartes Outil Pokémon peuvent être attachées à ce Pokémon. (Si ce Pokémon perd cette capacité spéciale, défaussez des cartes Outil Pokémon attachées à ce Pokémon jusqu'à ce qu'il ne lui reste qu'une seule carte Outil Pokémon.)",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Cutting Wind",
fr: "Vent Glacial",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card