mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
60 lines
887 B
TypeScript
60 lines
887 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [116],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Hypotrempe",
|
||
en: "Horsea",
|
||
es: "Horsea",
|
||
it: "Horsea",
|
||
pt: "Horsea",
|
||
de: "Seeper"
|
||
},
|
||
|
||
illustrator: "Taira Akitsu",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 40,
|
||
types: ["Water"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Pistolet à O",
|
||
en: "Water Gun",
|
||
es: "Pistola Agua",
|
||
it: "Pistolacqua",
|
||
pt: "Revólver d'Água",
|
||
de: "Aquaknarre"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
regulationMark: "E",
|
||
retreat: 0,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It makes its nest in the shade of corals. If it senses danger, it spits murky ink and flees."
|
||
}
|
||
}
|
||
|
||
export default card
|