1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 20:51:57 +00:00
Files
cards-database/data/Diamond & Pearl/Diamond & Pearl/68.ts
Florian Bouillon d4be6fa84f fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

71 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Unown D",
fr: "Zarbi D",
},
illustrator: "Nakaoka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
201,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Draw",
fr: "DONNER",
},
effect: {
en: "Once during your turn (before your attack), if Unown D is on your Bench, you may flip a coin. If heads, each player may draw a card. (You draw your card first.)",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Zarbi D est sur votre Banc, vous pouvez lancer une pièce. Si c'est face, chaque joueur peut piocher une carte. (Vous piochez votre carte en premier.)",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hidden Power",
fr: "Puissance cachée",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "+10"
},
],
retreat: 1,
description: {
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de Zarbi est apparu en premier."
}
}
export default card