1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

81 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Unown W",
fr: "Zarbi W",
de: "Icognito W"
},
illustrator: "Kazuaki Aihara",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
201,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "WALL",
fr: "WALL",
de: "WALL"
},
effect: {
en: "As long as Unown W is your Active Pokémon, any damage done to your Pokémon by an opponent's attack is reduced by 10 (after applying Weakness and Resistance).",
fr: "Tant que Zarbi V est votre Pokémon Actif, tous dégâts infligés à vos Pokémon par une attaque de votre adversaire sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
de: "Solange Icognito W dein Aktives Pokémon ist, wird Schaden, der deinen Pokémon durch gegnerische Angriffe zugefügt wird, um 10 Schadenspunkte reduziert (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Hidden Power",
fr: "Puissance cachée",
de: "Kraftreserve"
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
de: "Ziehe 1 Karte."
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "+30"
},
],
retreat: 3,
description: {
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
}
}
export default card