1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,80 @@
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: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card