mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +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
40 lines
769 B
TypeScript
40 lines
769 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Champion\'s Path'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion",
|
|
fr: "Potion",
|
|
es: "Poción",
|
|
it: "Pozione",
|
|
pt: "Poção",
|
|
de: "Trank"
|
|
},
|
|
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Heal 30 damage from 1 of your Pokémon.",
|
|
fr: "Soignez 30 dégâts de l'un de vos Pokémon.",
|
|
es: "Cura 30 puntos de daño a 1 de tus Pokémon.",
|
|
it: "Cura uno dei tuoi Pokémon da 30 danni.",
|
|
pt: "Cura 30 de danos de 1 Pokémon seu.",
|
|
de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "D",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|