mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
86 lines
1.0 KiB
TypeScript
86 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Flashfire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Nuzleaf",
|
||
fr: "Pifeuil",
|
||
es: "Nuzleaf",
|
||
it: "Nuzleaf",
|
||
pt: "Nuzleaf",
|
||
de: "Blanas"
|
||
},
|
||
illustrator: "Midori Harada",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
274,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Seedot",
|
||
fr: "Grainipiot",
|
||
es: "Seedot",
|
||
it: "Seedot",
|
||
pt: "Seedot",
|
||
de: "Samurzel"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Razor Leaf",
|
||
fr: "Tranch'Herbe",
|
||
es: "Hoja Afilada",
|
||
it: "Foglielama",
|
||
pt: "Folha Navalha",
|
||
de: "Rasierblatt"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Cut",
|
||
fr: "Coupe",
|
||
es: "Corte",
|
||
it: "Taglio",
|
||
pt: "Cortar",
|
||
de: "Zerschneider"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|