mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
67 lines
1.0 KiB
TypeScript
67 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Petilil",
|
||
fr: "Chlorobule",
|
||
es: "Petilil",
|
||
it: "Petilil",
|
||
pt: "Petilil",
|
||
de: "Lilminip"
|
||
},
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
548,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Aromatherapy",
|
||
fr: "Aromathérapie",
|
||
es: "Aromaterapia",
|
||
it: "Aromaterapia",
|
||
pt: "Aromaterapia",
|
||
de: "Aromakur"
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from each of your Pokémon.",
|
||
fr: "Soignez 10 dégâts à chacun de vos Pokémon.",
|
||
es: "Cura 10 puntos de daño a cada uno de tus Pokémon.",
|
||
it: "Cura ciascuno dei tuoi Pokémon da 10 danni.",
|
||
pt: "Cure 10 de danos de cada um dos seus Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei jedem deiner Pokémon."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|