mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
84 lines
1.3 KiB
TypeScript
84 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Remoraid",
|
||
fr: "Rémoraid",
|
||
es: "Remoraid",
|
||
it: "Remoraid",
|
||
pt: "Remoraid",
|
||
de: "Remoraid"
|
||
},
|
||
illustrator: "Suwama Chiaki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
223,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Wild River",
|
||
fr: "Rivière Sauvage",
|
||
es: "Río Salvaje",
|
||
it: "Fiume Selvaggio",
|
||
pt: "Rio Selvagem",
|
||
de: "Wilder Fluss"
|
||
},
|
||
effect: {
|
||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||
fr: "Échangez ce Pokémon avec l'un de vos Pokémon de Banc.",
|
||
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
|
||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Water Gun",
|
||
fr: "Pistolet à O",
|
||
es: "Pistola Agua",
|
||
it: "Pistolacqua",
|
||
pt: "Revólver d'Água",
|
||
de: "Aquaknarre"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|