1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40: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

75 lines
1.5 KiB
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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Starmie",
fr: "Staross",
de: "Starmie"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
121,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Staryu",
fr: "Stari",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Cosmic Cyclone",
fr: "Cyclone cosmique",
de: "Kosmischer Wirbelsturm"
},
effect: {
en: "Choose as many Water Energy attached to your Pokémon as you like. This attack does 20 damage times the amount of Energy you chose. Shuffle those cards back into your deck.",
fr: "Choisissez autant de cartes Énergie Water attachées à votre Pokémon que vous le souhaitez. Cette attaque inflige 20 dégâts multipliés par le nombre de cartes Énergie que vous avez choisies. Mélangez ces cartes dans votre deck.",
de: "Wähle eine beliebige Anzahl -Energien, die an 1 deiner Pokémon angelegt sind. Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl der gewählten Energie zu. Mische die gewählten Karten anschließend in dein Deck."
},
damage: "20x",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 0,
description: {
en: "The middle section of its body is called the core. It glows in a different color each time it is seen."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card