mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
73 lines
1.1 KiB
TypeScript
73 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Seadra",
|
|
fr: "Hypocean",
|
|
},
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
117,
|
|
],
|
|
hp: 80,
|
|
types: [
|
|
"Water",
|
|
],
|
|
evolveFrom: {
|
|
en: "Horsea",
|
|
fr: "Seeper",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Water",
|
|
],
|
|
name: {
|
|
en: "Aqua Pump",
|
|
fr: "Aqua-pompe",
|
|
},
|
|
effect: {
|
|
en: "You may discard up to 2 Water Energy cards from your hand. If you do, this attack does 30 damage plus 10 more damage for each Energy card you discarded.",
|
|
fr: "Vous pouvez défausser jusqu'à 2 cartes Énergie Water de votre main. Cette attaque inflige alors 30 dégâts plus 10 dégâts supplémentaires pour chaque carte Énergie défaussée.",
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Water",
|
|
"Water",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Waterfall",
|
|
fr: "Cascade",
|
|
},
|
|
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|