mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
65
data/Sword & Shield/Lost Origin/012.ts
Normal file
65
data/Sword & Shield/Lost Origin/012.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user