1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00

70 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Dragalge",
fr: "Kravarech",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
691,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Skrelp",
fr: "Venalgue",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Poison Cultivation",
fr: "Culture de Poison",
},
effect: {
en: "If your opponent's Active Pokémon is Poisoned, put 10 damage counters instead of 1 on that Pokémon between turns.",
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, placez 10 marqueurs de dégâts au lieu dun sur ce Pokémon-là entre chaque tour.",
},
},
{
cost: [
"Psychic",
],
name: {
en: "Sharp Fin",
fr: "Aileron Aiguisé",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card