1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

93 lines
2.0 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: "Kingdra",
fr: "Hyporoi",
de: "Seedraking"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Seadra",
fr: "Hypocean",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Arrow",
fr: "Flèche deau",
de: "Wasserpfeil"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt dem gewählten Pokémon 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Stream Pump",
fr: "Pompe à eau",
de: "Schwallpumpe"
},
effect: {
en: "You may do 50 damage plus 30 more damage. If you do, return an Energy card attached to Kingdra to your hand.",
fr: "Vous pouvez infliger 50 dégâts plus 30 dégâts supplémentaires. Dans ce cas, récupérez dans votre main une carte Énergie attachée à Hyporoi.",
de: "Du kannst mit diesem Angriff 50 Schadenspunkte plus 30 weitere Schadenspunkte zufügen. Wenn du das machst, nimm 1 Energiekarte, die an Seedraking angelegt ist, zurück auf deine Hand."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
description: {
en: "It sleeps deep on the ocean floor to build its energy. It is said to cause tornadoes as it wakes."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card