1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

75 lines
995 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Team Aqua's Sealeo",
fr: "Phogleur de Team Aqua",
de: "Team Aquas Seejong"
},
illustrator: "T. Honda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
364,
],
hp: 80,
types: [
"Water",
],
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Aurora Beam",
fr: "Onde boréale",
de: "Aurora Beam"
},
damage: 20,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Knock Over",
fr: "Culbute",
de: "Knock Over"
},
effect: {
en: "You may discard any Stadium card in play.",
fr: "Vous pouvez défausser n'importe quelle carte Stade en jeu.",
de: "You may discard any Stadium card in play."
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
}
export default card