1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
2024-12-19 11:52:36 +01:00

73 lines
951 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Horsea δ",
fr: "Hypotrempe δ",
de: "Seeper"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
116,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
de: "Tackle"
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Reverse Thrust",
fr: "Poussée inverse",
de: "Umkehrschub"
},
effect: {
en: "Switch Horsea with 1 of your Benched Pokémon.",
fr: "Échangez Hypotrempe avec 1 de vos Pokémon de Banc.",
de: "Tausche Seeper gegen 1 Pokémon auf deiner Bank aus."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card