1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

95
cards/xy/g1/RC31.ts Normal file
View File

@ -0,0 +1,95 @@
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: "g1-RC31",
localId: "RC31",
// Card informations
name: {
en: "M Gardevoir-EX",
fr: "M-Gardevoir-EX",
},
hp: 210,
type: [
Type.FAIRY,
],
dexId: 282,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/g1/RC31/low.png",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/g1/RC31/high.png",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC31/high.png",
},
},
evolveFrom: {
en: "Gardevoir-EX",
fr: "Gardevoir-EX",
},
tags: [
Tag.MEGA,
],
illustrator: {
id: 64,
name: "Megumi Mizutani"
},
attacks: [{
cost: [
Type.FAIRY,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Brilliant Arrow",
fr: "Flèche Éclatante",
},
text: {
en: "This attack does 30 damage times the amount of Fairy Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d'Énergies Fairy attachées à tous vos Pokémon.",
},
damage: 30
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
resistances: [{
type: Type.DARKNESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Generations",
code: "g1"
}
}
export default card