mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
61
data/Sword & Shield/Pokémon GO/032.ts
Normal file
61
data/Sword & Shield/Pokémon GO/032.ts
Normal file
@ -0,0 +1,61 @@
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user