1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

120 lines
2.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/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: "sm1-152",
localId: 152,
// Card informations
name: {
en: "Espeon-GX",
fr: "Mentali-GX",
},
hp: 200,
type: [
Type.PSYCHIC,
],
dexId: 196,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm1/152/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/152/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm1/152/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/152/high.png",
},
},
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Psybeam",
fr: "Rafale Psy",
},
text: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 30
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Psychic",
fr: "Psyko",
},
text: {
en: "This attack does 30 more damage times the amount of Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire.",
},
damage: 60
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Divide-GX",
fr: "Scission-GX",
},
text: {
en: "Put 10 damage counters on your opponent's Pokémon in any way you like. (You can't use more than 1 GX attack in a game.)",
fr: "Placez 10 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Sun & Moon",
code: "sm1"
}
}
export default card