mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 12:49:53 +00:00
54 lines
748 B
TypeScript
54 lines
748 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sealeo",
|
|
fr: "Phogleur",
|
|
es: "Sealeo",
|
|
it: "Sealeo",
|
|
pt: "Sealeo",
|
|
de: "Seejong"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Water"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Lunge Out",
|
|
fr: "Allonger",
|
|
es: "Arremeter",
|
|
it: "Affondo Lungo",
|
|
pt: "Bote",
|
|
de: "Sprungangriff"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Water", "Water"],
|
|
|
|
name: {
|
|
en: "Ice Ball",
|
|
fr: "Ball'Glace",
|
|
es: "Bola Hielo",
|
|
it: "Palla Gelo",
|
|
pt: "Bola de Gelo",
|
|
de: "Frostbeule"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |