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:
80
data/Sun & Moon/Guardians Rising/61.ts
Normal file
80
data/Sun & Moon/Guardians Rising/61.ts
Normal 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
|
Reference in New Issue
Block a user