1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

46 lines
640 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
dexId: [223],
set: Set,
name: {
en: "Remoraid",
fr: "Rémoraid",
es: "Remoraid",
it: "Remoraid",
pt: "Remoraid",
de: "Remoraid"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Sprinkle Water",
fr: "Eau Aspergeante",
es: "Esparcir Agua",
it: "Goccioline",
pt: "Aspergir Água",
de: "Wassersprüher"
},
damage: 10
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card