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

53 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 "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Sprigatito",
fr: "Poussacha",
es: "Sprigatito",
de: "Felori",
it: "Sprigatito",
pt: "Sprigatito",
'es-mx': "Sprigatito"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Tons of Treading",
fr: "Pas Perpétuels",
es: "Sinfín de Pisadas",
de: "Tüchtiges Treteln",
it: "Pesta Calpesta",
pt: "Pisandinho",
'es-mx': "Pisaditas sin Fin"
},
effect: {
en: "Flip 3 coins. This attack does 10 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
es: "Lanza 3 monedas. Este ataque hace 10 puntos de daño por cada cara.",
de: "Wirf 3 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu.",
it: "Lancia tre volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
pt: "Jogue 3 moedas. Este ataque causa 10 pontos de dano para cada cara.",
'es-mx': "Lanza 3 monedas. Este ataque hace 10 puntos de daño por cada cara."
},
damage: "10×"
}],
retreat: 1,
regulationMark: "I"
}
export default card