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

81 lines
1.3 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Lunala",
fr: "Lunala",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
792,
],
hp: 160,
types: [
"Psychic",
],
evolveFrom: {
en: "Cosmoem",
fr: "Cosmovum",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Shatter Shot",
fr: "Coup Fracassant",
},
effect: {
en: "This attack does 40 damage times the amount of Psychic Energy attached to this Pokémon.",
fr: "Cette attaque inflige 40 dégâts multipliés par le nombre dÉnergies Psychic attachées à ce Pokémon.",
},
damage: 40,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Wings of the Moone",
fr: "Ailes du Halo Lunaire",
},
effect: {
en: "Move all Energy from this Pokémon to your Benched Pokémon in any way you like.",
fr: "Déplacez toutes les Énergies de ce Pokémon vers vos Pokémon de Banc, de la manière que vous voulez.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card