1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-25 05:19:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Mythical Island/033.ts
2025-02-19 21:52:42 +01:00

45 lines
670 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Sigilyph"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "Psychic power allows these Pokémon to fly. Some say they were the guardians of an ancient city. Others say they were the guardians' emissaries."
},
stage: "Basic",
attacks: [{
name: {
en: "Spike Draw"
},
damage: 10,
cost: ["Psychic"],
effect: {
en: "Draw a card."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1,
rarity: "Two Diamond"
}
export default card