1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

73 lines
1.5 KiB
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 Destiny'
const card: Card = {
name: {
en: "Unown [L]",
fr: "Zarbi L",
de: "Icognito L"
},
illustrator: "CR CG gangs",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
201,
],
hp: 40,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Pokemon Power",
name: {
en: "[Laugh]",
fr: "Laugh",
de: "Laugh"
},
effect: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, each player shuffles his or her deck. This power can be used even if Unown L is Asleep, Confused, or Paralyzed.",
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, chaque joueur mélange son deck. Ce pouvoir fonctionne même si Zarbi [L] est Endormi, Confus ou Paralysé.",
de: "Du kannst immer einmal in deinem Zug (vor deinem Angriff) eine Münze werden. Bei \"Kopf\" mischt jeder Spieler sein Deck. Diese Fähigkeit kann selbst dann verwendet werden, wenn Icognito J schläft, verwirrt oder gelähmt ist."
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hidden Power",
fr: "Puissance cachée",
de: "Kraftreserve"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
description: {
fr: "On pense que la variété des types de ce Pokémon particulier est le résultat d'une adaptation due à un caprice de l'évolution, chacun possédant une capacité différente."
}
}
export default card