mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Unown O",
|
|
fr: "Zarbi O",
|
|
de: "Icognito O"
|
|
},
|
|
illustrator: "Daisuke Ito",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
201,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-POWER",
|
|
name: {
|
|
en: "ONE",
|
|
fr: "One",
|
|
de: "ONE"
|
|
},
|
|
effect: {
|
|
en: "Once during your turn (before your attack), if you have Unown O, Unown N, and Unown E on your Bench and you have 1 card left in your hand, you may draw cards until you have 7 cards in your hand.",
|
|
fr: "Une seule fois lors de votre tour (avant votre attaque), si Zarbi O, Zarbi N et Zarbi E sont sur votre Banc et qu'il vous reste 1 carte en main, vous pouvez piocher des cartes jusqu'à ce que vous ayez 7 cartes en main.",
|
|
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du, wenn Icognito O, Icognito N und Icognito E auf deiner Bank sind und du nur 1 Karte auf der Hand hast, so viele Karten ziehen, bis du 7 Karten auf der Hand hast."
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Hidden Power",
|
|
fr: "Puissance cachée",
|
|
de: "Kraftreserve"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" schläft das Verteidigende Pokémon jetzt."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|