1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 03:19:55 +00:00

59 lines
853 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Seadra",
fr: "Hypocéan",
},
illustrator: "Yumi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
117,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Horsea",
fr: "Hypotrempe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
effect: {
en: "This attack does 20 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce Pokémon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card