mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
88 lines
1.5 KiB
TypeScript
88 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Spewpa",
|
||
fr: "Pérégrain",
|
||
es: "Spewpa",
|
||
it: "Spewpa",
|
||
pt: "Spewpa",
|
||
de: "Puponcho"
|
||
},
|
||
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Grass"],
|
||
|
||
evolveFrom: {
|
||
en: "Scatterbug",
|
||
fr: "Lépidonille",
|
||
es: "Scatterbug",
|
||
it: "Scatterbug",
|
||
pt: "Scatterbug",
|
||
de: "Purmel"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Grass Cocooning",
|
||
fr: "Cocon Vert",
|
||
es: "Abrigo Planta",
|
||
it: "Erbocorazza",
|
||
pt: "Casulo de Grama",
|
||
de: "Pflanzenhülle"
|
||
},
|
||
|
||
effect: {
|
||
en: "Heal 40 damage from this Pokémon.",
|
||
fr: "Soignez 40 dégâts de ce Pokémon.",
|
||
es: "Cura 40 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 40 danni.",
|
||
pt: "Cure 40 pontos de dano deste Pokémon.",
|
||
de: "Heile 40 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Bug Bite",
|
||
fr: "Piqûre",
|
||
es: "Picadura",
|
||
it: "Coleomorso",
|
||
pt: "Picada",
|
||
de: "Käferbiss"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Grass", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "The beaks of birds can't begin to scratch its stalwart body. To defend itself, it spews powder."
|
||
}
|
||
}
|
||
|
||
export default card
|