1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

73 lines
1.8 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 '../Team Up'
const card: Card = {
name: {
en: "Starmie",
fr: "Staross",
es: "Starmie",
it: "Starmie",
pt: "Starmie",
de: "Starmie"
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
121,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Staryu",
fr: "Stari",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Strange Wave",
fr: "Vague Insolite",
es: "Ola Extraña",
it: "Onda Atipica",
pt: "Onda Estranha",
de: "Seltsame Welle"
},
effect: {
en: "Search your deck for up to 3 in any combination of Water and Psychic Energy cards and attach them to 1 of your Benched Pokémon. Then, shuffle your deck.",
fr: "Cherchez une combinaison dun maximum de 3 cartes Énergie Water et Psychic dans votre deck et attachez-les à lun de vos Pokémon de Banc. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 3 cartas de Energía Water y Psychic, en cualquier combinación, y únelas a 1 de tus Pokémon en Banca. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a tre carte Energia Water e Psychic in qualsiasi combinazione e assegnale a uno dei tuoi Pokémon in panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 3 cartas de Energia Water e Psychic no seu baralho em qualquer combinação e ligue-as a 1 dos seus Pokémon no Banco. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach einer beliebigen Kombination aus bis zu 3 Water- und Psychic-Energiekarten und lege sie an 1 Pokémon auf deiner Bank an. Mische anschließend dein Deck."
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 0
}
export default card