1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00
Florian Bouillon a550cf079c
feat: Add Journey Together (#701)
* feat: Add static data for Journey Together

Signed-off-by: Avior <git@avior.me>

* feat: finish naming

Signed-off-by: Avior <git@avior.me>

* should be done

Signed-off-by: Avior <git@avior.me>

* Update index.ts

---------

Signed-off-by: Avior <git@avior.me>
2025-03-29 12:44:17 +01:00

51 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Lillie's Cutiefly",
fr: "Bombydou de Lilie",
es: "Cutiefly de Lylia",
de: "Lillys Wommel",
it: "Cutiefly di Lylia",
pt: "Cutiefly da Lílian",
'es-mx': "Cutiefly de Lillie"
},
rarity: "Common",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Hold Still",
fr: "Ne Bougez Pas",
es: "Permanecer Inmóvil",
de: "Stillhalten",
it: "Immobile",
pt: "Ficar Parado",
'es-mx': "Sin Moverse"
},
effect: {
en: "Heal 10 damage from this Pokémon.",
fr: "Soignez 10 dégâts de ce Pokémon.",
es: "Cura 10 puntos de daño a este Pokémon.",
de: "Heile 10 Schadenspunkte bei diesem Pokémon.",
it: "Cura questo Pokémon da 10 danni.",
pt: "Cure 10 pontos de dano deste Pokémon.",
'es-mx': "Cura 10 puntos de daño a este Pokémon."
}
}],
retreat: 0,
regulationMark: "I"
}
export default card