1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00

72 lines
1.3 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 '../Call of Legends'
const card: Card = {
name: {
en: "Relicanth",
fr: "Relicanth",
},
illustrator: "Wataru Kawahara",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
369,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Prehistoric Wisdom",
fr: "Sagesse préhistorique",
},
effect: {
en: "Choose a card from your hand and put it in the Lost Zone. Then, draw 3 cards.",
fr: "Choisissez une carte de votre main et placez-la dans la Zone Perdue. Ensuite, piochez 3 cartes.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Granite Head",
fr: "Tête de granit",
},
effect: {
en: "During your opponent's next turn, any damage done to Relicanth by attacks is reduced by 30 (after applying Weakness and Resistance).",
fr: "Pendant le tour suivant de votre adversaire, les dégâts infligés par des attaques à Relicanth sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card