mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
98 lines
2.1 KiB
TypeScript
98 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Seaking",
|
||
fr: "Poissoroy",
|
||
es: "Seaking",
|
||
it: "Seaking",
|
||
pt: "Seaking",
|
||
de: "Golking"
|
||
},
|
||
illustrator: "Kyoko Umemoto",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
119,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Goldeen",
|
||
fr: "Poissirène",
|
||
es: "Goldeen",
|
||
it: "Goldeen",
|
||
pt: "Goldeen",
|
||
de: "Goldini"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Soaking Horn",
|
||
fr: "Corne Trempage",
|
||
es: "Cuerno Anegador",
|
||
it: "Inondacorno",
|
||
pt: "Chifre Encharcador",
|
||
de: "Triefendes Horn"
|
||
},
|
||
effect: {
|
||
en: "If this Pokémon was healed during this turn, this attack does 80 more damage.",
|
||
fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 80 dégâts supplémentaires.",
|
||
es: "Si este Pokémon ha sido curado durante este turno, este ataque hace 80 puntos de daño más.",
|
||
it: "Se questo Pokémon è stato curato durante questo turno, questo attacco infligge 80 danni in più.",
|
||
pt: "Se este Pokémon foi curado durante esta vez de jogar, este ataque causará 80 de danos adicionais.",
|
||
de: "Wenn dieses Pokémon während dieses Zuges geheilt wurde, fügt dieser Angriff 80 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Reckless Charge",
|
||
fr: "Attaque Imprudente",
|
||
es: "Carga Descuidada",
|
||
it: "Carica Avventata",
|
||
pt: "Carga Indomável",
|
||
de: "Waghalsiger Sturmangriff"
|
||
},
|
||
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 si mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 10 Schadenspunkte zu."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|