mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
80 lines
1.6 KiB
TypeScript
80 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [121],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Starmie",
|
|
fr: "Staross",
|
|
es: "Starmie",
|
|
it: "Starmie",
|
|
pt: "Starmie",
|
|
de: "Starmie"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
|
|
evolveFrom: {
|
|
en: "Staryu",
|
|
fr: "Stari",
|
|
es: "Staryu",
|
|
it: "Staryu",
|
|
pt: "Staryu",
|
|
de: "Sterndu"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Psychic",
|
|
fr: "Psyko",
|
|
es: "Psíquico",
|
|
it: "Psichico",
|
|
pt: "Psíquico",
|
|
de: "Psychokinese"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
|
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
|
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
|
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
|
|
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 30 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "10+"
|
|
}, {
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Power Gem",
|
|
fr: "Rayon Gemme",
|
|
es: "Joya de Luz",
|
|
it: "Gemmoforza",
|
|
pt: "Gema Poderosa",
|
|
de: "Juwelenkraft"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 0,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |