1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

90 lines
1.5 KiB
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 '../Unleashed'
const card: Card = {
name: {
en: "Seadra",
fr: "Hypocean",
de: "Seemon"
},
illustrator: "Shin Nagasawa",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
117,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Horsea",
fr: "Hypotrempe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Muddy Water",
fr: "Ocroupi",
de: "Lehmbrühe"
},
effect: {
en: "Does 10 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à lun des Pokémon se trouvant sur le Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
de: "Dieser Angriff fügt 1 Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistzenz bei Pokémon auf der Bank nicht an.)"
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Razor Fin",
fr: "Aileron-rasoir",
de: "Rasierflosse"
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
description: {
en: "Its fin tips leak poison. Its fins and bones are highly valued as ingredients in herbal medicine."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card