1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
2021-11-12 17:24:19 +01:00

80 lines
1.4 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 '../Neo Revelation'
const card: Card = {
name: {
en: "Starmie",
fr: "Staross"
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
121,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Staryu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Confuse Ray",
fr: "Onde folie"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus."
},
damage: 10
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Core Stream",
fr: "Courant central"
},
effect: {
en: "Choose an Energy type other than . This attack does 20 damage to each of your opponent's Pokémon with any Energy cards of that type attached to it. Don't apply Weakness and Resistance.",
fr: "Choisissez un type d'Énergie autre que . Cette attaque inflige 20 dégâts à chaque Pokémon de votre adversaire possédant des cartes d'Énergie de ce type. N'appliquez ni la Faiblesse ni la Résistance."
}
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
description: {
fr: "La section centrale de son corps est appelée \"cœur\". Elle luit d'une couleur différente à chaque fois qu'on la contemple."
}
}
export default card