mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-22 16:19:54 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
74 lines
994 B
TypeScript
74 lines
994 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Seaking",
|
||
fr: "Poissoroy",
|
||
},
|
||
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
119,
|
||
],
|
||
|
||
hp: 110,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Goldeen",
|
||
fr: "Poissirène",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Ripping Horn",
|
||
fr: "Corne Déchirante",
|
||
},
|
||
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.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pierce",
|
||
fr: "Transpercement",
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|