1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

77 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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"
},
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
}
}
export default card