1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00
Florian Bouillon c52ed815bb
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas

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

* feat: Add cards

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

---------

Signed-off-by: Avior <git@avior.me>
2024-12-03 09:32:33 +01:00

63 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Latias",
fr: "Latias",
es: "Latias",
it: "Latias",
pt: "Latias",
de: "Latias"
},
rarity: "None",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Mist Float",
fr: "Flottaison Brume",
es: "Flotación Nebulosa",
it: "Salvagente Nebbioso",
pt: "Névoa Flutuante",
de: "Gischtgleiter"
},
effect: {
en: "If this Pokémon has any Psychic Energy attached, it has no Retreat Cost.",
fr: "Si au moins une Énergie Psychic est attachée à ce Pokémon, il n'a pas de Coût de Retraite.",
es: "Si este Pokémon tiene alguna Energía Psychic unida, no tiene ningún Coste de Retirada.",
it: "Se questo Pokémon ha delle Energie Psychic assegnate, non ha costo di ritirata.",
pt: "Se este Pokémon tiver alguma Energia Psychic ligada a ele, não terá custo de Recuo.",
de: "Wenn an dieses Pokémon mindestens 1 Psychic-Energie angelegt ist, hat es keine Rückzugskosten."
}
}],
attacks: [{
cost: ["Psychic", "Psychic", "Colorless"],
name: {
en: "Psychic Sphere",
fr: "Sphère Psy",
es: "Esfera Psíquica",
it: "Psicosfera",
pt: "Esfera Psíquica",
de: "Psychosphäre"
},
damage: 100
}],
retreat: 2,
regulationMark: "G"
}
export default card