1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19: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

50 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Greavard",
fr: "Toutombe",
es: "Greavard",
it: "Greavard",
pt: "Greavard",
de: "Gruff"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Graveyard Gamboling",
fr: "Cabriole Funèbre",
es: "Jugueteo en el Cementerio",
it: "Saltellacimitero",
pt: "Cambalhotas no Cemitério",
de: "Grufttollerei"
},
effect: {
en: "This attack does 10 damage for each Psychic Pokémon in your discard pile.",
fr: "Cette attaque inflige 10 dégâts pour chaque Pokémon Psychic dans votre pile de défausse.",
es: "Este ataque hace 10 puntos de daño por cada Pokémon Psychic en tu pila de descartes.",
it: "Questo attacco infligge 10 danni per ogni Pokémon Psychic nella tua pila degli scarti.",
pt: "Este ataque causa 10 pontos de dano para cada Pokémon Psychic na sua pilha de descarte.",
de: "Diese Attacke fügt für jedes Psychic-Pokémon in deinem Ablagestapel 10 Schadenspunkte zu."
},
damage: "10×"
}],
retreat: 2,
regulationMark: "G"
}
export default card