1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
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

79 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Delcatty",
fr: "Delcatty",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
301,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Skitty",
fr: "Eneco",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Attracting Body",
fr: "Corps attrayant",
},
effect: {
en: "If Delcatty is your Active Pokémon and is damaged by an opponent's attack (even if Delcatty is Knocked Out), flip a coin. If heads, the Attacking Pokémon is now Confused.",
fr: "Si Delcatty est votre Pokémon Actif et qu'une attaque de votre adversaire lui inflige des dégâts (même si Delcatty est mis K.O), lancez une pièce. Si c'est face, le Pokémon Attaquant est maintenant Confus.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Assist",
fr: "Assist-Énergie",
},
effect: {
en: "Search your discard pile for a basic Energy card and attach it to 1 of your Benched Pokémon.",
fr: "Choisissez dans votre pile de défausse une carte Énergie de base et attachez-la à 1 des Pokémon de votre Banc.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 1,
description: {
fr: "Les femmes Dresseurs raffolent de sa sublime fourrure. Il ne possède pas de nid."
}
}
export default card