1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Seaking",
fr: "Poissoroy",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
119,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Goldeen",
fr: "Poissirène",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Enhanced Horn",
fr: "Corne Améliorée",
},
effect: {
en: "Flip 2 coins. This attack does 30 damage for each heads. If this Pokémon has a Pokémon Tool card attached to it, flip 6 coins instead.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts pour chaque côté face. Si une carte Outil Pokémon est attachée à ce Pokémon, lancez 6 pièces à la place.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card