1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

61 lines
854 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
dexId: [86],
set: Set,
name: {
en: "Seel",
fr: "Otaria",
es: "Seel",
it: "Seel",
pt: "Seel",
de: "Jurob"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Headbutt",
fr: "Coup d'Boule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada",
de: "Kopfnuss"
},
damage: 10
}, {
cost: ["Water", "Colorless"],
name: {
en: "Rain Splash",
fr: "Pluie Éclaboussante",
es: "Golpe de Lluvia",
it: "Spruzzapioggia",
pt: "Chuva Borrifante",
de: "Regenplatscher"
},
damage: 20
}],
retreat: 1,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card