mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [274],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Nuzleaf",
|
|
fr: "Pifeuil",
|
|
es: "Nuzleaf",
|
|
it: "Nuzleaf",
|
|
pt: "Nuzleaf",
|
|
de: "Blanas"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Seedot",
|
|
fr: "Grainipiot",
|
|
es: "Seedot",
|
|
it: "Seedot",
|
|
pt: "Seedot",
|
|
de: "Samurzel"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Push Down",
|
|
fr: "Recul",
|
|
es: "Oprimir",
|
|
it: "Spintonare",
|
|
pt: "Rebaixar",
|
|
de: "Runterdrücken"
|
|
},
|
|
|
|
effect: {
|
|
en: "You may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
|
|
fr: "Vous pouvez demander à votre adversaire d'échanger son Pokémon Actif contre l'un de ses Pokémon de Banc.",
|
|
es: "Puedes hacer que tu rival cambie su Pokémon Activo por 1 de sus Pokémon en Banca.",
|
|
it: "Puoi far scambiare al tuo avversario il suo Pokémon attivo con uno della sua panchina.",
|
|
pt: "Você pode fazer com que o seu oponente troque o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
|
|
de: "Du kannst deinen Gegner dazu veranlassen, sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank auszutauschen."
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card
|