1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

80 lines
1.1 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 '../Legend Maker'
const card: Card = {
name: {
en: "Nuzleaf",
fr: "Pifeuil",
de: "Blanas"
},
illustrator: "Katsura Tabata",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
274,
],
hp: 70,
types: [
"Darkness",
],
evolveFrom: {
en: "Seedot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Pound",
fr: "Écras'face",
de: "Pfund"
},
damage: 20,
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Plunder",
fr: "Pillage",
de: "Plündern"
},
effect: {
en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.",
fr: "Avant d'infliger des dégâts, défaussez toutes les cartes Dresseur attachées au Pokémon Défenseur.",
de: "Bevor der Schaden zugefügt wird, lege alle an dem Verteidigendem Pokémon angelegten Trainerkarten auf den Ablagestapel."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card