1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Nuzleaf",
fr: "Pifeuil",
de: "Blanas"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
274,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Seedot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Self Charge",
fr: "Auto-chargement",
de: "Selbstaufladung"
},
effect: {
en: "Attach a Darkness Energy card from your hand to Nuzleaf.",
fr: "Attachez une carte Énergie de votre main à Pifeuil.",
de: "Lege eine -Energiekarte von deiner Hand an Blanas an."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Corkscrew Punch",
fr: "Poing en tire-bouchon",
de: "Korkenzieherhieb"
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card