1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 lines
1.2 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 '../BREAKthrough'
const card: Card = {
name: {
en: "Meloetta",
fr: "Meloetta",
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
648,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Accelerating Spin",
fr: "Rotation Accélérée",
},
effect: {
en: "Attach 2 Fighting Energy cards from your discard pile to this Pokémon. Then, switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Attachez 2 cartes Énergie Fighting de votre pile de défausse à ce Pokémon. Ensuite, échangez ce Pokémon avec l'un de vos Pokémon de Banc.",
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Prima Rondo",
fr: "Rondo Dansant",
},
effect: {
en: "If this Pokémon has any Psychic Energy attached to it, this attack does 50 more damage.",
fr: "Si de l'Énergie Psychic est attachée à ce Pokémon, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card