1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

61 lines
754 B
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 '../Neo Discovery'
const card: Card = {
name: {
en: "Unown [O]",
},
illustrator: "CR CG gangs",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
201,
],
hp: 40,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Observe",
},
effect: {
en: "Once during your turn (before you attack), you may look at 5 cards from the top of your opponent's deck and put them back in the same order.",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hidden Power",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card