mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 05:19:55 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
105 lines
1.9 KiB
TypeScript
105 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Seaking",
|
||
fr: "Poissoroy",
|
||
es: "Seaking",
|
||
it: "Seaking",
|
||
pt: "Seaking",
|
||
de: "Golking"
|
||
},
|
||
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
119,
|
||
],
|
||
|
||
hp: 110,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Goldeen",
|
||
fr: "Poissirène",
|
||
es: "Goldeen",
|
||
it: "Goldeen",
|
||
pt: "Goldeen",
|
||
de: "Goldini"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Ripping Horn",
|
||
fr: "Corne Déchirante",
|
||
es: "Cuerno Desgarrador",
|
||
it: "Squarciacorno",
|
||
pt: "Chifre Lacerante",
|
||
de: "Reißendes Horn"
|
||
},
|
||
effect: {
|
||
en: "Flip 3 coins. For each heads, discard an Energy from your opponent's Active Pokémon.",
|
||
fr: "Lancez 3 pièces. Pour chaque côté face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||
es: "Lanza 3 monedas. Por cada cara, descarta 1 Energía del Pokémon Activo de tu rival.",
|
||
it: "Lancia tre volte una moneta. Ogni volta che esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
||
pt: "Jogue 3 moedas. Para cada cara, descarte 1 Energia do Pokémon Ativo do seu oponente.",
|
||
de: "Wirf 3 Münzen. Lege pro Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pierce",
|
||
fr: "Transpercement",
|
||
es: "Perforar",
|
||
it: "Perforare",
|
||
pt: "Perfurar",
|
||
de: "Durchbohren"
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "Using its horn, it bores holes in riverbed boulders, making nests to prevent its eggs from washing away."
|
||
}
|
||
}
|
||
|
||
export default card
|