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

67 lines
1.5 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: "Remoraid",
fr: "Rémoraid",
es: "Remoraid",
de: "Remoraid",
it: "Remoraid",
pt: "Remoraid",
'es-mx': "Remoraid"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Flail",
fr: "Gigotage",
es: "Azote",
de: "Dreschflegel",
it: "Flagello",
pt: "Mangual",
'es-mx': "Azote"
},
effect: {
en: "This attack does 10 damage for each damage counter on this Pokémon.",
fr: "Cette attaque inflige 10 dégâts pour chaque marqueur de dégâts sur ce Pokémon.",
es: "Este ataque hace 10 puntos de daño por cada contador de daño en este Pokémon.",
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte zu.",
it: "Questo attacco infligge 10 danni per ogni segnalino danno presente su questo Pokémon.",
pt: "Este ataque causa 10 pontos de dano para cada contador de dano neste Pokémon.",
'es-mx': "Este ataque hace 10 puntos de daño por cada contador de daño en este Pokémon."
},
damage: "10×"
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Rain Splash",
fr: "Pluie Éclaboussante",
es: "Golpe de Lluvia",
de: "Regenplatscher",
it: "Spruzzapioggia",
pt: "Chuva Borrifante",
'es-mx': "Salpicalluvia"
},
damage: 20
}],
retreat: 1,
regulationMark: "I"
}
export default card