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/57.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

87 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Nuzleaf",
fr: "Pifeuil",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
274,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Seedot",
fr: "Grainipiot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Dirty Trick",
fr: "Coup en douce",
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to 1 of your opponent's Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée à 1 des Pokémon de votre adversaire.",
},
},
{
cost: [
"Darkness",
"Darkness",
],
name: {
en: "Razor Wind",
fr: "Coupe-vent",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Le son de sa flûte d'herbe déstabilise l'auditeur. Il vit au plus profond des forêts."
}
}
export default card