1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/sm/sm7/70.ts Normal file
View File

@ -0,0 +1,106 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm7-70",
localId: 70,
// Card informations
name: {
en: "Lunala",
fr: "Lunala",
},
hp: 160,
type: [
Type.PSYCHIC,
],
dexId: 792,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/70/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/70/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/70/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/70/high.png",
},
},
evolveFrom: {
en: "Cosmoem",
fr: "Cosmovum",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1333,
type: AbilityType.TALENT,
name: {
en: "Shadow Shield",
fr: "Spectro-Bouclier",
},
text: {
en: "If this Pokémon has any Psychic Energy attached to it, it takes 20 less damage from attacks (after applying Weakness and Resistance).",
fr: "Si de lÉnergie Psychic est attachée à ce Pokémon, il subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Full Moon Ray",
fr: "Rayon Pleine Lune",
},
text: {
en: "This attack does 20 more damage times the amount of Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire.",
},
damage: 80
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card