1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 14:29:55 +00:00

71 lines
1.0 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Nuzleaf",
fr: "Pifeuil",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
274,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Seedot",
fr: "Grainipiot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Pound",
fr: "ÉcrasFace",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Clear the Room",
fr: "Vider les Lieux",
},
effect: {
en: "Your opponent reveals their hand. Choose a Supporter card you find there. Your opponent shuffles that card into their deck.",
fr: "Votre adversaire dévoile sa main. Choisissez une carte Supporter que vous y trouvez. Votre adversaire mélange cette carte avec son deck.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card