mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
66 lines
1.0 KiB
TypeScript
66 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Pokémon GO"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Natu",
|
|
fr: "Natu",
|
|
es: "Natu",
|
|
it: "Natu",
|
|
pt: "Natu",
|
|
de: "Natu"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Nap",
|
|
fr: "Tit'Sieste",
|
|
es: "Siesta",
|
|
it: "Pausa",
|
|
pt: "Soneca",
|
|
de: "Nickerchen"
|
|
},
|
|
|
|
effect: {
|
|
en: "Heal 20 damage from this Pokémon.",
|
|
fr: "Soignez 20 dégâts de ce Pokémon.",
|
|
es: "Cura 20 puntos de daño a este Pokémon.",
|
|
it: "Cura questo Pokémon da 20 danni.",
|
|
pt: "Cure 20 pontos de dano deste Pokémon.",
|
|
de: "Heile 20 Schadenspunkte bei diesem Pokémon."
|
|
}
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Peck",
|
|
fr: "Picpic",
|
|
es: "Picotazo",
|
|
it: "Beccata",
|
|
pt: "Bicada",
|
|
de: "Pikser"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |