mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
67 lines
1.1 KiB
TypeScript
67 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Skrelp",
|
||
fr: "Venalgue",
|
||
es: "Skrelp",
|
||
it: "Skrelp",
|
||
pt: "Skrelp",
|
||
de: "Algitt"
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
690,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Poison Breath",
|
||
fr: "Haleine Empoisonnée",
|
||
es: "Aliento Venenoso",
|
||
it: "Velenospiro",
|
||
pt: "Hálito Venenoso",
|
||
de: "Gifthauch"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|