mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ancient Origins'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Relicanth",
|
||
fr: "Relicanth",
|
||
es: "Relicanth",
|
||
it: "Relicanth",
|
||
pt: "Relicanth",
|
||
de: "Relicanth"
|
||
},
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
369,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Deep Sea Search",
|
||
fr: "Recherche Abyssale",
|
||
es: "Búsqueda en Alta Mar",
|
||
it: "Sonda Abissale",
|
||
pt: "Busca em Mar Profundo",
|
||
de: "Tiefseesuche"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 Pokémon Tool cards, reveal them, and put them into your hand. Shuffle your deck afterward.",
|
||
fr: "Cherchez jusqu'à 2 cartes Outil Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 2 cartas de Herramienta Pokémon, enséñalas y ponlas en tu mano. Baraja las cartas de tu baraja después.",
|
||
it: "Cerca nel tuo mazzo fino a due carte Oggetto Pokémon, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure no seu baralho até 2 cards de Ferramenta Pokémon, revele-os e coloque-os na sua mão. Em seguida, embaralhe seus cards.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Pokémon-Ausrüstungen, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Take Down",
|
||
fr: "Bélier",
|
||
es: "Derribo",
|
||
it: "Riduttore",
|
||
pt: "Desmantelar",
|
||
de: "Bodycheck"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 10 damage to itself.",
|
||
fr: "Ce Pokémon s'inflige 10 dégâts.",
|
||
es: "Este Pokémon se hace 10 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 10 danni a se stesso.",
|
||
pt: "Este Pokémon causa 10 de danos a ele mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 10 Schadenspunkte zu."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|